- factor per-transactionElement data out of TFI_t through pointer ref.
authorjbj <devnull@localhost>
Sun, 11 Nov 2001 16:17:57 +0000 (16:17 +0000)
committerjbj <devnull@localhost>
Sun, 11 Nov 2001 16:17:57 +0000 (16:17 +0000)
CVS patchset: 5174
CVS date: 2001/11/11 16:17:57

43 files changed:
CHANGES
build/files.c
lib/depends.c
lib/depends.h
lib/fsm.c
lib/psm.c
lib/psm.h
lib/rpmds.h
lib/rpmlib.h
lib/transaction.c
po/cs.po
po/da.po
po/de.po
po/en_RN.po
po/es.po
po/eu_ES.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
rpm.spec
rpm.spec.in

diff --git a/CHANGES b/CHANGES
index ef5cbab..a04fa93 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -53,6 +53,7 @@
        - no-brainer refcounts for rpmDepSet and rpmFNSet objects.
        - strip header tags for erased as well as installed transactionElements.
        - common structure elements for unification of TFI_t and rpmFNSet.
+       - factor per-transactionElement data out of TFI_t through pointer ref.
 
 4.0.3 -> 4.0.4:
 
index c12bda5..de66572 100644 (file)
@@ -1336,11 +1336,13 @@ static void genCpioListAndHeader(/*@partial@*/ FileList fl,
        (void) rpmlibNeedsFeature(h, "CompressedFileNames", "3.0.4-1");
     }
 
-  { TFI_t fi = xcalloc(sizeof(*fi), 1);
+  { TFI_t fi = xcalloc(1, sizeof(*fi));
     char * a, * d;
 
-    fi->type = TR_ADDED;
-    /* XXX add transaction set */
+    /* XXX FIXME drill rpmTransactionSet ts all the way down here */
+/*@i@*/ fi->te = xcalloc(1, sizeof(*fi->te));
+/*@i@*/ fi->te->type = TR_ADDED;
+
     loadFi(NULL, fi, h, 1);
     fi->dnl = _free(fi->dnl);
     fi->bnl = _free(fi->bnl);
index aa588c6..7025e86 100644 (file)
@@ -222,9 +222,9 @@ static void addTE(transactionElement p, Header h,
     p->conflicts = dsNew(h, RPMTAG_CONFLICTNAME, scareMem);
     p->obsoletes = dsNew(h, RPMTAG_OBSOLETENAME, scareMem);
 
-    /*@-assignexpose -ownedtrans @*/
+    /*@-assignexpose -temptrans @*/
     p->key = key;
-    /*@=assignexpose =ownedtrans @*/
+    /*@=assignexpose =temptrans @*/
 
     /*@-type@*/ /* FIX: cast? */
     p->fd = (fd != NULL ? fdLink(fd, "addTE") : NULL);
index a863eaa..f9d77c0 100644 (file)
@@ -19,7 +19,6 @@ typedef enum rpmTransactionType_e {
 #include "rpmds.h"
 
 typedef /*@abstract@*/ struct tsortInfo_s *            tsortInfo;
-typedef /*@abstract@*/ struct transactionElement_s *   transactionElement;
 
 typedef /*@abstract@*/ struct teIterator_s *           teIterator;
 
@@ -73,14 +72,7 @@ struct tsortInfo_s {
  * A single package instance to be installed/removed atomically.
  */
 struct transactionElement_s {
-#ifdef DYING
-    enum rpmTransactionType {
-       TR_ADDED,       /*!< Package will be installed. */
-       TR_REMOVED      /*!< Package will be removed. */
-    } type;            /*!< Package disposition (installed/removed). */
-#else
     rpmTransactionType type;   /*!< Package disposition (installed/removed). */
-#endif
 
 /*@refcounted@*/ /*@null@*/
     Header h;                  /*!< Package header. */
@@ -119,7 +111,7 @@ struct transactionElement_s {
 
     uint_32 multiLib;          /*!< (TR_ADDED) MULTILIB */
 
-/*@kept@*//*@null@*/
+/*@null@*/
     fnpyKey key;               /*!< (TR_ADDED) Retrieval key. */
 /*@owned@*/ /*@null@*/
     rpmRelocation * relocs;    /*!< (TR_ADDED) Payload file relocations. */
@@ -214,12 +206,15 @@ extern "C" {
 
 #if defined(_NEED_TEITERATOR)
 /*@access teIterator @*/
+
+/*@access TFI_t @*/
+/*@access transactionElement @*/
 /*@access rpmTransactionSet @*/
 
 /**
  * Return transaction element index.
  * @param tei          transaction element iterator
- * @return             element index
+ * @return             transaction element index
  */
 /*@unused@*/ static inline
 int teGetOc(teIterator tei)
@@ -229,6 +224,24 @@ int teGetOc(teIterator tei)
 }
 
 /**
+ * Return transaction element's file info.
+ * @param tei          transaction element iterator
+ * @return             transaction element file info
+ */
+/*@unused@*/ static inline
+TFI_t teGetFi(teIterator tei)
+       /*@*/
+{
+    TFI_t fi = NULL;
+
+    if (tei != NULL && tei->ocsave != -1)
+       fi = tei->ts->flList + tei->ocsave;
+    /*@-compdef -onlytrans -usereleased@*/ /* FIX: ts->flList may be released */
+    return fi;
+    /*@=compdef =onlytrans =usereleased@*/
+}
+
+/**
  * Destroy transaction element iterator.
  * @param tei          transaction element iterator
  * @return             NULL always
@@ -304,6 +317,25 @@ transactionElement teNext(teIterator tei, rpmTransactionType type)
     }
     return p;
 }
+
+/**
+ * Return next transaction element's file info.
+ * @param tei          transaction element iterator
+ * @return             next transaction element file info, NULL on termination
+ */
+/*@unused@*/ static inline
+TFI_t teNextFi(teIterator tei)
+       /*@modifies tei @*/
+{
+    TFI_t fi = NULL;
+
+    if (teNextIterator(tei) != NULL && tei->ocsave != -1)
+       fi = tei->ts->flList + tei->ocsave;
+    /*@-compdef -onlytrans -usereleased@*/ /* FIX: ts->flList may be released */
+    return fi;
+    /*@=compdef =onlytrans =usereleased@*/
+}
+
 #endif /* defined(_NEED_TEITERATOR) */
 
 /**
index 2553f69..ec56b67 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
 #include "debug.h"
 
 /*@access FD_t @*/
-/*@access rpmTransactionSet @*/
-/*@access TFI_t @*/
 /*@access FSMI_t @*/
 /*@access FSM_t @*/
 
+/*@access TFI_t @*/
+/*@access rpmFNSet @*/
+/*@access transactionElement @*/
+/*@access rpmTransactionSet @*/
+
 #define        alloca_strdup(_s)       strcpy(alloca(strlen(_s)+1), (_s))
 
 /*@unchecked@*/
@@ -112,7 +115,7 @@ mapInitIterator(rpmTransactionSet ts, TFI_t fi)
     iter = xcalloc(1, sizeof(*iter));
     iter->ts = rpmtsLink(ts, "mapIterator");
     iter->fi = rpmfiLink(fi, "mapIterator");
-    iter->reverse = (fi->type == TR_REMOVED && fi->action != FA_COPYOUT);
+    iter->reverse = (fi->te->type == TR_REMOVED && fi->action != FA_COPYOUT);
     iter->i = (iter->reverse ? (fi->fc - 1) : 0);
     iter->isave = iter->i;
     return iter;
@@ -581,22 +584,22 @@ int fsmMapPath(FSM_t fsm)
            break;
        case FA_COPYIN:
        case FA_CREATE:
-assert(fi->type == TR_ADDED);
+assert(fi->te->type == TR_ADDED);
            break;
 
        case FA_SKIPNSTATE:
-           if (fi->fstates && fi->type == TR_ADDED)
+           if (fi->fstates && fi->te->type == TR_ADDED)
                fi->fstates[i] = RPMFILE_STATE_NOTINSTALLED;
            break;
 
        case FA_SKIPNETSHARED:
-           if (fi->fstates && fi->type == TR_ADDED)
+           if (fi->fstates && fi->te->type == TR_ADDED)
                fi->fstates[i] = RPMFILE_STATE_NETSHARED;
            break;
 
        case FA_BACKUP:
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
-           switch (fi->type) {
+           switch (fi->te->type) {
            case TR_ADDED:
                fsm->osuffix = SUFFIX_RPMORIG;
                /*@innerbreak@*/ break;
@@ -607,18 +610,18 @@ assert(fi->type == TR_ADDED);
            break;
 
        case FA_ALTNAME:
-assert(fi->type == TR_ADDED);
+assert(fi->te->type == TR_ADDED);
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
                fsm->nsuffix = SUFFIX_RPMNEW;
            break;
 
        case FA_SAVE:
-assert(fi->type == TR_ADDED);
+assert(fi->te->type == TR_ADDED);
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
                fsm->osuffix = SUFFIX_RPMSAVE;
            break;
        case FA_ERASE:
-           assert(fi->type == TR_REMOVED);
+           assert(fi->te->type == TR_REMOVED);
            /*
             * XXX TODO: %ghost probably shouldn't be removed, but that changes
             * legacy rpm behavior.
index 06fe4c1..789c9e0 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -24,14 +24,17 @@ int _fi_debug = 0;
 
 /*@access Header@*/            /* compared with NULL */
 /*@access rpmdbMatchIterator@*/ /* compared with NULL */
-/*@access FSM_t@*/             /* compared with NULL */
 /*@access FD_t@*/              /* compared with NULL */
 /*@access rpmdb@*/             /* compared with NULL */
 
-/*@access rpmTransactionSet@*/
-/*@access TFI_t@*/
+/*@access FSM_t@*/             /* compared with NULL */
 /*@access PSM_t@*/
 
+/*@access TFI_t@*/
+/*@access rpmFNSet @*/
+/*@access transactionElement @*/
+/*@access rpmTransactionSet@*/
+
 /*@access alKey@*/
 /*@access rpmDepSet@*/
 
@@ -76,27 +79,6 @@ int rpmVersionCompare(Header first, Header second)
     return rpmvercmp(one, two);
 }
 
-char * fiGetNEVR(const TFI_t fi)
-{
-    char * pkgNVR;
-    char * t;
-
-    if (fi == NULL)
-       return xstrdup("--");
-
-    t = xcalloc(1, (fi->name != NULL ? strlen(fi->name) : 0) +
-                  (fi->version != NULL ? strlen(fi->version) : 0) +
-                  (fi->release != NULL ? strlen(fi->release) : 0) +
-                  sizeof("--"));
-    pkgNVR = t;
-    if (fi->name != NULL)      t = stpcpy(t, fi->name);
-    t = stpcpy(t, "-");
-    if (fi->version != NULL)   t = stpcpy(t, fi->version);
-    t = stpcpy(t, "-");
-    if (fi->release != NULL)   t = stpcpy(t, fi->release);
-    return pkgNVR;
-}
-
 /**
  */
 static /*@observer@*/ const char *const ftstring (fileTypes ft)
@@ -131,6 +113,7 @@ fileTypes whatis(uint_16 mode)
 Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
                Header origH, fileAction * actions)
 {
+    transactionElement p = fi->te;
     HGE_t hge = fi->hge;
     HAE_t hae = fi->hae;
     HME_t hme = fi->hme;
@@ -165,9 +148,9 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
        numValid = 0;
 
     numRelocations = 0;
-    if (fi->relocs)
-       while (fi->relocs[numRelocations].newPath ||
-              fi->relocs[numRelocations].oldPath)
+    if (p->relocs)
+       while (p->relocs[numRelocations].newPath ||
+              p->relocs[numRelocations].oldPath)
            numRelocations++;
 
     /*
@@ -176,7 +159,7 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
      * should be added, but, since relocateFileList() can be called more
      * than once for the same header, don't bother if already present.
      */
-    if (fi->relocs == NULL || numRelocations == 0) {
+    if (p->relocs == NULL || numRelocations == 0) {
        if (numValid) {
            if (!headerIsEntry(origH, RPMTAG_INSTPREFIXES))
                xx = hae(origH, RPMTAG_INSTPREFIXES,
@@ -199,11 +182,11 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
         * Default relocations (oldPath == NULL) are handled in the UI,
         * not rpmlib.
         */
-       if (fi->relocs[i].oldPath == NULL) continue; /* XXX can't happen */
+       if (p->relocs[i].oldPath == NULL) continue; /* XXX can't happen */
 
        /* FIXME: Trailing /'s will confuse us greatly. Internal ones will 
           too, but those are more trouble to fix up. :-( */
-       t = alloca_strdup(fi->relocs[i].oldPath);
+       t = alloca_strdup(p->relocs[i].oldPath);
        /*@-branchstate@*/
        relocations[i].oldPath = (t[0] == '/' && t[1] == '\0')
            ? t
@@ -211,10 +194,10 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
        /*@=branchstate@*/
 
        /* An old path w/o a new path is valid, and indicates exclusion */
-       if (fi->relocs[i].newPath) {
+       if (p->relocs[i].newPath) {
            int del;
 
-           t = alloca_strdup(fi->relocs[i].newPath);
+           t = alloca_strdup(p->relocs[i].newPath);
            /*@-branchstate@*/
            relocations[i].newPath = (t[0] == '/' && t[1] == '\0')
                ? t
@@ -223,16 +206,16 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
 
            /*@-nullpass@*/     /* FIX:  relocations[i].oldPath == NULL */
            /* Verify that the relocation's old path is in the header. */
-           for (j = 0; j < numValid; j++)
+           for (j = 0; j < numValid; j++) {
                if (!strcmp(validRelocations[j], relocations[i].oldPath))
                    /*@innerbreak@*/ break;
+           }
+
            /* XXX actions check prevents problem from being appended twice. */
            if (j == numValid && !allowBadRelocate && actions) {
-               const char * pkgNEVR = fiGetNEVR(fi);
                rpmProblemSetAppend(ts->probs, RPMPROB_BADRELOCATE,
-                       pkgNEVR, fi->key,
+                       p->NEVR, p->key,
                        relocations[i].oldPath, NULL, NULL, 0);
-               pkgNEVR = _free(pkgNEVR);
            }
            del =
                strlen(relocations[i].newPath) - strlen(relocations[i].oldPath);
@@ -341,7 +324,7 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
         * If only adding libraries of different arch into an already
         * installed package, skip all other files.
         */
-       if (fi->multiLib && !isFileMULTILIB((fFlags[i]))) {
+       if (p->multiLib && !isFileMULTILIB((fFlags[i]))) {
            if (actions) {
                actions[i] = FA_SKIPMULTILIB;
                rpmMessage(RPMMESS_DEBUG, _("excluding multilib path %s%s\n"), 
@@ -509,23 +492,23 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
     /* Save original filenames in header and replace (relocated) filenames. */
     if (nrelocated) {
        int c;
-       void * p;
+       void * d;
        rpmTagType t;
 
-       p = NULL;
-       xx = hge(h, RPMTAG_BASENAMES, &t, &p, &c);
-       xx = hae(h, RPMTAG_ORIGBASENAMES, t, p, c);
-       p = hfd(p, t);
+       d = NULL;
+       xx = hge(h, RPMTAG_BASENAMES, &t, &d, &c);
+       xx = hae(h, RPMTAG_ORIGBASENAMES, t, d, c);
+       d = hfd(d, t);
 
-       p = NULL;
-       xx = hge(h, RPMTAG_DIRNAMES, &t, &p, &c);
-       xx = hae(h, RPMTAG_ORIGDIRNAMES, t, p, c);
-       p = hfd(p, t);
+       d = NULL;
+       xx = hge(h, RPMTAG_DIRNAMES, &t, &d, &c);
+       xx = hae(h, RPMTAG_ORIGDIRNAMES, t, d, c);
+       d = hfd(d, t);
 
-       p = NULL;
-       xx = hge(h, RPMTAG_DIRINDEXES, &t, &p, &c);
-       xx = hae(h, RPMTAG_ORIGDIRINDEXES, t, p, c);
-       p = hfd(p, t);
+       d = NULL;
+       xx = hge(h, RPMTAG_DIRINDEXES, &t, &d, &c);
+       xx = hae(h, RPMTAG_ORIGDIRINDEXES, t, d, c);
+       d = hfd(d, t);
 
        xx = hme(h, RPMTAG_BASENAMES, RPM_STRING_ARRAY_TYPE,
                          baseNames, fileCount);
@@ -551,9 +534,9 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
 
 fnpyKey rpmfiGetKey(TFI_t fi)
 {
-/*@-compdef -retexpose -usereleased@*/
-    return fi->key;
-/*@=compdef =retexpose =usereleased@*/
+/*@-compdef -kepttrans -retexpose -usereleased @*/
+    return fi->te->key;
+/*@=compdef =kepttrans =retexpose =usereleased @*/
 }
 
 TFI_t XrpmfiUnlink(TFI_t fi, const char * msg, const char * fn, unsigned ln)
@@ -589,7 +572,7 @@ void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int keep_header)
        fi->fsm = newFSM();
 
     /* XXX avoid gcc noise on pointer (4th arg) cast(s) */
-    hge = (keep_header && fi->type == TR_ADDED)
+    hge = (keep_header && fi->te->type == TR_ADDED)
        ? (HGE_t) headerGetEntryMinMemory : (HGE_t) headerGetEntry;
     fi->hge = hge;
     fi->hae = (HAE_t) headerAddEntry;
@@ -601,18 +584,6 @@ void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int keep_header)
     if (h && fi->h == NULL)    fi->h = headerLink(h, "loadFi");
     /*@=branchstate@*/
 
-    /* Duplicate name-version-release so that headers can be free'd. */
-    rc = hge(fi->h, RPMTAG_NAME, NULL, (void **) &fi->name, NULL);
-    fi->name = xstrdup(fi->name);
-    rc = hge(fi->h, RPMTAG_VERSION, NULL, (void **) &fi->version, NULL);
-    fi->version = xstrdup(fi->version);
-    rc = hge(fi->h, RPMTAG_RELEASE, NULL, (void **) &fi->release, NULL);
-    fi->release = xstrdup(fi->release);
-
-    /* -1 means not found */
-    rc = hge(fi->h, RPMTAG_EPOCH, NULL, (void **) &uip, NULL);
-    fi->epoch = (rc ? *uip : -1);
-
     /* 0 means unknown */
     rc = hge(fi->h, RPMTAG_ARCHIVESIZE, NULL, (void **) &uip, NULL);
     fi->archiveSize = (rc ? *uip : 0);
@@ -641,7 +612,7 @@ void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int keep_header)
        fi->actions = xcalloc(fi->fc, sizeof(*fi->actions));
 
     fi->keep_header = keep_header;
-    switch (fi->type) {
+    switch (fi->te->type) {
     case TR_ADDED:
        fi->mapflags =
                CPIO_MAP_PATH | CPIO_MAP_MODE | CPIO_MAP_UID | CPIO_MAP_GID;
@@ -731,7 +702,7 @@ void freeFi(TFI_t fi)
 {
     HFD_t hfd = (fi->hfd ? fi->hfd : headerFreeData);
 
-    switch (fi->type) {
+    switch (fi->te->type) {
     case TR_ADDED:
        if (!fi->keep_header) {
            fi->fmtimes = hfd(fi->fmtimes, -1);
@@ -769,9 +740,6 @@ void freeFi(TFI_t fi)
     fi->fgroup = hfd(fi->fgroup, -1);
     fi->flangs = hfd(fi->flangs, -1);
 
-    fi->name = _free(fi->name);
-    fi->version = _free(fi->version);
-    fi->release = _free(fi->release);
     fi->actions = _free(fi->actions);
     fi->replacedSizes = _free(fi->replacedSizes);
     fi->replaced = _free(fi->replaced);
@@ -785,7 +753,7 @@ void freeFi(TFI_t fi)
 
 /*@observer@*/ const char *const fiTypeString(TFI_t fi)
 {
-    switch(fi->type) {
+    switch(fi->te->type) {
     case TR_ADDED:     return " install";
     case TR_REMOVED:   return "   erase";
     default:           return "???";
@@ -1202,16 +1170,11 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts,
     /* XXX don't bother with fd, linked directly into fi below. */
     (void) rpmtransAddPackage(ts, h, NULL, NULL, 0, NULL);
 
-    fi->type = TR_ADDED;
+    fi->te = ts->order;
 
     fi->h = headerLink(h, "InstallSourcePackage");
 
-    fi->multiLib = 0;  /* MULTILIB for src.rpm's? */
-
-    fi->key = NULL;    /* FIXME: this may be needed somewhen */
-    /* XXX don't bother with fd, linked directly into fi below. */
-/*@i@*/ fi->fd = fd;
-    fi->relocs = NULL;
+/*@i@*/ fi->te->fd = fd;
 
     /* XXX header arg unused. */
     loadFi(ts, fi, fi->h, 1);
@@ -1225,6 +1188,7 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts,
     /*@-assignexpose@*/
     psm->ts = rpmtsLink(ts, "InstallSourcePackage");
     psm->fi = fi;
+    psm->te = fi->te;
     /*@=assignexpose@*/
 
     if (cookie) {
@@ -1346,6 +1310,8 @@ exit:
        /*@=refcounttrans@*/
     }
 
+    psm->fi = NULL;
+    psm->te = NULL;
     psm->ts = rpmtsUnlink(ts, "InstallSourcePackage");
 
     return rc;
@@ -1798,7 +1764,7 @@ static int runTriggers(PSM_t psm)
     int numPackage;
     rpmRC rc = RPMRC_OK;
 
-    numPackage = rpmdbCountPackages(ts->rpmdb, fi->name) + psm->countCorrection;
+    numPackage = rpmdbCountPackages(ts->rpmdb, psm->te->name) + psm->countCorrection;
     if (numPackage < 0)
        return 1;
 
@@ -1808,7 +1774,7 @@ static int runTriggers(PSM_t psm)
        int countCorrection = psm->countCorrection;
 
        psm->countCorrection = 0;
-       mi = rpmtsInitIterator(ts, RPMTAG_TRIGGERNAME, fi->name, 0);
+       mi = rpmtsInitIterator(ts, RPMTAG_TRIGGERNAME, psm->te->name, 0);
        while((triggeredH = rpmdbNextIterator(mi)) != NULL) {
            rc |= handleOneTrigger(psm, fi->h, triggeredH, numPackage, NULL);
        }
@@ -1940,8 +1906,8 @@ int psmStage(PSM_t psm, pkgStage stage)
     case PSM_UNKNOWN:
        break;
     case PSM_INIT:
-       rpmMessage(RPMMESS_DEBUG, _("%s: %s-%s-%s has %d files, test = %d\n"),
-               psm->stepName, fi->name, fi->version, fi->release,
+       rpmMessage(RPMMESS_DEBUG, _("%s: %s has %d files, test = %d\n"),
+               psm->stepName, psm->te->NEVR,
                fi->fc, (ts->transFlags & RPMTRANS_FLAG_TEST));
 
        /*
@@ -1949,7 +1915,7 @@ int psmStage(PSM_t psm, pkgStage stage)
         * versions of this package that will be installed when we are
         * finished.
         */
-       psm->npkgs_installed = rpmdbCountPackages(ts->rpmdb, fi->name);
+       psm->npkgs_installed = rpmdbCountPackages(ts->rpmdb, psm->te->name);
        if (psm->npkgs_installed < 0) {
            rc = RPMRC_FAIL;
            break;
@@ -1959,11 +1925,11 @@ int psmStage(PSM_t psm, pkgStage stage)
            psm->scriptArg = psm->npkgs_installed + 1;
 
 assert(psm->mi == NULL);
-           psm->mi = rpmtsInitIterator(ts, RPMTAG_NAME, fi->name, 0);
+           psm->mi = rpmtsInitIterator(ts, RPMTAG_NAME, psm->te->name, 0);
            xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_VERSION,
-                       RPMMIRE_DEFAULT, fi->version);
+                       RPMMIRE_DEFAULT, psm->te->version);
            xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_RELEASE,
-                       RPMMIRE_DEFAULT, fi->release);
+                       RPMMIRE_DEFAULT, psm->te->release);
 
            while ((psm->oh = rpmdbNextIterator(psm->mi))) {
                fi->record = rpmdbGetIteratorOffset(psm->mi);
@@ -2057,9 +2023,9 @@ assert(psm->mi == NULL);
                rc = psmStage(psm, PSM_SCRIPT);
                if (rc) {
                    rpmError(RPMERR_SCRIPT,
-                       _("%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"),
+                       _("%s: %s scriptlet failed (%d), skipping %s\n"),
                        psm->stepName, tag2sln(psm->scriptTag), rc,
-                       fi->name, fi->version, fi->release);
+                       psm->te->NEVR);
                    break;
                }
            }
@@ -2128,10 +2094,7 @@ assert(psm->mi == NULL);
                lead.osnum = osnum;
                lead.signature_type = RPMSIGTYPE_HEADERSIG;
 
-               {   char buf[256];
-                   sprintf(buf, "%s-%s-%s", fi->name, fi->version, fi->release);
-                   strncpy(lead.name, buf, sizeof(lead.name));
-               }
+               strncpy(lead.name, psm->te->NEVR, sizeof(lead.name));
 
                rc = writeLead(psm->fd, &lead);
                if (rc) {
@@ -2193,12 +2156,12 @@ assert(psm->mi == NULL);
            /* Retrieve type of payload compression. */
            rc = psmStage(psm, PSM_RPMIO_FLAGS);
 
-           if (fi->fd == NULL) {       /* XXX can't happen */
+           if (fi->te->fd == NULL) {   /* XXX can't happen */
                rc = RPMRC_FAIL;
                break;
            }
            /*@-nullpass@*/     /* LCL: fi->fd != NULL here. */
-           psm->cfd = Fdopen(fdDup(Fileno(fi->fd)), psm->rpmio_flags);
+           psm->cfd = Fdopen(fdDup(Fileno(fi->te->fd)), psm->rpmio_flags);
            /*@=nullpass@*/
            if (psm->cfd == NULL) {     /* XXX can't happen */
                rc = RPMRC_FAIL;
@@ -2452,7 +2415,7 @@ assert(psm->mi == NULL);
        if (ts && ts->notify) {
            /*@-noeffectuncon @*/ /* FIX: check rc */
            (void) ts->notify(fi->h, psm->what, psm->amount, psm->total,
-                               fi->key, ts->notifyData);
+                               psm->te->key, ts->notifyData);
            /*@=noeffectuncon @*/
        }
        break;
index f860bd3..c41f710 100644 (file)
--- a/lib/psm.h
+++ b/lib/psm.h
 extern int _fi_debug;
 /*@=exportlocal@*/
 
-#ifdef DYING
-/**
- */
-struct sharedFileInfo {
-    int pkgFileNum;
-    int otherFileNum;
-    int otherPkg;
-    int isRemoved;
-};
-
-/**
- */
-struct transactionFileInfo_s {
-/*@null@*/ Header h;           /*!< Package header */
-
-/*@owned@*/ const char * name; /*!< Name: tag (malloc'd). */
-/*@owned@*/ const char * version; /*!< Version: tag (malloc'd). */
-/*@owned@*/ const char * release; /*!< Release: tag (malloc'd). */
-
-    uint_32 multiLib;          /* MULTILIB */
-/*@null@*/
-    fnpyKey key;               /*!< Package notify key. */
-/*@null@*/ /*@dependent@*/
-    rpmRelocation * relocs;    /*!< Package file relocations. */
-/*@null@*/
-    FD_t fd;                   /*!< Package file handle */
-
-/*=============================*/
-
-  /* for all packages */
-    enum rpmTransactionType type;
-    fileAction action;         /*!< File disposition default. */
-/*@owned@*/ fileAction * actions;      /*!< File disposition(s) */
-/*@owned@*/ struct fingerPrint_s * fps;        /*!< File fingerprint(s) */
-    HGE_t hge;                 /*!< Vector to headerGetEntry() */
-    HAE_t hae;                 /*!< Vector to headerAddEntry() */
-    HME_t hme;                 /*!< Vector to headerModifyEntry() */
-    HRE_t hre;                 /*!< Vector to headerRemoveEntry() */
-    HFD_t hfd;                 /*!< Vector to headerFreeData() */
-    int_32 epoch;
-    uint_32 flags;             /*!< File flag default. */
-
-/*@owned@*/ const char ** bnl; /*!< Base name(s) (from header) */
-/*@owned@*/ const char ** dnl; /*!< Directory name(s) (from header) */
-/*@owned@*/ const char ** fmd5s;/*!< File MD5 sum(s) (from header) */
-/*@owned@*/ const char ** flinks;      /*!< File link(s) (from header) */
-/*@owned@*/ const char ** flangs;      /*!< File lang(s) */
-    int_32 * dil;              /*!< Directory indice(s) (from header) */
-    const uint_32 * fflags;    /*!< File flag(s) (from header) */
-    const uint_32 * fsizes;    /*!< File size(s) (from header) */
-    const uint_32 * fmtimes;   /*!< File modification time(s) (from header) */
-/* XXX setuid/setgid bits are turned off if fuser/fgroup doesn't map. */
-    uint_16 * fmodes;          /*!< File mode(s) (from header) */
-    uint_16 * frdevs;          /*!< File rdev(s) (from header) */
-
-/*@owned@*/ const char ** fuser;       /*!< File owner(s) */
-/*@owned@*/ const char ** fgroup;      /*!< File group(s) */
-/*@owned@*/ /*@null@*/ uid_t * fuids;  /*!< File uid(s) */
-/*@owned@*/ /*@null@*/ gid_t * fgids;  /*!< File gid(s) */
-
-/*@only@*/ /*@null@*/ char * fstates;  /*!< File state(s) (from header) */
-
-    int fc;                    /*!< No. of files. */
-    int dc;                    /*!< No. of directories. */
-
-/*@owned@*/ const char ** obnl;        /*!< Original base name(s) (from header) */
-/*@owned@*/ const char ** odnl;        /*!< Original directory name(s) (from header) */
-/*@unused@*/ int_32 * odil;    /*!< Original directory indice(s) (from header) */
-    int bnlmax;                        /*!< Length (in bytes) of longest base name. */
-    int dnlmax;                        /*!< Length (in bytes) of longest dir name. */
-    int astriplen;
-    int striplen;
-    unsigned int archiveSize;
-    mode_t dperms;             /*!< Directory perms (0755) if not mapped. */
-    mode_t fperms;             /*!< File perms (0644) if not mapped. */
-/*@only@*/ /*@null@*/ const char ** apath;
-    int mapflags;
-/*@owned@*/ /*@null@*/ int * fmapflags;
-    uid_t uid;
-    gid_t gid;
-    int magic;
-
-#define        TFIMAGIC        0x09697923
-/*@owned@*/ FSM_t fsm;         /*!< File state machine data. */
-
-    int keep_header;           /*!< Keep header? */
-
-/*@owned@*/ struct sharedFileInfo * replaced;  /*!< (TR_ADDED) */
-/*@owned@*/ uint_32 * replacedSizes;   /*!< (TR_ADDED) */
-
-    unsigned int record;       /*!< (TR_REMOVED) */
-
-/*@refs@*/ int nrefs;          /*!< Reference count. */
-};
-#endif /* DYING */
-
 /**
  */
 #define        PSM_VERBOSE     0x8000
@@ -162,17 +66,25 @@ typedef enum pkgStage_e {
 struct psm_s {
 /*@refcounted@*/
     rpmTransactionSet ts;      /*!< transaction set */
+/*@dependent@*/
+    transactionElement te;     /*!< transaction element */
 /*@refcounted@*/
     TFI_t fi;                  /*!< transaction element file info */
     FD_t cfd;                  /*!< Payload file handle. */
     FD_t fd;                   /*!< Repackage file handle. */
     Header oh;                 /*!< Repackage/multilib header. */
-/*@null@*/ rpmdbMatchIterator mi;
-/*@observer@*/ const char * stepName;
-/*@only@*/ /*@null@*/ const char * rpmio_flags;
-/*@only@*/ /*@null@*/ const char * failedFile;
-/*@only@*/ /*@null@*/ const char * pkgURL;     /*!< Repackage URL. */
-/*@dependent@*/ const char * pkgfn;    /*!< Repackage file name. */
+/*@null@*/
+    rpmdbMatchIterator mi;
+/*@observer@*/
+    const char * stepName;
+/*@only@*/ /*@null@*/
+    const char * rpmio_flags;
+/*@only@*/ /*@null@*/
+    const char * failedFile;
+/*@only@*/ /*@null@*/
+    const char * pkgURL;       /*!< Repackage URL. */
+/*@dependent@*/
+    const char * pkgfn;                /*!< Repackage file name. */
     int scriptTag;             /*!< Scriptlet data tag. */
     int progTag;               /*!< Scriptlet interpreter tag. */
     int npkgs_installed;       /*!< No. of installed instances. */
@@ -185,13 +97,15 @@ struct psm_s {
     unsigned long total;       /*!< Callback total. */
     rpmRC rc;
     pkgStage goal;
-/*@unused@*/ pkgStage stage;
+/*@unused@*/
+    pkgStage stage;
 };
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+#ifdef DYING
 /**
  * Return (malloc'd) transaction element name-version-release string.
  * @param fi           transaction element file info
@@ -200,6 +114,7 @@ extern "C" {
 /*@only@*/ /*@null@*/
 char * fiGetNEVR(/*@null@*/const TFI_t fi)
        /*@*/;
+#endif
 
 /**
  * Return file type from mode_t.
index 72be9f6..6914f72 100644 (file)
@@ -73,26 +73,14 @@ struct rpmFNSet_s {
     int_32 fc;                 /*!< No. of files. */
 
 /*=============================*/
-/*@owned@*/
-    const char * name;         /*!< Name: tag (malloc'd). */
-/*@owned@*/
-    const char * version;      /*!< Version: tag (malloc'd). */
-/*@owned@*/
-    const char * release;      /*!< Release: tag (malloc'd). */
-    uint_32 multiLib;          /* MULTILIB */
-/*@null@*/
-    fnpyKey key;               /*!< Package notify key. */
-/*@null@*/ /*@dependent@*/
-    rpmRelocation * relocs;    /*!< Package file relocations. */
-/*@null@*/
-    FD_t fd;                   /*!< Package file handle */
-    rpmTransactionType type;
+/*@dependent@*/
+    transactionElement te;
+
     HGE_t hge;                 /*!< Vector to headerGetEntry() */
     HAE_t hae;                 /*!< Vector to headerAddEntry() */
     HME_t hme;                 /*!< Vector to headerModifyEntry() */
     HRE_t hre;                 /*!< Vector to headerRemoveEntry() */
     HFD_t hfd;                 /*!< Vector to headerFreeData() */
-    int_32 epoch;
 /*-----------------------------*/
     uid_t uid;                 /*!< File uid (default). */
     gid_t gid;                 /*!< File gid (default). */
index 94d9322..f5922c9 100644 (file)
@@ -89,7 +89,9 @@ typedef /*@abstract@*/ /*@refcounted@*/ struct rpmDepSet_s * rpmDepSet;
 /**
  * File info tag sets from a header, so that a header can be discarded early.
  */
+typedef /*@abstract@*/ /*@refcounted@*/ struct rpmFNSet_s * TFI_t;
 typedef /*@abstract@*/ /*@refcounted@*/ struct rpmFNSet_s * rpmFNSet;
+typedef /*@abstract@*/ struct transactionElement_s * transactionElement;
 
 /** \ingroup header
  * Return name, version, release strings from header.
@@ -1265,14 +1267,6 @@ typedef /*@abstract@*/ struct fsm_s * FSM_t;
  */
 typedef /*@abstract@*/ struct psm_s * PSM_t;
 
-/** \ingroup rpmtrans
- */
-#ifdef DYING
-typedef /*@abstract@*/ /*@refcounted@*/ struct transactionFileInfo_s * TFI_t;
-#else
-typedef /*@abstract@*/ /*@refcounted@*/ struct rpmFNSet_s * TFI_t;
-#endif
-
 /**
  * Return package header from file handle.
  * @param ts           transaction set
@@ -1492,10 +1486,10 @@ void rpmtransSetScriptFd(rpmTransactionSet ts, FD_t fd)
  * @return             0 always
  */
 /*@unused@*/
-int rpmtransGetKeys(const rpmTransactionSet ts,
+int rpmtransGetKeys(rpmTransactionSet ts,
                /*@null@*/ /*@out@*/ fnpyKey ** ep,
                /*@null@*/ /*@out@*/ int * nep)
-       /*@modifies ep, nep @*/;
+       /*@modifies ts, ep, nep @*/;
 
 /** \ingroup rpmtrans
  * Check that all dependencies can be resolved.
index a1464d2..9168dba 100644 (file)
@@ -119,23 +119,28 @@ int rpmtransGetKeys(const rpmTransactionSet ts, fnpyKey ** ep, int * nep)
 
     if (nep) *nep = ts->orderCount;
     if (ep) {
+       teIterator pi;  transactionElement p;
        fnpyKey * e;
-       int oc;
 
        *ep = e = xmalloc(ts->orderCount * sizeof(*e));
-       for (oc = 0; oc < ts->orderCount; oc++, e++) {
-           switch (ts->order[oc].type) {
+       pi = teInitIterator(ts);
+       while ((p = teNextIterator(pi)) != NULL) {
+           switch (p->type) {
            case TR_ADDED:
-               *e = ts->order[oc].key;
+               /*@-onlytrans@*/
+               *e = p->key;
+               /*@=onlytrans@*/
                /*@switchbreak@*/ break;
-           default:
            case TR_REMOVED:
+           default:
                /*@-mods@*/     /* FIX: double indirection. */
                *e = NULL;
                /*@=mods@*/
                /*@switchbreak@*/ break;
            }
+           e++;
        }
+       pi = teFreeIterator(pi);
     }
     return rc;
 }
@@ -293,7 +298,8 @@ static int filecmp(short mode1, const char * md51, const char * link1,
 /**
  */
 /* XXX only ts->{probs,rpmdb} modified */
-static int handleInstInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
+static int handleInstInstalledFiles(const rpmTransactionSet ts,
+               transactionElement p, TFI_t fi,
                sharedFileInfo shared,
                int sharedCount, int reportConflicts)
        /*@globals fileSystem @*/
@@ -353,14 +359,12 @@ static int handleInstInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
                        fi->flinks[fileNum])) {
            /*@-compdef@*/ /* FIX: *fi->replaced undefined */
            if (reportConflicts) {
-               const char * pkgNEVR = fiGetNEVR(fi);
                const char * altNEVR = hGetNEVR(h, NULL);
                rpmProblemSetAppend(ts->probs, RPMPROB_FILE_CONFLICT,
-                       pkgNEVR, fi->key,
+                       p->NEVR, p->key,
                        fi->dnl[fi->dil[fileNum]], fi->bnl[fileNum],
                        altNEVR,
                        0);
-               pkgNEVR = _free(pkgNEVR);
                altNEVR = _free(altNEVR);
            }
            /*@=compdef@*/
@@ -446,7 +450,8 @@ static int handleRmvdInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
  * Update disk space needs on each partition for this package.
  */
 /* XXX only ts->{probs,di} modified */
-static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
+static void handleOverlappedFiles(const rpmTransactionSet ts,
+               const transactionElement p, TFI_t fi)
        /*@globals fileSystem @*/
        /*@modifies ts, fi, fileSystem @*/
 {
@@ -518,12 +523,14 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
        otherFileNum = -1;                      /* keep gcc quiet */
        for (otherPkgNum = j - 1; otherPkgNum >= 0; otherPkgNum--) {
            /* Added packages need only look at other added packages. */
-           if (fi->type == TR_ADDED && recs[otherPkgNum]->type != TR_ADDED)
+           if (p->type == TR_ADDED && recs[otherPkgNum]->te->type != TR_ADDED)
                /*@innercontinue@*/ continue;
 
            /* TESTME: there are more efficient searches in the world... */
-           for (otherFileNum = 0; otherFileNum < recs[otherPkgNum]->fc;
-                otherFileNum++) {
+           for (otherFileNum = 0;
+                otherFileNum < recs[otherPkgNum]->fc;
+                otherFileNum++)
+           {
 
                /* If the addresses are the same, so are the values. */
                if ((fi->fps + i) == (recs[otherPkgNum]->fps + otherFileNum))
@@ -541,7 +548,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
                /*@innerbreak@*/ break;
        }
 
-       switch (fi->type) {
+       switch (p->type) {
        case TR_ADDED:
          { struct stat sb;
            if (otherPkgNum < 0) {
@@ -560,6 +567,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
            }
 
            /* Mark added overlapped non-identical files as a conflict. */
+           /*@-branchstate@*/ /* FIX: p->key ??? */
            if ((ts->ignoreSet & RPMPROB_FILTER_REPLACENEWFILES)
             && filecmp(recs[otherPkgNum]->fmodes[otherFileNum],
                        recs[otherPkgNum]->fmd5s[otherFileNum],
@@ -568,16 +576,14 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
                        fi->fmd5s[i],
                        fi->flinks[i]))
            {
-               const char * pkgNEVR = fiGetNEVR(fi);
-               const char * altNEVR = fiGetNEVR(recs[otherPkgNum]);
+               const char * altNEVR = recs[otherPkgNum]->te->NEVR;
                rpmProblemSetAppend(ts->probs, RPMPROB_NEW_FILE_CONFLICT,
-                       pkgNEVR, fi->key,
+                       p->NEVR, p->key,
                        filespec, NULL,
                        altNEVR,
                        0);
-               pkgNEVR = _free(pkgNEVR);
-               altNEVR = _free(altNEVR);
            }
+           /*@=branchstate@*/
 
            /* Try to get the disk accounting correct even if a conflict. */
            fixupSize = recs[otherPkgNum]->fsizes[otherFileNum];
@@ -884,24 +890,6 @@ static void skipFiles(const rpmTransactionSet ts, TFI_t fi)
     if (languages) freeSplitString((char **)languages);
 }
 
-/**
- * Return next transaction element's file info.
- * @param tei          transaction element iterator
- * @return             nest transaction element file info, NULL on termination
- */
-/*@unused@*/ static inline
-TFI_t teNextFi(teIterator tei)
-       /*@modifies tei @*/
-{
-    TFI_t fi = NULL;
-
-    if (teNextIterator(tei) != NULL && tei->ocsave != -1)
-       fi = tei->ts->flList + tei->ocsave;
-    /*@-compdef -onlytrans -usereleased@*/ /* FIX: ts->flList may be released */
-    return fi;
-    /*@=compdef =onlytrans =usereleased@*/
-}
-
 #define        NOTIFY(_ts, _al)        if ((_ts)->notify) (void) (_ts)->notify _al
 
 int rpmRunTransactions(        rpmTransactionSet ts,
@@ -917,13 +905,11 @@ int rpmRunTransactions(   rpmTransactionSet ts,
     sharedFileInfo shared, sharedList;
     int numShared;
     int nexti;
-    alKey pkgKey, lastKey;
-    int oc;
-    transactionElement p;
+    alKey lastKey;
     fingerPrintCache fpc;
-    struct psm_s psmbuf;
-    PSM_t psm = &psmbuf;
-    teIterator tei;
+    PSM_t psm = memset(alloca(sizeof(*psm)), 0, sizeof(*psm));
+    teIterator pi;     transactionElement p;
+    teIterator qi;     transactionElement q;
     int xx;
 
 int keep_header = 0;
@@ -1022,8 +1008,8 @@ int keep_header = 0;
      * - count files.
      */
     /* The ordering doesn't matter here */
-    tei = teInitIterator(ts);
-    while ((p = teNext(tei, TR_ADDED)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNext(pi, TR_ADDED)) != NULL) {
        rpmdbMatchIterator mi;
 
        /*@-branchstate@*/ /* FIX: p->key ??? */
@@ -1049,11 +1035,7 @@ int keep_header = 0;
        }
 
        /* XXX multilib should not display "already installed" problems */
-       if (!(ts->ignoreSet & RPMPROB_FILTER_REPLACEPKG)
-#ifdef DYING   /* XXX MULTILIB multiLib from transactionElement */
-        && !alGetMultiLib(ts->addedPackages, i)
-#endif
-       ) {
+       if (!(ts->ignoreSet & RPMPROB_FILTER_REPLACEPKG) && !p->multiLib) {
            mi = rpmtsInitIterator(ts, RPMTAG_NAME, p->name, 0);
            xx = rpmdbSetIteratorRE(mi, RPMTAG_VERSION, RPMMIRE_DEFAULT,
                                p->version);
@@ -1075,28 +1057,11 @@ int keep_header = 0;
            totalFileCount += p->fns->fc;
 
     }
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
-#ifdef DYING
-    /* FIXME: it seems a bit silly to read in all of these headers twice */
-    /* The ordering doesn't matter here */
-    if (ts->numRemovedPackages > 0) {
-       rpmdbMatchIterator mi;
-       Header h;
-       int fileCount;
-
-       mi = rpmtsInitIterator(ts, RPMDBI_PACKAGES, NULL, 0);
-       xx = rpmdbAppendIterator(mi, ts->removedPackages, ts->numRemovedPackages);
-       while ((h = rpmdbNextIterator(mi)) != NULL) {
-           if (headerGetEntry(h, RPMTAG_BASENAMES, NULL, NULL, &fileCount))
-               totalFileCount += fileCount;
-       }
-       mi = rpmdbFreeIterator(mi);
-    }
-#else
     /* The ordering doesn't matter here */
-    tei = teInitIterator(ts);
-    while ((p = teNext(tei, TR_REMOVED)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNext(pi, TR_REMOVED)) != NULL) {
        rpmFNSet fns;
 
        fns = p->fns;
@@ -1110,8 +1075,7 @@ int keep_header = 0;
            continue;   /* XXX can't happen */
        totalFileCount += fns->fc;
     }
-    tei = teFreeIterator(tei);
-#endif
+    pi = teFreeIterator(pi);
 
     /* ===============================================
      * Initialize transaction element file info for package:
@@ -1124,33 +1088,20 @@ int keep_header = 0;
      * calling fpLookupList only once. I'm not sure that the speedup is
      * worth the trouble though.
      */
-    tei = teInitIterator(ts);
-    while ((fi = teNextFi(tei)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNextIterator(pi)) != NULL) {
 
-       oc = teGetOc(tei);
+       fi = teGetFi(pi);
        fi->magic = TFIMAGIC;
-
-       fi->type = ts->order[oc].type;
+       fi->te = p;
 
        /*@-branchstate@*/
-       switch (fi->type) {
+       switch (p->type) {
        case TR_ADDED:
            fi->record = 0;
 
-/*@i@*/            fi->h = headerLink(ts->order[oc].h, "xfer to fi->h");
-           ts->order[oc].h = headerFree(ts->order[oc].h, "xfer to fi->h");
-
-#ifdef DYING   /* XXX MULTILIB multiLib from transactionElement */
-           fi->multiLib = alGetMultiLib(ts->addedPackages, i);
-#else
-           fi->multiLib = ts->order[oc].multiLib;
-#endif
-
-/*@i@*/            fi->key = ts->order[oc].key;
-           fi->relocs = ts->order[oc].relocs;
-/*@i@*/            fi->fd = ts->order[oc].fd;
-
-           /* XXX availablePackage can be dumped here XXX */
+/*@i@*/            fi->h = headerLink(p->h, "xfer to fi->h");
+           p->h = headerFree(p->h, "xfer to fi->h");
 
            /* XXX header arg unused. */
            loadFi(ts, fi, fi->h, keep_header);
@@ -1162,7 +1113,7 @@ int keep_header = 0;
            skipFiles(ts, fi);
            /*@switchbreak@*/ break;
        case TR_REMOVED:
-           fi->record = ts->order[oc].u.removed.dboffset;
+           fi->record = p->u.removed.dboffset;
            /* Retrieve erased package header from the database. */
            {   rpmdbMatchIterator mi;
 
@@ -1185,7 +1136,7 @@ int keep_header = 0;
        if (fi->fc)
            fi->fps = xmalloc(fi->fc * sizeof(*fi->fps));
     }
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
     if (!ts->chrootDone) {
        xx = chdir("/");
@@ -1207,9 +1158,13 @@ int keep_header = 0;
     /* ===============================================
      * Add fingerprint for each file not skipped.
      */
-    tei = teInitIterator(ts);
-    while ((fi = teNextFi(tei)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNextIterator(pi)) != NULL) {
+
+       fi = teGetFi(pi);
+
        fpLookupList(fpc, fi->dnl, fi->bnl, fi->dil, fi->fc, fi->fps);
+       /*@-branchstate@*/
        for (i = 0; i < fi->fc; i++) {
            if (XFA_SKIPPING(fi->actions[i]))
                /*@innercontinue@*/ continue;
@@ -1217,8 +1172,9 @@ int keep_header = 0;
            htAddEntry(ts->ht, fi->fps + i, fi);
            /*@=dependenttrans@*/
        }
+       /*@=branchstate@*/
     }
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
     /*@-noeffectuncon @*/ /* FIX: check rc */
     NOTIFY(ts, (NULL, RPMCALLBACK_TRANS_START, 6, ts->flEntries,
@@ -1228,11 +1184,13 @@ int keep_header = 0;
     /* ===============================================
      * Compute file disposition for each package in transaction set.
      */
-    tei = teInitIterator(ts);
-    while ((fi = teNextFi(tei)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNextIterator(pi)) != NULL) {
        dbiIndexSet * matches;
        int knownBad;
 
+       fi = teGetFi(pi);
+
        /*@-noeffectuncon @*/ /* FIX: check rc */
        NOTIFY(ts, (NULL, RPMCALLBACK_TRANS_PROGRESS, (fi - ts->flList),
                        ts->flEntries, NULL, ts->notifyData));
@@ -1259,19 +1217,17 @@ int keep_header = 0;
             * have been removed before we will get here.
             */
            for (j = 0; j < dbiIndexSetCount(matches[i]); j++) {
-               int k, ro;
+               int ro;
                ro = dbiIndexRecordOffset(matches[i], j);
                knownBad = 0;
-               for (k = 0; ro != knownBad && k < ts->orderCount; k++) {
-                   switch (ts->order[k].type) {
-                   case TR_REMOVED:
-                       if (ts->order[k].u.removed.dboffset == ro)
-                           knownBad = ro;
-                       /*@switchbreak@*/ break;
-                   case TR_ADDED:
-                       /*@switchbreak@*/ break;
-                   }
+               qi = teInitIterator(ts);
+               while ((q = teNext(qi, TR_REMOVED)) != NULL) {
+                   if (ro == knownBad)
+                       /*@innerbreak@*/ break;
+                   if (q->u.removed.dboffset == ro)
+                       knownBad = ro;
                }
+               qi = teFreeIterator(qi);
 
                shared->pkgFileNum = i;
                shared->otherPkg = dbiIndexRecordOffset(matches[i], j);
@@ -1310,9 +1266,9 @@ int keep_header = 0;
            }
 
            /* Determine the fate of each file. */
-           switch (fi->type) {
+           switch (p->type) {
            case TR_ADDED:
-               xx = handleInstInstalledFiles(ts, fi, shared, nexti - i,
+               xx = handleInstInstalledFiles(ts, p, fi, shared, nexti - i,
        !(beingRemoved || (ts->ignoreSet & RPMPROB_FILTER_REPLACEOLDFILES)));
                /*@switchbreak@*/ break;
            case TR_REMOVED:
@@ -1325,10 +1281,10 @@ int keep_header = 0;
        free(sharedList);
 
        /* Update disk space needs on each partition for this package. */
-       handleOverlappedFiles(ts, fi);
+       handleOverlappedFiles(ts, p, fi);
 
        /* Check added package has sufficient space on each partition used. */
-       switch (fi->type) {
+       switch (p->type) {
        case TR_ADDED:
            if (!(ts->di && fi->fc))
                /*@switchbreak@*/ break;
@@ -1341,21 +1297,17 @@ int keep_header = 0;
                    /*@innercontinue@*/ continue;
 
                if (adj_fs_blocks(dip->bneeded) > dip->bavail) {
-                   const char * pkgNEVR = fiGetNEVR(fi);
                    rpmProblemSetAppend(ts->probs, RPMPROB_DISKSPACE,
-                               pkgNEVR, fi->key,
+                               p->NEVR, p->key,
                                ts->filesystems[i], NULL, NULL,
                   (adj_fs_blocks(dip->bneeded) - dip->bavail) * dip->bsize);
-                   pkgNEVR = _free(pkgNEVR);
                }
 
                if (adj_fs_blocks(dip->ineeded) > dip->iavail) {
-                   const char * pkgNEVR = fiGetNEVR(fi);
                    rpmProblemSetAppend(ts->probs, RPMPROB_DISKNODES,
-                               pkgNEVR, fi->key,
+                               p->NEVR, p->key,
                                ts->filesystems[i], NULL, NULL,
                    (adj_fs_blocks(dip->ineeded) - dip->iavail));
-                   pkgNEVR = _free(pkgNEVR);
                }
            }
            /*@switchbreak@*/ break;
@@ -1363,7 +1315,7 @@ int keep_header = 0;
            /*@switchbreak@*/ break;
        }
     }
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
     if (ts->chrootDone) {
        /*@-superuser -noeffect @*/
@@ -1386,13 +1338,14 @@ int keep_header = 0;
      * Free unused memory as soon as possible.
      */
 
-    tei = teInitIterator(ts);
-    while ((fi = teNextFi(tei)) != NULL) {
+    pi = teInitIterator(ts);
+    while ((p = teNextIterator(pi)) != NULL) {
+       fi = teGetFi(pi);
        if (fi->fc == 0)
            continue;
        fi->fps = _free(fi->fps);
     }
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
     fpCacheFree(fpc);
     htFree(ts->ht);
@@ -1419,22 +1372,25 @@ int keep_header = 0;
      * Save removed files before erasing.
      */
     if (ts->transFlags & (RPMTRANS_FLAG_DIRSTASH | RPMTRANS_FLAG_REPACKAGE)) {
-       tei = teInitIterator(ts);
-       while ((fi = teNextFi(tei)) != NULL) {
-           switch (fi->type) {
+       pi = teInitIterator(ts);
+       while ((p = teNextIterator(pi)) != NULL) {
+           fi = teGetFi(pi);
+           switch (p->type) {
            case TR_ADDED:
                /*@switchbreak@*/ break;
            case TR_REMOVED:
-               if (ts->transFlags & RPMTRANS_FLAG_REPACKAGE) {
-                   psm->fi = rpmfiLink(fi, "tsRepackage");
-                   xx = psmStage(psm, PSM_PKGSAVE);
-                   (void) rpmfiUnlink(fi, "tsRepackage");
-                   psm->fi = NULL;
-               }
+               if (!(ts->transFlags & RPMTRANS_FLAG_REPACKAGE))
+                   /*@switchbreak@*/ break;
+               psm->te = p;
+               psm->fi = rpmfiLink(fi, "tsRepackage");
+               xx = psmStage(psm, PSM_PKGSAVE);
+               (void) rpmfiUnlink(fi, "tsRepackage");
+               psm->fi = NULL;
+               psm->te = NULL;
                /*@switchbreak@*/ break;
            }
        }
-       tei = teFreeIterator(tei);
+       pi = teFreeIterator(pi);
     }
 
     /* ===============================================
@@ -1442,36 +1398,38 @@ int keep_header = 0;
      */
 
     lastKey = (alKey)-2;       /* erased packages have -1 */
-    tei = teInitIterator(ts);
+    pi = teInitIterator(ts);
     /*@-branchstate@*/ /* FIX: fi reload needs work */
-    while ((fi = teNextFi(tei)) != NULL) {
+    while ((p = teNextIterator(pi)) != NULL) {
+       alKey pkgKey;
        Header h;
        int gotfd;
 
-       oc = teGetOc(tei);
        gotfd = 0;
+       fi = teGetFi(pi);
+       
+       psm->te = p;
        psm->fi = rpmfiLink(fi, "tsInstall");
-       switch (fi->type) {
+       switch (p->type) {
        case TR_ADDED:
 
-           pkgKey = ts->order[oc].u.addedKey;
+           pkgKey = p->u.addedKey;
 
-           rpmMessage(RPMMESS_DEBUG, "========== +++ %s-%s-%s\n",
-                       fi->name, fi->version, fi->release);
+           rpmMessage(RPMMESS_DEBUG, "========== +++ %s\n", p->NEVR);
            h = (fi->h ? headerLink(fi->h, "TR_ADDED install") : NULL);
            /*@-branchstate@*/
-           if (fi->fd == NULL) {
+           if (p->fd == NULL) {
                /*@-noeffectuncon @*/ /* FIX: ??? */
-               fi->fd = ts->notify(fi->h, RPMCALLBACK_INST_OPEN_FILE, 0, 0,
-                               fi->key, ts->notifyData);
+               p->fd = ts->notify(fi->h, RPMCALLBACK_INST_OPEN_FILE, 0, 0,
+                               p->key, ts->notifyData);
                /*@=noeffectuncon @*/
-               if (fi->fd != NULL) {
+               if (p->fd != NULL) {
                    rpmRC rpmrc;
 
                    h = headerFree(h, "TR_ADDED install");
 
                    /*@-mustmod@*/      /* LCL: segfault */
-                   rpmrc = rpmReadPackageFile(ts, fi->fd,
+                   rpmrc = rpmReadPackageFile(ts, p->fd,
                                "rpmRunTransactions", &h);
                    /*@=mustmod@*/
 
@@ -1479,9 +1437,9 @@ int keep_header = 0;
                        /*@-noeffectuncon @*/ /* FIX: check rc */
                        (void) ts->notify(fi->h, RPMCALLBACK_INST_CLOSE_FILE,
                                        0, 0,
-                                       fi->key, ts->notifyData);
+                                       p->key, ts->notifyData);
                        /*@=noeffectuncon @*/
-                       fi->fd = NULL;
+                       p->fd = NULL;
                        ourrc++;
                    } else if (fi->h != NULL) {
                        Header foo = relocateFileList(ts, fi, h, NULL);
@@ -1489,12 +1447,12 @@ int keep_header = 0;
                        h = headerLink(foo, "TR_ADDED relocate xfer");
                        foo = headerFree(foo, "TR_ADDED relocate");
                    }
-                   if (fi->fd != NULL) gotfd = 1;
+                   if (p->fd != NULL) gotfd = 1;
                }
            }
            /*@=branchstate@*/
 
-           if (fi->fd != NULL) {
+           if (p->fd != NULL) {
                Header hsave = NULL;
 
                if (fi->h) {
@@ -1504,35 +1462,21 @@ int keep_header = 0;
                } else {
 char * fstates = fi->fstates;
 fileAction * actions = fi->actions;
-uint_32 multiLib = fi->multiLib;
-const void * key = fi->key;
-rpmRelocation * relocs = fi->relocs;
-FD_t fd = fi->fd;
 
 fi->fstates = NULL;
 fi->actions = NULL;
-fi->key = NULL;
-fi->relocs = NULL;
-fi->fd = NULL;
                    freeFi(fi);
-oc = teGetOc(tei);
 fi->magic = TFIMAGIC;
-fi->type = ts->order[oc].type;
+fi->te = p;
 fi->record = 0;
                    loadFi(ts, fi, h, 1);
 fi->fstates = _free(fi->fstates);
 fi->fstates = fstates;
 fi->actions = _free(fi->actions);
 fi->actions = actions;
-fi->multiLib = multiLib;
-fi->key = key;
-fi->relocs = relocs;
-/*@-newreftrans@*/
-/*@i@*/ fi->fd = fd;
-/*@=newreftrans@*/
 
                }
-               if (fi->multiLib)
+               if (p->multiLib)
                    ts->transFlags |= RPMTRANS_FLAG_MULTILIB;
 
                if (psmStage(psm, PSM_PKGINSTALL)) {
@@ -1554,19 +1498,17 @@ fi->relocs = relocs;
            if (gotfd) {
                /*@-noeffectuncon @*/ /* FIX: check rc */
                (void)ts->notify(fi->h, RPMCALLBACK_INST_CLOSE_FILE, 0, 0,
-                       fi->key, ts->notifyData);
+                       p->key, ts->notifyData);
                /*@=noeffectuncon @*/
-               fi->fd = NULL;
+               p->fd = NULL;
            }
 fi->h = headerFree(fi->h, "TR_ADDED fini");
            freeFi(fi);
            /*@switchbreak@*/ break;
        case TR_REMOVED:
-           rpmMessage(RPMMESS_DEBUG, "========== --- %s-%s-%s\n",
-                       fi->name, fi->version, fi->release);
-           oc = teGetOc(tei);
+           rpmMessage(RPMMESS_DEBUG, "========== --- %s\n", p->NEVR);
            /* If install failed, then we shouldn't erase. */
-           if (ts->order[oc].u.removed.dependsOnKey != lastKey) {
+           if (p->u.removed.dependsOnKey != lastKey) {
                if (psmStage(psm, PSM_PKGERASE))
                    ourrc++;
            }
@@ -1577,9 +1519,10 @@ fi->h = headerFree(fi->h, "TR_REMOVED fini");
        xx = rpmdbSync(ts->rpmdb);
        (void) rpmfiUnlink(fi, "tsInstall");
        psm->fi = NULL;
+       psm->te = NULL;
     }
     /*@=branchstate@*/
-    tei = teFreeIterator(tei);
+    pi = teFreeIterator(pi);
 
     ts->flList = freeFl(ts, ts->flList);
     ts->flEntries = 0;
index b94f1cf..6bca63e 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-07-24 10:02+0100\n"
 "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -607,88 +607,88 @@ msgstr "Soubor uveden dvakr
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Soubor %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "©patný soubor: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nemohu provést fork %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s selhalo\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Nemohu zapsat v¹echna data do %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Hledám   %s: (pou¾it %s)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Selhalo vyhledání %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -831,7 +831,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -861,7 +861,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -1567,47 +1567,47 @@ msgstr "nemohu otev
 msgid "file %s is on an unknown device\n"
 msgstr "soubor %s je na neznámém zaøízení\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -1619,7 +1619,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
@@ -2220,108 +2220,108 @@ msgstr " koliduje s %s-%s-%s\n"
 msgid "is needed by"
 msgstr " je nutné pro %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== relokace\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d vynechávám %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d pøemís»uji %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynechávám multilib cestu %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "vynechávám %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "pøemís»uji %s do %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "pøemís»uji adresáø %s do %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nemohu zapsat do %%%s %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
 
-#: lib/psm.c:1943
-#, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+#: lib/psm.c:1909
+#, fuzzy, c-format
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
 
-#: lib/psm.c:2060
-#, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+#: lib/psm.c:2026
+#, fuzzy, c-format
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
@@ -2870,13 +2870,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
index d157523..f7b11ec 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-04-05 23:03GMT\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -602,88 +602,88 @@ msgstr "Fil angivet to gange: %s\n"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Fil passer ikke til præfiks (%s): %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Fil ikke fundet med glob: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunne ikke fraspalte ny proces til %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s mislykkedes\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Finder %s: (benytter %s)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Kunne ikke finde %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
@@ -828,7 +828,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -858,7 +858,7 @@ msgstr "Kunne ikke l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1568,46 +1568,46 @@ msgstr "kunne ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukendt enhed\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -1619,7 +1619,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
@@ -2239,110 +2239,110 @@ msgstr " skaber konflikt med %s-%s-%s\n"
 msgid "is needed by"
 msgstr " kræves af %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== gemmer omrokeringer\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ekskluderer %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omrokerer %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ekskluderer %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "omrokerer %s til %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "omrokerer kataloget %s til %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke oprette %s: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kunne ikke skrive til %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
@@ -2892,13 +2892,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
index 94aaa8b..dc84964 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -681,94 +681,94 @@ msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
 # , c-format
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -921,7 +921,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -956,7 +956,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1707,47 +1707,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1759,7 +1759,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2411,114 +2411,114 @@ msgstr " steht im Konflikt mit %s-%s-%s\n"
 msgid "is needed by"
 msgstr " wird von %s-%s-%s gebraucht\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Hole %s heraus\n"
 
 # , c-format
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
@@ -3090,13 +3090,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
index 13f84c1..1ea85cc 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index ffd11ec..7aa4876 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -611,88 +611,88 @@ msgstr "En voi lukea %s: %s."
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp epäonnistui"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
@@ -835,7 +835,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -865,7 +865,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1585,46 +1585,46 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1636,7 +1636,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2273,109 +2273,109 @@ msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 msgid "is needed by"
 msgstr "vaatii %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
@@ -2939,13 +2939,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
index f908de2..4c8cf03 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -646,88 +646,88 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "La construction a chou.\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -870,7 +870,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -900,7 +900,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1620,46 +1620,46 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1671,7 +1671,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2321,110 +2321,110 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
@@ -2982,13 +2982,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 16db9ab..fc7c8b4 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-01-13 22:31+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -591,88 +591,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1532,46 +1532,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1583,7 +1583,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2168,108 +2168,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2810,13 +2810,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cf41c18..4147ca7 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-07-12 13:25+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -591,88 +591,88 @@ msgstr "Skr
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Skráin fannst ekki með 'glob': %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ógild skrá %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Gat ekki búið til undirferli (fork) %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s brást\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "gat ekki ritað öll gögn í %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "gat ekki fundið %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -815,7 +815,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -845,7 +845,7 @@ msgstr "Get ekki lesi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -1538,46 +1538,46 @@ msgstr "gat ekki opna
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -1589,7 +1589,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2179,108 +2179,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "get ekki ritað í %%%s %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
@@ -2821,13 +2821,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 3d606b3..7a3f66c 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -637,88 +637,88 @@ msgstr "
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s ¼ºÇÔ"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
@@ -862,7 +862,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -892,7 +892,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -1617,46 +1617,46 @@ msgstr "%s 
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -1669,7 +1669,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
@@ -2331,111 +2331,111 @@ msgstr " %s-%s-%s 
 msgid "is needed by"
 msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
@@ -2999,13 +2999,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
index 1412a50..020ac8c 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-09-07 22:03+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -602,88 +602,88 @@ msgstr "
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "ÆÄÀÏÀÌ prefix (%s) (¿Í)°ú ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "ÆÄÀÏ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "ÁÙ(line): %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s (À»)¸¦ fork ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s ¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s (À»)¸¦ Ã£´Â Áß: (%s »ç¿ë)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s (À»)¸¦ Ã£´Âµ¥ ½ÇÆÐÇÔ:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
@@ -822,7 +822,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -852,7 +852,7 @@ msgstr "%s 
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -1558,47 +1558,47 @@ msgstr "%s (
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀÌ ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -1610,7 +1610,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇϽǠ¼ö ¾ø½À´Ï´Ù\n"
@@ -2220,114 +2220,114 @@ msgstr " %s-%s-%s (
 msgid "is needed by"
 msgstr " (Àº)´Â %s-%s-%s ¿¡¼­ ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== Àç¹èÄ¡\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d Á¦¿Ü(exclude)  %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s (À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¿¡¼­ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s µð·ºÅ丮¸¦ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, waitpid°¡ %"
 "5$s (À»)¸¦ ¹ÝȯÇÏ¿´½À´Ï´Ù \n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %"
 "5$d\n"
 
-#: lib/psm.c:1943
-#, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+#: lib/psm.c:1909
+#, fuzzy, c-format
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:2060
-#, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+#: lib/psm.c:2026
+#, fuzzy, c-format
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ®¸´(scriptlet)°¡ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s (À»)¸¦ »ý·«ÇÕ´Ï"
 "´Ù\n"
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
@@ -2875,13 +2875,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
index bc168b0..2b84636 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-06-27 12:24+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -601,88 +601,88 @@ msgstr "Fil listet to ganger: %s\n"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s feilet\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Klarte ikke å finne %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -825,7 +825,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -855,7 +855,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1552,46 +1552,46 @@ msgstr "klarte ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukjent enhet\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -1603,7 +1603,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
@@ -2203,108 +2203,108 @@ msgstr " er i konflikt med %s-%s-%s\n"
 msgid "is needed by"
 msgstr " kreves av %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omplasser %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relokerer %s til %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relokerer katalog %s til %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke opprette %%%s %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan ikke skrive til %%%s %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
@@ -2847,13 +2847,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
index 2a336c4..52c024a 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -627,88 +627,88 @@ msgstr "Plik podany dwukrotnie: %s"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Plik %4d: 0%o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "linia: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "plik %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s nie powiod³o siê"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
@@ -852,7 +852,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -882,7 +882,7 @@ msgstr "Nie mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1600,46 +1600,46 @@ msgstr "nie mo
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -1652,7 +1652,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
@@ -2289,110 +2289,110 @@ msgstr " jest w konflikcie z %s-%s-%s\n"
 msgid "is needed by"
 msgstr " jest wymagany przez %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
@@ -2952,13 +2952,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
index 475852a..87fcf79 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2000-06-22 01:13+01:00\n"
 "Last-Translator: José Nuno Coelho Sanarra Pires\n"
 "Language-Team: pt <kde@poli.org>\n"
@@ -597,88 +597,88 @@ msgstr "Ficheiro listado duas vezes: %s\n"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "O ficheiro não corresponde ao prefixo (%s): %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Ficheiro não encontrado: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Dono/grupo inválido: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Ficheiro: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "O ficheiro precisa de começar por \"/\": %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linha %d: Nome do ficheiro não permitido: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Ficheiro não encontrado pelo glob: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Não consegui abrir o ficheiro do %%files %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "linha: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ficheiro inválido: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Não consegui executar o %s: %S\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Não consegui executar à parte o %s: &s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "O %s falhou\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "não consegui escrever todos os dados em %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "A procurar o %s: (usando o %s)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Não consegui encontrar o %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "A processar os ficheiros: %s-%s-%s\n"
@@ -823,7 +823,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -853,7 +853,7 @@ msgstr "N
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Não consegui escrever o conteúdo de %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -1555,46 +1555,46 @@ msgstr "falhei ao aceder ao %s: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "o ficheiro %s está num dispositivo desconhecido\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linha %d: %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gravado como %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "não consigo remover a %s - a directoria não está vazia\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "o rmdir da %s falhou: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
@@ -1606,7 +1606,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "O tipo de dados %d não é suportado\n"
@@ -2217,108 +2217,108 @@ msgstr " est
 msgid "is needed by"
 msgstr " é necessário pelo %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== mudanças de local\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d excluir o %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d mudar de local %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "a exclur a directoria 'multilib' %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "a excluir o %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "a mudar o %s para %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "a mudar a directoria %s para %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "não consigo criar o %s: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "não consigo escrever em %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "a correr os programas de pós-instalação (se existirem)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "o utilizador %s não existe - a usar o root\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "o grupo %s não existe - a usar o root\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "falhei ao aceder ao %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "O %s falhou\n"
@@ -2866,13 +2866,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "'Pad' ou preenchimento da assinatura: %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
index 8ef76d8..e3c37c4 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 
 #: build.c:36
 #, fuzzy
@@ -660,96 +660,96 @@ msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -911,7 +911,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -946,7 +946,7 @@ msgstr "No consegui abrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1712,50 +1712,50 @@ msgstr "No consegui abrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1767,7 +1767,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2410,7 +2410,7 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
@@ -2422,13 +2422,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2441,7 +2441,7 @@ msgstr "No consegui abrir: %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "RPM verso %s\n"
@@ -2454,94 +2454,94 @@ msgstr "RPM verso %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
@@ -3129,7 +3129,7 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3143,7 +3143,7 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
index a1e287f..9720551 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -591,88 +591,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1532,46 +1532,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1583,7 +1583,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2168,108 +2168,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2810,13 +2810,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index d272a18..ea03291 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 67469fb..2b4b0d8 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-08-29 13:55-0400\n"
 "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
 "Language-Team:  Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -614,88 +614,88 @@ msgstr "
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -834,7 +834,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -864,7 +864,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -1577,47 +1577,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -1629,7 +1629,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉΠÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
@@ -2233,108 +2233,108 @@ msgstr " 
 msgid "is needed by"
 msgstr " ÎÕÖÅΠÄÌÑ %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
 
-#: lib/psm.c:1943
-#, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+#: lib/psm.c:1909
+#, fuzzy, c-format
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:2060
-#, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+#: lib/psm.c:2026
+#, fuzzy, c-format
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
@@ -2883,13 +2883,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
index dd66b7a..c0eabec 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -625,88 +625,88 @@ msgstr "S
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "súbor %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s zlyhalo"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
@@ -850,7 +850,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -880,7 +880,7 @@ msgstr "Nie je mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -1599,46 +1599,46 @@ msgstr "nepodarilo sa otvori
 msgid "file %s is on an unknown device\n"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -1651,7 +1651,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
@@ -2286,110 +2286,110 @@ msgstr " koliduje s %s-%s-%s\n"
 msgid "is needed by"
 msgstr " je vy¾adované %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
@@ -2949,13 +2949,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
index 15f9fa0..5b9dbb2 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -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.199 2001/11/11 12:47:34 jbj Exp $
+# $Id: sl.po,v 1.200 2001/11/11 16:18:22 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -623,88 +623,88 @@ msgstr "Datoteka je navedena dvakrat: %s"
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Datoteka se ne ujema s predpono (%s): %s"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Po¹kodovana datoteka: %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Vejitev %s ni mo¾na: %s"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s neuspe¹en"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "pisanje podatkov v %s je bilo neuspe¹no"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Iskanje  %s: (z uporabo %s)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Neuspe¹no iskanje %s:"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -848,7 +848,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -878,7 +878,7 @@ msgstr "Ikone %s ni mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1600,46 +1600,46 @@ msgstr "neuspe
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -1652,7 +1652,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
@@ -2285,110 +2285,110 @@ msgstr " je v sporu z %s-%s-%s\n"
 msgid "is needed by"
 msgstr " potrebuje %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "premiokanje imenika %s v %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "pisanje na %s ni mo¾no"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
@@ -2947,13 +2947,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
index eb0727e..878fa78 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -609,88 +609,88 @@ msgstr "Neuspelo 
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "PGP omanuo"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -833,7 +833,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -863,7 +863,7 @@ msgstr "Ne mogu da upi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1583,46 +1583,46 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1634,7 +1634,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2272,109 +2272,109 @@ msgstr " se sudara sa %s-%s-%s\n"
 msgid "is needed by"
 msgstr " je potreban paketu %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, fuzzy, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
@@ -2938,13 +2938,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
index 661c75c..bf6784e 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-09-12 14:18+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -605,88 +605,88 @@ msgstr "Filen uppr
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Filen matchar inte prefixet (%s): %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Hittade ingen fil vid matchningen: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Felaktig fil: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunde inte grena %s: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s misslyckades\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunde inte skriva all data till %s\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Letar upp %s: (använder %s)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Misslyckades med att hitta %s:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -825,7 +825,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -855,7 +855,7 @@ msgstr "Kan inte l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1561,47 +1561,47 @@ msgstr "kunde inte 
 msgid "file %s is on an unknown device\n"
 msgstr "filen %s är på en okänd enhet\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "arkivfil %s fanns inte i huvudets fillista\n"
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -1613,7 +1613,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
@@ -2216,109 +2216,109 @@ msgstr " st
 msgid "is needed by"
 msgstr " behövs av %s-%s-%s\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== omflyttningar\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d utesluter  %s\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d flyttar om %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "hoppar över multilib-sökväg %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "hoppar över %s %s\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan inte skapa %%%s %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan inte skriva till %%%s %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
 
-#: lib/psm.c:1943
-#, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+#: lib/psm.c:1909
+#, fuzzy, c-format
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
 
-#: lib/psm.c:2060
-#, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+#: lib/psm.c:2026
+#, fuzzy, c-format
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
@@ -2868,13 +2868,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
index e5aaad1..3f7729f 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-0500\n"
 "PO-Revision-Date: 2001-07-05 08:02+300\n"
 "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
@@ -612,88 +612,88 @@ msgstr "Dosya iki kere g
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Dosya %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Dosya hatalý: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ayrýlamadý: %s\n"
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr "%s baþarýsýz\n"
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "tüm veri %s içine yazýlamadý\n"
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s aranýyor: (%s kullanarak)...\n"
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s bulunamadý:\n"
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@@ -836,7 +836,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -866,7 +866,7 @@ msgstr "%s'den payload okunamad
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -1581,47 +1581,47 @@ msgstr "%s a
 msgid "file %s is on an unknown device\n"
 msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n"
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -1633,7 +1633,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n"
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
@@ -2240,108 +2240,108 @@ msgstr " %s-%s-%s ile 
 msgid "is needed by"
 msgstr " %s-%s-%s için gerekli\n"
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr "========== yeniden konumlama\n"
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d %s'i dýþlýyor\n"
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s dýþlanýyor\n"
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s %s'e konumlanýyor\n"
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizini %s de yeniden konumlanýyor\n"
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s dosyasýna yazýlamaz %s\n"
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n"
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
 
-#: lib/psm.c:1943
-#, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+#: lib/psm.c:1909
+#, fuzzy, c-format
+msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
 
-#: lib/psm.c:2060
-#, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+#: lib/psm.c:2026
+#, fuzzy, c-format
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
@@ -2889,13 +2889,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
index 13f84c1..1ea85cc 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 13f84c1..1ea85cc 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-11 07:35-0500\n"
+"POT-Creation-Date: 2001-11-11 10:55-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"
@@ -596,88 +596,88 @@ msgstr ""
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1499
+#: build/files.c:1501
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1525
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1566 build/files.c:2178 build/parsePrep.c:50
+#: build/files.c:1568 build/files.c:2180 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1578
+#: build/files.c:1580
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1682
+#: build/files.c:1684
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1705
+#: build/files.c:1707
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1720
+#: build/files.c:1722
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1782
+#: build/files.c:1784
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1793 build/pack.c:146
+#: build/files.c:1795 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2166
+#: build/files.c:2168
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2240
+#: build/files.c:2242
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2245
+#: build/files.c:2247
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2329
+#: build/files.c:2331
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2333
+#: build/files.c:2335
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2469
+#: build/files.c:2471
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2495 build/files.c:2509
+#: build/files.c:2497 build/files.c:2511
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2630
+#: build/files.c:2632
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2138
+#: build/pack.c:603 lib/psm.c:2101
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2403
+#: build/pack.c:683 lib/psm.c:2366
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1537,46 +1537,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:306
+#: lib/fsm.c:309
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:311
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1169
+#: lib/fsm.c:1172
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1450
+#: lib/fsm.c:1453
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1571 lib/fsm.c:1699
+#: lib/fsm.c:1574 lib/fsm.c:1702
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1725
+#: lib/fsm.c:1728
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1731
+#: lib/fsm.c:1734
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1741
+#: lib/fsm.c:1744
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1760
+#: lib/fsm.c:1763
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1588,7 +1588,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:954
+#: lib/header.c:384 lib/header_internal.c:161 lib/psm.c:922
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2173,108 +2173,108 @@ msgstr ""
 msgid "is needed by"
 msgstr ""
 
-#: lib/psm.c:270
+#: lib/psm.c:253
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/psm.c:274
+#: lib/psm.c:257
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/psm.c:277
+#: lib/psm.c:260
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/psm.c:347
+#: lib/psm.c:330
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/psm.c:413
+#: lib/psm.c:396
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/psm.c:423
+#: lib/psm.c:406
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:502
+#: lib/psm.c:485
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/psm.c:1151
+#: lib/psm.c:1119
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1157
+#: lib/psm.c:1125
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:1197
+#: lib/psm.c:1165
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1316
+#: lib/psm.c:1280
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1426
+#: lib/psm.c:1392
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1594
+#: lib/psm.c:1560
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1601
+#: lib/psm.c:1567
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1943
+#: lib/psm.c:1909
 #, c-format
-msgid "%s: %s-%s-%s has %d files, test = %d\n"
+msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2060
+#: lib/psm.c:2026
 #, c-format
-msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
+msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:2174
+#: lib/psm.c:2137
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2183
+#: lib/psm.c:2146
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2224
+#: lib/psm.c:2187
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2225
+#: lib/psm.c:2188
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2411
+#: lib/psm.c:2374
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2414
+#: lib/psm.c:2377
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2815,13 +2815,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:204
+#: lib/transaction.c:209
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:874
+#: lib/transaction.c:880
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index f2e2207..4776889 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -571,3 +571,4 @@ fi
 - no-brainer refcounts for rpmDepSet and rpmFNSet objects.
 - strip header tags for erased as well as installed transactionElements.
 - common structure elements for unification of TFI_t and rpmFNSet.
+- factor per-transactionElement data out of TFI_t through pointer ref.
index 7796042..db57bf0 100644 (file)
@@ -571,3 +571,4 @@ fi
 - no-brainer refcounts for rpmDepSet and rpmFNSet objects.
 - strip header tags for erased as well as installed transactionElements.
 - common structure elements for unification of TFI_t and rpmFNSet.
+- factor per-transactionElement data out of TFI_t through pointer ref.