- tsorted packages processed in successor count order.

- fix: resurrect --excludepath (#19666).

CVS patchset: 4418
CVS date: 2001/01/09 04:07:49
This commit is contained in:
jbj 2001-01-09 04:07:49 +00:00
parent 330737d2fc
commit 424793073c
40 changed files with 1632 additions and 924 deletions

View File

@ -94,6 +94,8 @@
- fix: pass scriptlet args, as in %post -p "/sbin/ldconfig -n /lib".
(Rodrigo Barbosa)
- fix: 3 packages from Red Hat 5.2 had bogus %verifyscript tag.
- tsorted packages processed in successor count order.
- fix: resurrect --excludepath (#19666).
3.0.6 -> 4.0
- use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db.

View File

@ -1576,12 +1576,13 @@ static inline int addRelation( const rpmTransactionSet rpmdep,
selected[matchNum] = 1;
/* T3. Record next "q <- p" relation (i.e. "p" requires "q"). */
p->tsi.tsi_count++;
p->tsi.tsi_count++; /* bump p predecessor count */
tsi = xmalloc(sizeof(*tsi));
tsi->tsi_suc = p;
tsi->tsi_reqx = j;
tsi->tsi_next = q->tsi.tsi_next;
q->tsi.tsi_next = tsi;
q->tsi.tsi_qcnt++; /* bump q successor count */
return 0;
}
@ -1598,6 +1599,38 @@ static int orderListIndexCmp(const void * one, const void * two)
return (a - b);
}
/**
* Add element to list sorting by initial successor count.
* @param p new element
* @retval qp address of first element
* @retval rp address of last element
*/
static void addQ(struct availablePackage * p,
/*@out@*/ struct availablePackage ** qp,
/*@out@*/ struct availablePackage ** rp)
{
struct availablePackage *q, *qprev;
if ((*rp) == NULL) { /* 1st element */
(*rp) = (*qp) = p;
return;
}
for (qprev = NULL, q = (*qp); q != NULL; qprev = q, q = q->tsi.tsi_suc) {
if (q->tsi.tsi_qcnt < p->tsi.tsi_qcnt)
break;
}
if (qprev == NULL) { /* insert at beginning of list */
p->tsi.tsi_suc = q;
(*qp) = p; /* new head */
} else if (q == NULL) { /* insert at end of list */
qprev->tsi.tsi_suc = p;
(*rp) = p; /* new tail */
} else { /* insert between qprev and q */
p->tsi.tsi_suc = q;
qprev->tsi.tsi_suc = p;
}
}
int rpmdepOrder(rpmTransactionSet rpmdep)
{
struct availablePackage * p;
@ -1614,6 +1647,7 @@ int rpmdepOrder(rpmTransactionSet rpmdep)
int newOrderCount = 0;
struct orderListIndex * orderList;
int nrescans = 10;
int qlen;
int i, j;
alMakeIndex(&rpmdep->addedPackages);
@ -1677,6 +1711,7 @@ int rpmdepOrder(rpmTransactionSet rpmdep)
rescan:
q = r = NULL;
qlen = 0;
for (i = 0, p = rpmdep->addedPackages.list;
i < rpmdep->addedPackages.size;
i++, p++)
@ -1684,18 +1719,16 @@ rescan:
if (p->tsi.tsi_count != 0)
continue;
p->tsi.tsi_suc = NULL;
if (r == NULL)
q = p;
else
r->tsi.tsi_suc = p;
r = p;
addQ(p, &q, &r);
qlen++;
}
/* T5. Output fromt of queue (T7. Remove from queue.) */
for (; q != NULL; q = q->tsi.tsi_suc) {
rpmMessage(RPMMESS_DEBUG, "%5d %s-%s-%s\n", orderingCount,
q->name, q->version, q->release);
rpmMessage(RPMMESS_DEBUG, "%5d (%d) %s-%s-%s\n", orderingCount,
qlen, q->name, q->version, q->release);
qlen--;
ordering[orderingCount++] = q - rpmdep->addedPackages.list;
loopcheck--;
@ -1709,14 +1742,9 @@ rescan:
p = tsi->tsi_suc;
if ((--p->tsi.tsi_count) <= 0) {
/* XXX FIXME: add control bit. */
#ifdef QUEUE_AT_REAR
p->tsi.tsi_suc = NULL;
r->tsi.tsi_suc = p;
r = p;
#else
p->tsi.tsi_suc = q->tsi.tsi_suc;
q->tsi.tsi_suc = p;
#endif
addQ(p, &q->tsi.tsi_suc, &r);
qlen++;
}
free(tsi);
}

View File

@ -20,6 +20,7 @@ struct tsortInfo {
/*@owned@*/ struct tsortInfo * tsi_next;
/*@dependent@*/ struct availablePackage * tsi_pkg;
int tsi_reqx;
int tsi_qcnt;
};
/**

View File

@ -25,6 +25,7 @@ struct sharedFileInfo {
};
/**
* File disposition(s) during package install/erase.
*/
enum fileActions {
FA_UNKNOWN = 0,
@ -40,15 +41,19 @@ enum fileActions {
};
/**
* File types.
* These are the types of files used internally by rpm. The file
* type is determined by applying stat(2) macros like S_ISDIR to
* the file mode tag from a header.
*/
enum fileTypes {
XDIR,
BDEV,
CDEV,
SOCK,
PIPE,
REG,
LINK
PIPE = 1, /*!< pipe/fifo */
CDEV = 2, /*!< character device */
XDIR = 4, /*!< directory */
BDEV = 6, /*!< block device */
REG = 8, /*!< regular file */
LINK = 10, /*!< hard link */
SOCK = 12 /*!< socket */
};
#ifdef __cplusplus

View File

@ -183,17 +183,6 @@ int rpmvercmp(const char * a, const char * b)
if (!*one) return -1; else return 1;
}
void stripTrailingSlashes(char * str)
{
char * chptr;
chptr = str + strlen(str) - 1;
while (*chptr == '/' && chptr >= str) {
*chptr = '\0';
chptr--;
}
}
int doputenv(const char *str)
{
char * a;

View File

@ -24,8 +24,19 @@ extern "C" {
void freeSplitString( /*@only@*/ char ** list);
/**
* Remove occurences of trailing character from string.
* @param s string
* @param c character to strip
* @return string
*/
void stripTrailingSlashes(char * str) /*@modifies *str @*/;
/*@unused@*/ static inline char * stripTrailingChar(char * s, char c)
/*@modifies *s */
{
char * t;
for (t = s + strlen(s) - 1; *t == c && t >= s; t--)
*t = '\0';
return s;
}
/**
*/

View File

@ -15,6 +15,8 @@
#include "signature.h"
#include "debug.h"
#define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s))
/*@access Header@*/ /* XXX compared with NULL */
void headerMergeLegacySigs(Header h, const Header sig)
@ -82,17 +84,17 @@ static int readPackageHeaders(FD_t fd, /*@out@*/ struct rpmlead * leadPtr,
switch (lead->major) {
case 1:
rpmError(RPMERR_NEWPACKAGE, _("packaging version 1 is not"
" supported by this version of RPM"));
rpmError(RPMERR_NEWPACKAGE,
_("packaging version 1 is not supported by this version of RPM"));
return 2;
/*@notreached@*/ break;
case 2:
case 3:
case 4:
if (rpmReadSignature(fd, sigs, lead->signature_type))
return 2;
*hdr = headerRead(fd, (lead->major >= 3) ?
HEADER_MAGIC_YES : HEADER_MAGIC_NO);
return 2;
*hdr = headerRead(fd, (lead->major >= 3)
? HEADER_MAGIC_YES : HEADER_MAGIC_NO);
if (*hdr == NULL) {
if (sigs != NULL)
headerFree(*sigs);
@ -113,9 +115,8 @@ static int readPackageHeaders(FD_t fd, /*@out@*/ struct rpmlead * leadPtr,
which is quite handy. */
if (headerGetEntry(*hdr, RPMTAG_DEFAULTPREFIX, NULL,
(void **) &defaultPrefix, NULL)) {
defaultPrefix = strcpy(alloca(strlen(defaultPrefix) + 1),
defaultPrefix);
stripTrailingSlashes(defaultPrefix);
defaultPrefix =
stripTrailingChar(alloca_strdup(defaultPrefix), '/');
headerAddEntry(*hdr, RPMTAG_PREFIXES, RPM_STRING_ARRAY_TYPE,
&defaultPrefix, 1);
}

View File

@ -317,48 +317,94 @@ void rpmProblemSetFree(rpmProblemSet probs)
free(probs);
}
/** @todo multilib file action assignment need to be checked. */
static Header relocateFileList(struct availablePackage * alp,
rpmProblemSet probs, Header origH,
enum fileActions * actions,
int allowBadRelocate)
static /*@observer@*/ const char *const ftstring (enum fileTypes ft)
{
int numValid, numRelocations;
int i, j;
switch (ft) {
case XDIR: return "directory";
case CDEV: return "char dev";
case BDEV: return "block dev";
case LINK: return "link";
case SOCK: return "sock";
case PIPE: return "fifo/pipe";
case REG: return "file";
}
return "unknown file type";
}
static enum fileTypes whatis(uint_16 mode)
{
if (S_ISDIR(mode)) return XDIR;
if (S_ISCHR(mode)) return CDEV;
if (S_ISBLK(mode)) return BDEV;
if (S_ISLNK(mode)) return LINK;
if (S_ISSOCK(mode)) return SOCK;
if (S_ISFIFO(mode)) return PIPE;
return REG;
}
#define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s))
/**
* Relocate files in header.
* @todo multilib file dispositions need to be checked.
* @param ts transaction set
* @param alp available package
* @param origH package header
* @param actions file dispositions
* @return header with relocated files
*/
static Header relocateFileList(const rpmTransactionSet ts,
struct availablePackage * alp,
Header origH, enum fileActions * actions)
{
static int _printed = 0;
rpmProblemSet probs = ts->probs;
int allowBadRelocate = (ts->ignoreSet & RPMPROB_FILTER_FORCERELOCATE);
rpmRelocation * rawRelocations = alp->relocs;
rpmRelocation * relocations = NULL;
int numRelocations;
const char ** validRelocations;
char ** baseNames, ** dirNames;
int_32 validType;
int numValid;
const char ** baseNames;
const char ** dirNames;
int_32 * dirIndexes;
int_32 * newDirIndexes;
int_32 fileCount, dirCount;
int_32 fileCount;
int_32 dirCount;
uint_32 * fFlags = NULL;
uint_16 * fModes = NULL;
char * skipDirList;
Header h;
int relocated = 0, len;
char * str;
int nrelocated = 0;
int fileAlloced = 0;
char * filespec = NULL;
char * chptr;
char * fn = NULL;
int haveRelocatedFile = 0;
int len;
int i, j;
if (!headerGetEntry(origH, RPMTAG_PREFIXES, NULL,
if (!headerGetEntry(origH, RPMTAG_PREFIXES, &validType,
(void **) &validRelocations, &numValid))
numValid = 0;
numRelocations = 0;
if (rawRelocations)
while (rawRelocations[numRelocations].newPath ||
rawRelocations[numRelocations].oldPath)
numRelocations++;
/*
* If no relocations are specified (usually the case), then return the
* original header. If there are prefixes, however, then INSTPREFIXES
* should be added, but, since relocateFileList() can be called more
* than once for the same header, don't bother if already present.
*/
if (rawRelocations == NULL) {
if (numValid && !headerIsEntry(origH, RPMTAG_INSTPREFIXES)) {
if (numRelocations == 0) {
if (numValid) {
if (!headerIsEntry(origH, RPMTAG_INSTPREFIXES))
headerAddEntry(origH, RPMTAG_INSTPREFIXES,
RPM_STRING_ARRAY_TYPE, validRelocations, numValid);
free((void *)validRelocations);
validType, validRelocations, numValid);
headerFreeData(validRelocations, validType);
}
/* XXX FIXME multilib file actions need to be checked. */
return headerLink(origH);
@ -370,13 +416,6 @@ static Header relocateFileList(struct availablePackage * alp,
h = headerLink(origH);
#endif
if (rawRelocations) {
for (i = 0; rawRelocations[i].newPath || rawRelocations[i].oldPath; i++)
;
numRelocations = i;
} else {
numRelocations = 0;
}
relocations = alloca(sizeof(*relocations) * numRelocations);
/* Build sorted relocation list from raw relocations. */
@ -386,22 +425,19 @@ static Header relocateFileList(struct availablePackage * alp,
/* FIXME: Trailing /'s will confuse us greatly. Internal ones will
too, but those are more trouble to fix up. :-( */
str = alloca(strlen(rawRelocations[i].oldPath) + 1);
strcpy(str, rawRelocations[i].oldPath);
stripTrailingSlashes(str);
relocations[i].oldPath = str;
relocations[i].oldPath =
stripTrailingChar(alloca_strdup(rawRelocations[i].oldPath), '/');
/* An old path w/o a new path is valid, and indicates exclusion */
if (rawRelocations[i].newPath) {
str = alloca(strlen(rawRelocations[i].newPath) + 1);
strcpy(str, rawRelocations[i].newPath);
stripTrailingSlashes(str);
relocations[i].newPath = str;
relocations[i].newPath =
stripTrailingChar(alloca_strdup(rawRelocations[i].newPath), '/');
/* Verify that the relocation's old path is in the header. */
for (j = 0; j < numValid; j++)
if (!strcmp(validRelocations[j], relocations[i].oldPath)) break;
if (j == numValid && !allowBadRelocate)
/* XXX actions check prevents problem from being appended twice. */
if (j == numValid && !allowBadRelocate && actions)
psAppend(probs, RPMPROB_BADRELOCATE, alp->key, alp->h,
relocations[i].oldPath, NULL, NULL, 0);
} else {
@ -425,6 +461,19 @@ static Header relocateFileList(struct availablePackage * alp,
if (!madeSwap) break;
}
if (!_printed) {
_printed = 1;
rpmMessage(RPMMESS_DEBUG, _("========== relocations\n"));
for (i = 0; i < numRelocations; i++) {
if (relocations[i].newPath == NULL)
rpmMessage(RPMMESS_DEBUG, _("%5d exclude %s\n"),
i, relocations[i].oldPath);
else
rpmMessage(RPMMESS_DEBUG, _("%5d relocate %s -> %s\n"),
i, relocations[i].oldPath, relocations[i].newPath);
}
}
/* Add relocation values to the header */
if (numValid) {
const char ** actualRelocations;
@ -454,98 +503,121 @@ static Header relocateFileList(struct availablePackage * alp,
(void **) actualRelocations, numActual);
free((void *)actualRelocations);
free((void *)validRelocations);
headerFreeData(validRelocations, validType);
}
/* For all relocations, we go through sorted file and relocation lists
* backwards so that /usr/local relocations take precedence over /usr
* ones.
*/
headerGetEntry(h, RPMTAG_BASENAMES, NULL, (void **) &baseNames,
&fileCount);
headerGetEntry(h, RPMTAG_DIRINDEXES, NULL, (void **) &dirIndexes, NULL);
headerGetEntry(h, RPMTAG_DIRNAMES, NULL, (void **) &dirNames,
&dirCount);
headerGetEntry(h, RPMTAG_FILEFLAGS, NULL, (void **) &fFlags, NULL);
headerGetEntry(h, RPMTAG_FILEMODES, NULL, (void **) &fModes, NULL);
skipDirList = xcalloc(sizeof(*skipDirList), dirCount);
skipDirList = alloca(dirCount * sizeof(*skipDirList));
memset(skipDirList, 0, dirCount * sizeof(*skipDirList));
newDirIndexes = alloca(sizeof(*newDirIndexes) * fileCount);
memcpy(newDirIndexes, dirIndexes, sizeof(*newDirIndexes) * fileCount);
dirIndexes = newDirIndexes;
/* Now relocate individual files. */
/*
* For all relocations, we go through sorted file/relocation lists
* backwards so that /usr/local relocations take precedence over /usr
* ones.
*/
/* Relocate individual paths. */
for (i = fileCount - 1; i >= 0; i--) {
char * te;
int fslen;
/*
* If only adding libraries of different arch into an already
* installed package, skip all other files.
*/
if (actions && alp->multiLib && !isFileMULTILIB((fFlags[i]))) {
actions[i] = FA_SKIPMULTILIB;
if (alp->multiLib && !isFileMULTILIB((fFlags[i]))) {
if (actions) {
actions[i] = FA_SKIPMULTILIB;
rpmMessage(RPMMESS_DEBUG, _("excluding multilib path %s%s\n"),
dirNames[dirIndexes[i]], baseNames[i]);
}
continue;
}
/* If we're skipping the directory this file is part of, skip this
* file as well.
*/
if (skipDirList[dirIndexes[i]]) {
actions[i] = FA_SKIPNSTATE;
rpmMessage(RPMMESS_DEBUG, _("excluding file %s%s\n"),
dirNames[dirIndexes[i]], baseNames[i]);
continue;
}
/* See if this file needs relocating (which will only occur if the
* full file path we have exactly matches a path in the relocation
* list. XXX FIXME: Would a bsearch of the (already sorted)
* relocation list be a good idea?
*/
len = strlen(dirNames[dirIndexes[i]]) + strlen(baseNames[i]) + 1;
if (len >= fileAlloced) {
fileAlloced = len * 2;
filespec = xrealloc(filespec, fileAlloced);
fn = xrealloc(fn, fileAlloced);
}
(void) stpcpy( stpcpy(filespec, dirNames[dirIndexes[i]]) , baseNames[i]);
for (j = numRelocations - 1; j >= 0; j--)
if (!strcmp(relocations[j].oldPath, filespec)) break;
te = stpcpy( stpcpy(fn, dirNames[dirIndexes[i]]), baseNames[i]);
fslen = (te - fn);
/*
* See if this file needs relocating.
*/
/*
* XXX FIXME: Would a bsearch of the (already sorted)
* relocation list be a good idea?
*/
for (j = numRelocations - 1; j >= 0; j--) {
len = strlen(relocations[j].oldPath);
if (fslen < len)
continue;
if (strncmp(relocations[j].oldPath, fn, len))
continue;
break;
}
if (j < 0) continue;
if (actions && relocations[j].newPath == NULL) {
/* On install, a relocate to NULL means skip the path. */
skipDirList[i] = 1;
rpmMessage(RPMMESS_DEBUG, _("excluding directory %s\n"),
dirNames[i]);
/* On install, a relocate to NULL means skip the path. */
if (relocations[j].newPath == NULL) {
enum fileTypes ft = whatis(fModes[i]);
int k;
if (ft == XDIR) {
/* Start with the parent, looking for directory to exclude. */
for (k = dirIndexes[i]; k < dirCount; k++) {
len = strlen(dirNames[k]) - 1;
while (len > 0 && dirNames[k][len-1] == '/') len--;
if (len == fslen && !strncmp(dirNames[k], fn, len))
break;
}
if (k >= dirCount)
continue;
skipDirList[k] = 1;
}
if (actions) {
actions[i] = FA_SKIPNSTATE;
rpmMessage(RPMMESS_DEBUG, _("excluding %s %s\n"),
ftstring(ft), fn);
}
continue;
}
rpmMessage(RPMMESS_DEBUG, _("relocating %s to %s\n"),
filespec, relocations[j].newPath);
relocated = 1;
if (actions)
rpmMessage(RPMMESS_DEBUG, _("relocating %s to %s\n"),
fn, relocations[j].newPath);
nrelocated++;
len = strlen(relocations[j].newPath);
if (len >= fileAlloced) {
fileAlloced = len * 2;
filespec = xrealloc(filespec, fileAlloced);
fn = xrealloc(fn, fileAlloced);
}
strcpy(filespec, relocations[j].newPath);
chptr = strrchr(filespec, '/');
*chptr++ = '\0';
strcpy(fn, relocations[j].newPath);
/* filespec is the new path, and chptr is the new basename */
if (strcmp(baseNames[i], chptr)) {
baseNames[i] = alloca(strlen(chptr) + 1);
strcpy(baseNames[i], chptr);
{ char * s = strrchr(fn, '/');
*s++ = '\0';
/* fn is the new dirName, and s is the new baseName */
if (strcmp(baseNames[i], s))
baseNames[i] = alloca_strdup(s);
}
/* Does this directory already exist in the directory list? */
for (j = 0; j < dirCount; j++)
if (!strcmp(filespec, dirNames[j])) break;
if (!strcmp(fn, dirNames[j])) break;
if (j < dirCount) {
dirIndexes[i] = j;
@ -554,29 +626,26 @@ static Header relocateFileList(struct availablePackage * alp,
/* Creating new paths is a pita */
if (!haveRelocatedFile) {
char ** newDirList;
const char ** newDirList;
int k;
haveRelocatedFile = 1;
newDirList = xmalloc(sizeof(*newDirList) * (dirCount + 1));
for (k = 0; k < dirCount; k++) {
newDirList[k] = alloca(strlen(dirNames[k]) + 1);
strcpy(newDirList[k], dirNames[k]);
}
free(dirNames);
for (k = 0; k < dirCount; k++)
newDirList[k] = alloca_strdup(dirNames[k]);
headerFreeData(dirNames, RPM_STRING_ARRAY_TYPE);
dirNames = newDirList;
} else {
dirNames = xrealloc(dirNames,
sizeof(*dirNames) * (dirCount + 1));
}
dirNames[dirCount] = alloca(strlen(filespec) + 1);
strcpy(dirNames[dirCount], filespec);
dirNames[dirCount] = alloca_strdup(fn);
dirIndexes[i] = dirCount;
dirCount++;
}
/* Start off by relocating directories. */
/* Finish off by relocating directories. */
for (i = dirCount - 1; i >= 0; i--) {
for (j = numRelocations - 1; j >= 0; j--) {
int oplen;
@ -585,8 +654,10 @@ static Header relocateFileList(struct availablePackage * alp,
if (strncmp(relocations[j].oldPath, dirNames[i], oplen))
continue;
/* Only subdirectories or complete file paths may be relocated. We
don't check for '\0' as our directory names all end in '/'. */
/*
* Only subdirectories or complete file paths may be relocated. We
* don't check for '\0' as our directory names all end in '/'.
*/
if (!(dirNames[i][oplen] == '/'))
continue;
@ -595,22 +666,24 @@ static Header relocateFileList(struct availablePackage * alp,
char *t = alloca(strlen(s) + strlen(dirNames[i]) - oplen + 1);
(void) stpcpy( stpcpy(t, s) , dirNames[i] + oplen);
rpmMessage(RPMMESS_DEBUG, _("relocating directory %s to %s\n"),
dirNames[i], t);
if (actions)
rpmMessage(RPMMESS_DEBUG,
_("relocating directory %s to %s\n"), dirNames[i], t);
dirNames[i] = t;
relocated = 1;
} else if (actions) {
/* On install, a relocate to NULL means skip the file */
skipDirList[i] = 1;
rpmMessage(RPMMESS_DEBUG, _("excluding directory %s\n"),
dirNames[i]);
nrelocated++;
} else {
if (actions && !skipDirList[i]) {
rpmMessage(RPMMESS_DEBUG, _("excluding directory %s\n"),
dirNames[dirIndexes[i]]);
actions[i] = FA_SKIPNSTATE;
}
}
break;
}
}
/* Save original filenames in header and replace (relocated) filenames. */
if (relocated) {
if (nrelocated) {
int c;
void * p;
int t;
@ -618,16 +691,17 @@ static Header relocateFileList(struct availablePackage * alp,
p = NULL;
headerGetEntry(h, RPMTAG_BASENAMES, &t, &p, &c);
headerAddEntry(h, RPMTAG_ORIGBASENAMES, t, p, c);
free((void *)p);
headerFreeData(p, t);
p = NULL;
headerGetEntry(h, RPMTAG_DIRNAMES, &t, &p, &c);
headerAddEntry(h, RPMTAG_ORIGDIRNAMES, t, p, c);
free((void *)p);
headerFreeData(p, t);
p = NULL;
headerGetEntry(h, RPMTAG_DIRINDEXES, &t, &p, &c);
headerAddEntry(h, RPMTAG_ORIGDIRINDEXES, t, p, c);
headerFreeData(p, t);
headerModifyEntry(h, RPMTAG_BASENAMES, RPM_STRING_ARRAY_TYPE,
baseNames, fileCount);
@ -637,10 +711,9 @@ static Header relocateFileList(struct availablePackage * alp,
dirIndexes, fileCount);
}
free(baseNames);
free(dirNames);
if (filespec) free(filespec);
free(skipDirList);
headerFreeData(baseNames, RPM_STRING_ARRAY_TYPE);
headerFreeData(dirNames, RPM_STRING_ARRAY_TYPE);
if (fn) free(fn);
return h;
}
@ -701,28 +774,6 @@ static int sharedCmp(const void * one, const void * two)
return 0;
}
static enum fileTypes whatis(short mode)
{
enum fileTypes result;
if (S_ISDIR(mode))
result = XDIR;
else if (S_ISCHR(mode))
result = CDEV;
else if (S_ISBLK(mode))
result = BDEV;
else if (S_ISLNK(mode))
result = LINK;
else if (S_ISSOCK(mode))
result = SOCK;
else if (S_ISFIFO(mode))
result = PIPE;
else
result = REG;
return result;
}
static enum fileActions decideFileFate(const char * dirName,
const char * baseName, short dbMode,
const char * dbMd5, const char * dbLink, short newMode,
@ -884,7 +935,7 @@ static int handleInstInstalledFiles(TFI_t * fi, rpmdb db,
if (otherStates && otherStates[otherFileNum] != RPMFILE_STATE_NORMAL)
continue;
if (fi->actions[fileNum] == FA_SKIPMULTILIB)
if (XFA_SKIPPING(fi->actions[fileNum]))
continue;
if (filecmp(otherModes[otherFileNum],
@ -1032,7 +1083,7 @@ static void handleOverlappedFiles(TFI_t * fi, hashTable ht,
*/
/* Locate this overlapped file in the set of added/removed packages. */
for (j = 0; recs[j] != fi; j++)
for (j = 0; j < numRecs && recs[j] != fi; j++)
;
/* Find what the previous disposition of this file was. */
@ -1472,13 +1523,12 @@ int rpmRunTransactions( rpmTransactionSet ts,
continue;
}
/* Allocate file actions (and initialize to RPMFILE_STATE_NORMAL) */
/* Allocate file actions (and initialize to FA_UNKNOWN) */
fi->actions = xcalloc(fi->fc, sizeof(*fi->actions));
hdrs[i] = relocateFileList(alp, ts->probs, alp->h, fi->actions,
ts->ignoreSet & RPMPROB_FILTER_FORCERELOCATE);
hdrs[i] = relocateFileList(ts, alp, alp->h, fi->actions);
fi->h = headerLink(hdrs[i]);
fi->type = TR_ADDED;
fi->ap = alp;
fi->type = TR_ADDED;
break;
case TR_REMOVED:
fi->record = ts->order[oc].u.removed.dboffset;
@ -1792,7 +1842,7 @@ int rpmRunTransactions( rpmTransactionSet ts,
ourrc++;
fd = NULL;
} else {
hdrs[i] = relocateFileList(alp, ts->probs, h, NULL, 1);
hdrs[i] = relocateFileList(ts, alp, h, NULL);
headerFree(h);
}
}

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-08-23 22:24+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@ -2455,20 +2455,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "odstraòuji \"%s\" z indexu %s.\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2836,16 +2836,16 @@ msgstr "varov
msgid "running postinstall scripts (if any)\n"
msgstr "spou¹tím pøípadný postinstalaèní skript\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "chyba pøi vytváøení doèasného souboru %s"
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "práce s balíèky verze 1 není podporována touto verzí RPM"
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "tato verze RPM podporuje práci s balíèky s hlavním (major) èíslem <= 4"
@ -3900,27 +3900,46 @@ msgstr "Mus
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru"
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vyøazen: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "pøemís»uji %s do %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynechávám soubor %s%s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#, c-format
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "vynechávám soubor %s%s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "pøemís»uji %s do %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "pøemís»uji adresáø %s do %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@ -2416,20 +2416,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2791,16 +2791,16 @@ msgstr " ... som %s\n"
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3810,27 +3810,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@ -2651,20 +2651,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -3038,18 +3038,18 @@ msgstr "kann Datei %s nicht
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -4125,28 +4125,49 @@ msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
# , c-format
#: lib/transaction.c:496
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "Hole %s heraus\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "%5d relocate %s -> %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/transaction.c:527
# , c-format
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Hole %s heraus\n"
# , c-format
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Hole %s heraus\n"
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
msgid ""
msgstr ""
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@ -2573,20 +2573,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2953,18 +2953,18 @@ msgstr "en voinut avata tiedostoa %s: "
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -4021,27 +4021,46 @@ msgstr "Sinun pit
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "Haen: %s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "%5d relocate %s -> %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/transaction.c:527
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Haen: %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Haen: %s\n"
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,5 +1,5 @@
msgid ""
msgstr "POT-Creation-Date: 2001-01-05 16:03-0500\n"
msgstr "POT-Creation-Date: 2001-01-08 23:06-0500\n"
#: build.c:26
#, fuzzy, c-format
@ -2585,20 +2585,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2964,16 +2964,16 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -4031,27 +4031,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-08-02 13:00+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@ -2416,20 +2416,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2791,16 +2791,16 @@ msgstr "gat ekki b
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3811,27 +3811,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "gat ekki búið til %s: %s\n"
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@ -88,7 +88,7 @@ msgstr "
# build root [BuildRoot]
# net share [ネット共有]
# reloate [再配置/移動する]
# $Id: ja.po,v 1.142 2001/01/05 21:04:47 jbj Exp $
# $Id: ja.po,v 1.143 2001/01/09 04:07:51 jbj Exp $
#: rpm.c:185 rpmqv.c:386
#, c-format
msgid "rpm: %s\n"
@ -2536,20 +2536,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "group インデックスを削除します\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2920,18 +2920,18 @@ msgstr "
msgid "running postinstall scripts (if any)\n"
msgstr "ポストインストールスクリプト(が有れば)を実行します\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "一時ファイル %s の作成エラー"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"メジャー番号 <=3 のパッケージのみこのバージョンの RPM はサポートされています"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -4001,27 +4001,46 @@ msgstr "
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "マクロファイルに \"%%_pgp_name\" を設定しなければなりません"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "OS は除外されています: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
msgid "excluding %s %s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "ディレクトリ %s を %s に再配置しています\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ディレクトリの除外: %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s は missingok フラグのためスキップします\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-08-17 20:22+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@ -2437,20 +2437,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2812,16 +2812,16 @@ msgstr "kunne ikke opprette %s: %s\n"
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3839,27 +3839,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "kunne ikke opprette %s: %s\n"
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@ -2534,20 +2534,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2912,18 +2912,18 @@ msgstr "ostrze
msgid "running postinstall scripts (if any)\n"
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "b³±d w tworzeniu pliku tymczasowego %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -3964,27 +3964,46 @@ msgstr "Musisz ustawi
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "Ten OS nie jest wspierany: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "wy³±czanie %s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
msgid "excluding %s %s\n"
msgstr "wy³±czanie %s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-08-01 21:11+01:00\n"
"Last-Translator: Pedro Morais <morais@poli.org>\n"
"Language-Team: pt <morais@poli.org>\n"
@ -2380,20 +2380,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2755,16 +2755,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3775,27 +3775,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -2,7 +2,7 @@
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
msgstr "POT-Creation-Date: 2001-01-05 16:03-0500\n"
msgstr "POT-Creation-Date: 2001-01-08 23:06-0500\n"
# , c-format
#: build.c:26
@ -2652,20 +2652,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -3039,16 +3039,16 @@ msgstr "N
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -4137,6 +4137,10 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
@ -4145,9 +4149,28 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/transaction.c:496
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "RPM versão %s\n"
# , c-format
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "Não consegui abrir: %s\n"
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
# "Language-Team: Portuguese <pt@li.org>\n"
# "MIME-Version: 1.0\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "RPM versão %s\n"
# "Project-Id-Version: rpm-2.5.3\n"
@ -4158,23 +4181,36 @@ msgstr "RPM vers
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgid "excluding %s %s\n"
msgstr "RPM versão %s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
# , c-format
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Não consegui abrir: %s\n"
#: lib/transaction.c:749
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
# "Language-Team: Portuguese <pt@li.org>\n"
# "MIME-Version: 1.0\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM versão %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -2378,20 +2378,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2753,16 +2753,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3769,27 +3769,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-08-08 01:20+0300\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -2470,20 +2470,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2852,16 +2852,16 @@ msgstr "
msgid "running postinstall scripts (if any)\n"
msgstr "×ÙÐÏÌÎÑÅÔÓÑ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s"
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM"
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4"
@ -3923,27 +3923,46 @@ msgstr "
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ÉÓËÌÀÞÁÀ ÆÁÊÌ %s%s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "ÉÓËÌÀÞÁÀ ÆÁÊÌ %s%s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@ -2543,20 +2543,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "odstraòuje sa index skupín\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2921,17 +2921,17 @@ msgstr "varovanie: %s uchovan
msgid "running postinstall scripts (if any)\n"
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "chyba pri vytváraní doèasného súboru %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -3971,27 +3971,46 @@ msgstr "Mus
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "OS je vynechaný: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynecháva sa %s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
msgid "excluding %s %s\n"
msgstr "vynecháva sa %s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"

View File

@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
# $Id: sl.po,v 1.127 2001/01/05 21:04:51 jbj Exp $
# $Id: sl.po,v 1.128 2001/01/09 04:07:53 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -2527,20 +2527,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2910,17 +2910,17 @@ msgstr "opozorilo: %s shranjen kot %s"
msgid "running postinstall scripts (if any)\n"
msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -3985,27 +3985,46 @@ msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je izkljuèen: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "premikanje %s v %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "premikanje %s v %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"

View File

@ -1,6 +1,6 @@
msgid ""
msgstr ""
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@ -2537,20 +2537,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2917,17 +2917,17 @@ msgstr "Ne mogu da otvorim datoteku %s: "
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -3983,27 +3983,46 @@ msgstr "Morate podesiti \"pgp_name:\" u va
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "Pribavljam %s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
msgid "%5d relocate %s -> %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/transaction.c:527
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Pribavljam %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Pribavljam %s\n"
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: 2000-10-09 22:31+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@ -2445,20 +2445,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "tar bort \"%s\" från %s-indexet.\n"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2827,16 +2827,16 @@ msgstr "varning: %s sparades som %s"
msgid "running postinstall scripts (if any)\n"
msgstr "kör (eventuellt) postinstallationsskript\n"
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr "fel när tämporärfil %s skapades"
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM"
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM"
@ -3894,27 +3894,46 @@ msgstr "Du m
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil"
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS är uteslutet: %s"
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "flyttar %s till %s\n"
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "hoppar över %s%s\n"
#: lib/transaction.c:522 lib/transaction.c:605
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "hoppar över %s%s\n"
#: lib/transaction.c:527
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2585,20 +2585,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2965,18 +2965,18 @@ msgstr "%s dosyas
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
#: lib/package.c:85
#: lib/package.c:88
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
#: lib/package.c:142
#: lib/package.c:143
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
@ -4035,27 +4035,46 @@ msgstr "rpmrc dosyan
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
#: lib/transaction.c:496
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:469
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgid "%5d exclude %s\n"
msgstr "%s alýnýyor\n"
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:472
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
msgid "%5d relocate %s -> %s\n"
msgstr "%s dosyasý açýlamýyor: "
#: lib/transaction.c:527
#: lib/transaction.c:543
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "%s alýnýyor\n"
#: lib/transaction.c:592
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "%s alýnýyor\n"
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
#: lib/transaction.c:749
#: lib/transaction.c:676
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-01-05 16:03-0500\n"
"POT-Creation-Date: 2001-01-08 23:06-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -2383,20 +2383,20 @@ msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1626
#: lib/depends.c:1660
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1676
#: lib/depends.c:1710
msgid "========== tsorting packages\n"
msgstr ""
#: lib/depends.c:1779
#: lib/depends.c:1807
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1810
#: lib/depends.c:1838
msgid "========== continuing tsort ...\n"
msgstr ""
@ -2758,16 +2758,16 @@ msgstr ""
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/misc.c:339 lib/misc.c:344 lib/misc.c:350
#: lib/misc.c:328 lib/misc.c:333 lib/misc.c:339
#, c-format
msgid "error creating temporary file %s"
msgstr ""
#: lib/package.c:85
#: lib/package.c:88
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
#: lib/package.c:142
#: lib/package.c:143
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
@ -3774,27 +3774,46 @@ msgstr ""
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
#: lib/transaction.c:496
#, c-format
msgid "excluding file %s%s\n"
#: lib/transaction.c:466
msgid "========== relocations\n"
msgstr ""
#: lib/transaction.c:522 lib/transaction.c:605
#: lib/transaction.c:469
#, c-format
msgid "excluding directory %s\n"
msgid "%5d exclude %s\n"
msgstr ""
#: lib/transaction.c:527
#: lib/transaction.c:472
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/transaction.c:543
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/transaction.c:592
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/transaction.c:599
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:598
#: lib/transaction.c:671
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/transaction.c:749
#: lib/transaction.c:676
#, c-format
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:800
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""

View File

@ -13,7 +13,7 @@ Summary: The Red Hat package management system.
Name: rpm
%define version 4.0.2
Version: %{version}
Release: 0.18
Release: 0.19
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
@ -309,6 +309,10 @@ fi
%{__prefix}/include/popt.h
%changelog
* Mon Jan 8 2001 Jeff Johnson <jbj@redhat.com>
- tsorted packages processed in successor count order.
- fix: resurrect --excludepath (#19666).
* Fri Jan 5 2001 Jeff Johnson <jbj@redhat.com>
- fix: 3 packages from Red Hat 5.2 had bogus %verifyscript tag.

View File

@ -13,7 +13,7 @@ Summary: The Red Hat package management system.
Name: rpm
%define version @VERSION@
Version: %{version}
Release: 0.18
Release: 0.19
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{version}.tar.gz
Copyright: GPL
@ -309,6 +309,10 @@ fi
%{__prefix}/include/popt.h
%changelog
* Mon Jan 8 2001 Jeff Johnson <jbj@redhat.com>
- tsorted packages processed in successor count order.
- fix: resurrect --excludepath (#19666).
* Fri Jan 5 2001 Jeff Johnson <jbj@redhat.com>
- fix: 3 packages from Red Hat 5.2 had bogus %verifyscript tag.