- fix: harmless typo in db3 chroot hack.
authorjbj <devnull@localhost>
Tue, 6 Nov 2001 22:46:26 +0000 (22:46 +0000)
committerjbj <devnull@localhost>
Tue, 6 Nov 2001 22:46:26 +0000 (22:46 +0000)
- fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken.
- fix: add Korean message catalogs (#54473).
- add RPHNPLATFORM and PLATFORM tags.
- linear search on added package provides is dumb.
- discarding entire signature header when using --addsign is dumb.

CVS patchset: 5159
CVS date: 2001/11/06 22:46:26

48 files changed:
CHANGES
build/files.c
build/parsePreamble.c
build/parseSpec.c
db/mp/mp_fopen.c
lib/depends.c
lib/depends.h
lib/rpmal.c
lib/rpmal.h
lib/rpmchecksig.c
lib/rpmds.c
lib/rpmlib.h
lib/rpmlibprov.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
python/rpmmodule.c
rpm.spec.in
rpmdb/rpmhash.c
rpmdb/rpmhash.h

diff --git a/CHANGES b/CHANGES
index fcc8cdb..ee679e4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -45,6 +45,8 @@
        - depends.h: hack around teIterator() et al from include for now.
        - rpmds: move trigger dependencies into a rpmDepSet as well.
        - rpmal: availablePackage is totally opaque, alKey with index replaces.
+       - linear search on added package provides is dumb.
+       - discarding entire signature header when using --addsign is dumb.
 
 4.0.3 -> 4.0.4:
 
        - popt: clarify X consortium license in popt.3 man page.
        - close/discard Depends index after rpmdepCheck() use.
        - lclint-3.0.0.15 fiddles.
+       - fix: harmless typo in db3 chroot hack.
+       - fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken.
+       - fix: add Korean message catalogs (#54473).
+       - add RPHNPLATFORM and PLATFORM tags.
 
 4.0 -> 4.0.[12]
        - fix: avoid calling getpass twice as side effect of xstrdup macro
index 45e1536..450761e 100644 (file)
@@ -1217,8 +1217,14 @@ static void genCpioListAndHeader(/*@partial@*/ FileList fl,
                               &(flp->uname), 1);
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEGROUPNAME, RPM_STRING_ARRAY_TYPE,
                               &(flp->gname), 1);
+      if (sizeof(flp->fl_mtime) != sizeof(uint_32)) {
+       uint_32 mtime = (uint_32)flp->fl_mtime;
+       (void) headerAddOrAppendEntry(h, RPMTAG_FILEMTIMES, RPM_INT32_TYPE,
+                              &(mtime), 1);
+      } else {
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEMTIMES, RPM_INT32_TYPE,
                               &(flp->fl_mtime), 1);
+      }
       if (sizeof(flp->fl_mode) != sizeof(uint_16)) {
        uint_16 pmode = (uint_16)flp->fl_mode;
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEMODES, RPM_INT16_TYPE,
@@ -1243,9 +1249,15 @@ static void genCpioListAndHeader(/*@partial@*/ FileList fl,
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEDEVICES, RPM_INT32_TYPE,
                               &(flp->fl_dev), 1);
       }
-/*@=sizeoftype@*/
+      if (sizeof(flp->fl_ino) != sizeof(uint_32)) {
+       uint_32 ino = (uint_32)flp->fl_ino;
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEINODES, RPM_INT32_TYPE,
-                              &(flp->fl_ino), 1);
+                               &(ino), 1);
+      } else {
+       (void) headerAddOrAppendEntry(h, RPMTAG_FILEINODES, RPM_INT32_TYPE,
+                               &(flp->fl_ino), 1);
+      }
+/*@=sizeoftype@*/
 
        (void) headerAddOrAppendEntry(h, RPMTAG_FILELANGS, RPM_STRING_ARRAY_TYPE,
                               &(flp->langs),  1);
index 331086a..4ba0218 100644 (file)
@@ -29,6 +29,7 @@ static rpmTag copyTagsDuringParse[] = {
     RPMTAG_CHANGELOGNAME,
     RPMTAG_CHANGELOGTEXT,
     RPMTAG_PREFIXES,
+    RPMTAG_RHNPLATFORM,
     0
 };
 
@@ -496,6 +497,7 @@ static int handlePreambleTag(Spec spec, Package pkg, int tag, const char *macro,
       case RPMTAG_VERSION:
       case RPMTAG_RELEASE:
       case RPMTAG_URL:
+      case RPMTAG_RHNPLATFORM:
        SINGLE_TOKEN_ONLY;
        /* These macros are for backward compatibility */
        if (tag == RPMTAG_VERSION) {
@@ -755,6 +757,7 @@ static struct PreambleRec_s preambleList[] = {
     {RPMTAG_AUTOREQ,           0, 0, "autoreq"},
     {RPMTAG_AUTOPROV,          0, 0, "autoprov"},
     {RPMTAG_DOCDIR,            0, 0, "docdir"},
+    {RPMTAG_RHNPLATFORM,       0, 0, "rhnplatform"},
     /*@-nullassign@*/  /* LCL: can't add null annotation */
     {0, 0, 0, 0}
     /*@=nullassign@*/
index 2835bfe..006ab46 100644 (file)
@@ -573,11 +573,12 @@ fprintf(stderr, "*** PS buildRootURL(%s) %p macro set to %s\n", spec->buildRootU
        os = myos;
     }
 #else
+    const char *platform = rpmExpand("%{_target_platform}", NULL);
     const char *arch = rpmExpand("%{_target_cpu}", NULL);
     const char *os = rpmExpand("%{_target_os}", NULL);
 #endif
 
-      for (pkg = spec->packages; pkg != NULL; pkg = pkg->next) {
+    for (pkg = spec->packages; pkg != NULL; pkg = pkg->next) {
        if (!headerIsEntry(pkg->header, RPMTAG_DESCRIPTION)) {
            const char * name;
            (void) headerNVR(pkg->header, &name, NULL, NULL);
@@ -588,11 +589,19 @@ fprintf(stderr, "*** PS buildRootURL(%s) %p macro set to %s\n", spec->buildRootU
        }
 
        (void) headerAddEntry(pkg->header, RPMTAG_OS, RPM_STRING_TYPE, os, 1);
-       (void) headerAddEntry(pkg->header, RPMTAG_ARCH, RPM_STRING_TYPE, arch, 1);
-      }
+       (void) headerAddEntry(pkg->header, RPMTAG_ARCH,
+               RPM_STRING_TYPE, arch, 1);
+       if (!headerIsEntry(pkg->header, RPMTAG_RHNPLATFORM))
+           (void) headerAddEntry(pkg->header, RPMTAG_RHNPLATFORM,
+               RPM_STRING_TYPE, arch, 1);
+       (void) headerAddEntry(pkg->header, RPMTAG_PLATFORM,
+               RPM_STRING_TYPE, platform, 1);
+    }
+
 #ifdef DYING
     myos = _free(myos);
 #else
+    platform = _free(platform);
     arch = _free(arch);
     os = _free(os);
 #endif
index b585117..e5d7250 100644 (file)
@@ -314,7 +314,7 @@ __memp_fopen_int(dbmfp, mfp, path, flags, mode, pagesize, needlock)
 if (chroot_prefix) {
     int chrlen = strlen(chroot_prefix);
     if (!strncmp(rpath, chroot_prefix, chrlen))
-       rpath += chrlen = 1;
+       rpath += chrlen;
 }
                oflags = 0;
                if (LF_ISSET(DB_CREATE))
index bb4837c..adb4b6e 100644 (file)
@@ -1018,13 +1018,13 @@ static void markLoop(/*@special@*/ tsortInfo tsi, transactionElement q)
     /*@-branchstate@*/ /* FIX: q is kept */
     while (tsi != NULL && (p = tsi->tsi_suc) != NULL) {
        tsi = tsi->tsi_next;
-       if (p->tsi.tsi_chain != NULL)
+       if (p->tsi->tsi_chain != NULL)
            continue;
        /*@-assignexpose -temptrans@*/
-       p->tsi.tsi_chain = q;
+       p->tsi->tsi_chain = q;
        /*@=assignexpose =temptrans@*/
-       if (p->tsi.tsi_next != NULL)
-           markLoop(p->tsi.tsi_next, p);
+       if (p->tsi->tsi_next != NULL)
+           markLoop(p->tsi->tsi_next, p);
     }
     /*@=branchstate@*/
 }
@@ -1072,7 +1072,7 @@ zapRelation(transactionElement q, transactionElement p,
     tsortInfo tsi;
     const char *dp = NULL;
 
-    for (tsi_prev = &q->tsi, tsi = q->tsi.tsi_next;
+    for (tsi_prev = q->tsi, tsi = q->tsi->tsi_next;
         tsi != NULL;
        /* XXX Note: the loop traverses "not found", break on "found". */
        /*@-nullderef@*/
@@ -1102,7 +1102,7 @@ zapRelation(transactionElement q, transactionElement p,
            rpmMessage(RPMMESS_DEBUG,
                        _("removing %s \"%s\" from tsort relations.\n"),
                        (p->NEVR ?  p->NEVR : "???"), dp);
-           p->tsi.tsi_count--;
+           p->tsi->tsi_count--;
            if (tsi_prev) tsi_prev->tsi_next = tsi->tsi_next;
            tsi->tsi_next = NULL;
            tsi->tsi_suc = NULL;
@@ -1201,13 +1201,13 @@ fprintf(stderr, "addRelation: selected[%d] = 1\n", i);
 /*@=nullpass@*/
 
     /* T3. Record next "q <- p" relation (i.e. "p" requires "q"). */
-    p->tsi.tsi_count++;                        /* bump p predecessor count */
+    p->tsi->tsi_count++;                       /* bump p predecessor count */
     if (p->depth <= q->depth)          /* Save max. depth in dependency tree */
        p->depth = q->depth + 1;
 /*@-nullpass@*/
 if (_te_debug)
 fprintf(stderr, "addRelation: p %p(%s) depth %d", p, p->name, p->depth);
-prtTSI(NULL, &p->tsi);
+prtTSI(NULL, p->tsi);
 /*@=nullpass@*/
 
     tsi = xcalloc(1, sizeof(*tsi));
@@ -1219,21 +1219,21 @@ prtTSI(NULL, &p->tsi);
     tsi->tsi_reqx = requires->i;
     /*@=type@*/
 
-    tsi->tsi_next = q->tsi.tsi_next;
+    tsi->tsi_next = q->tsi->tsi_next;
 /*@-nullpass -compmempass@*/
 prtTSI("addRelation: new", tsi);
 if (_te_debug)
 fprintf(stderr, "addRelation: BEFORE q %p(%s)", q, q->name);
-prtTSI(NULL, &q->tsi);
+prtTSI(NULL, q->tsi);
 /*@=nullpass =compmempass@*/
 /*@-mods@*/
-    q->tsi.tsi_next = tsi;
-    q->tsi.tsi_qcnt++;                 /* bump q successor count */
+    q->tsi->tsi_next = tsi;
+    q->tsi->tsi_qcnt++;                        /* bump q successor count */
 /*@=mods@*/
 /*@-nullpass -compmempass@*/
 if (_te_debug)
 fprintf(stderr, "addRelation:  AFTER q %p(%s)", q, q->name);
-prtTSI(NULL, &q->tsi);
+prtTSI(NULL, q->tsi);
 /*@=nullpass =compmempass@*/
     return 0;
 }
@@ -1270,20 +1270,20 @@ static void addQ(transactionElement p,
        (*rp) = (*qp) = p;
        return;
     }
-    for (qprev = NULL, q = (*qp); q != NULL; qprev = q, q = q->tsi.tsi_suc) {
-       if (q->tsi.tsi_qcnt <= p->tsi.tsi_qcnt)
+    for (qprev = NULL, q = (*qp); q != NULL; qprev = q, q = q->tsi->tsi_suc) {
+       if (q->tsi->tsi_qcnt <= p->tsi->tsi_qcnt)
            break;
     }
     /*@-assignexpose@*/
     if (qprev == NULL) {       /* insert at beginning of list */
-       p->tsi.tsi_suc = q;
+       p->tsi->tsi_suc = q;
        (*qp) = p;              /* new head */
     } else if (q == NULL) {    /* insert at end of list */
-       qprev->tsi.tsi_suc = p;
+       qprev->tsi->tsi_suc = p;
        (*rp) = p;              /* new tail */
     } else {                   /* insert between qprev and q */
-       p->tsi.tsi_suc = q;
-       qprev->tsi.tsi_suc = p;
+       p->tsi->tsi_suc = q;
+       qprev->tsi->tsi_suc = p;
     }
     /*@=assignexpose@*/
 }
@@ -1324,6 +1324,8 @@ fprintf(stderr, "*** rpmdepOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCo
     /* XXX Only added packages are ordered (for now). */
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
 
+       p->tsi = xcalloc(1, sizeof(*p->tsi));
+
        /* Retrieve info from addedPackages. */
        p->NEVR = alGetNVR(ts->addedPackages, p->u.addedKey);
        p->name = alGetNVR(ts->addedPackages, p->u.addedKey);
@@ -1333,7 +1335,7 @@ fprintf(stderr, "*** rpmdepOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCo
        if ((p->version = strrchr(p->name, '-')) != NULL)
            *p->version++ = '\0';
 /*@-modfilesystem@*/
-prtTSI(p->NEVR, &p->tsi);
+prtTSI(p->NEVR, p->tsi);
 /*@=modfilesystem@*/
 /*@=nullpass@*/
     }
@@ -1404,7 +1406,7 @@ prtTSI(p->NEVR, &p->tsi);
     /* XXX Only added packages are ordered (for now). */
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
 
-       p->npreds = p->tsi.tsi_count;
+       p->npreds = p->tsi->tsi_count;
 /*@-modfilesystem -nullpass@*/
 if (_te_debug)
 fprintf(stderr, "\t+++ %p[%d] %s npreds %d\n", p, teGetOc(pi), p->NEVR, p->npreds);
@@ -1426,24 +1428,24 @@ rescan:
 
        /* Prefer packages in chainsaw or presentation order. */
        if (!chainsaw)
-           p->tsi.tsi_qcnt = (ts->orderCount - teGetOc(pi));
+           p->tsi->tsi_qcnt = (ts->orderCount - teGetOc(pi));
 
-       if (p->tsi.tsi_count != 0)
+       if (p->tsi->tsi_count != 0)
            continue;
-       p->tsi.tsi_suc = NULL;
+       p->tsi->tsi_suc = NULL;
        addQ(p, &q, &r);
        qlen++;
 /*@-modfilesystem -nullpass@*/
 if (_te_debug)
 fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, p->NEVR);
-prtTSI(" p", &p->tsi);
+prtTSI(" p", p->tsi);
 /*@=modfilesystem =nullpass@*/
     }
     pi = teFreeIterator(pi);
 
     /* T5. Output front of queue (T7. Remove from queue.) */
-    /*@-branchstate@*/ /* FIX: r->tsi.tsi_next released */
-    for (; q != NULL; q = q->tsi.tsi_suc) {
+    /*@-branchstate@*/ /* FIX: r->tsi->tsi_next released */
+    for (; q != NULL; q = q->tsi->tsi_suc) {
 
        /* XXX Only added packages are ordered (for now). */
        switch (q->type) {
@@ -1456,7 +1458,7 @@ prtTSI(" p", &p->tsi);
        }
 
        rpmMessage(RPMMESS_DEBUG, "%5d%5d%5d%3d %*s %s\n",
-                       orderingCount, q->npreds, q->tsi.tsi_qcnt, q->depth,
+                       orderingCount, q->npreds, q->tsi->tsi_qcnt, q->depth,
                        (2 * q->depth), "",
                        (q->NEVR ? q->NEVR : "???"));
        ordering[orderingCount] = q->u.addedKey;
@@ -1465,28 +1467,28 @@ prtTSI(" p", &p->tsi);
        loopcheck--;
 
        /* T6. Erase relations. */
-       tsi_next = q->tsi.tsi_next;
-       q->tsi.tsi_next = NULL;
+       tsi_next = q->tsi->tsi_next;
+       q->tsi->tsi_next = NULL;
        while ((tsi = tsi_next) != NULL) {
            tsi_next = tsi->tsi_next;
            tsi->tsi_next = NULL;
            p = tsi->tsi_suc;
-           if (p && (--p->tsi.tsi_count) <= 0) {
+           if (p && (--p->tsi->tsi_count) <= 0) {
                /* XXX TODO: add control bit. */
-               p->tsi.tsi_suc = NULL;
-               /*@-nullstate@*/        /* FIX: q->tsi.tsi_u.suc may be NULL */
-               addQ(p, &q->tsi.tsi_suc, &r);
+               p->tsi->tsi_suc = NULL;
+               /*@-nullstate@*/        /* FIX: q->tsi->tsi_u.suc may be NULL */
+               addQ(p, &q->tsi->tsi_suc, &r);
                /*@=nullstate@*/
                qlen++;
 /*@-modfilesystem -nullpass@*/
 if (_te_debug)
 fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, p->NEVR);
-prtTSI(" p", &p->tsi);
+prtTSI(" p", p->tsi);
 /*@=modfilesystem =nullpass@*/
            }
            tsi = _free(tsi);
        }
-       if (!_printed && loopcheck == qlen && q->tsi.tsi_suc != NULL) {
+       if (!_printed && loopcheck == qlen && q->tsi->tsi_suc != NULL) {
            _printed++;
            rpmMessage(RPMMESS_DEBUG,
                _("========== successors only (presentation order)\n"));
@@ -1503,11 +1505,11 @@ prtTSI(" p", &p->tsi);
        qi = teInitIterator(ts);
        /* XXX Only added packages are ordered (for now). */
        while ((q = teNext(qi, TR_ADDED)) != NULL) {
-           q->tsi.tsi_chain = NULL;
-           q->tsi.tsi_reqx = 0;
+           q->tsi->tsi_chain = NULL;
+           q->tsi->tsi_reqx = 0;
            /* Mark packages already sorted. */
-           if (q->tsi.tsi_count == 0)
-               q->tsi.tsi_count = -1;
+           if (q->tsi->tsi_count == 0)
+               q->tsi->tsi_count = -1;
        }
        qi = teFreeIterator(qi);
 
@@ -1515,11 +1517,11 @@ prtTSI(" p", &p->tsi);
        qi = teInitIterator(ts);
        /* XXX Only added packages are ordered (for now). */
        while ((q = teNext(qi, TR_ADDED)) != NULL) {
-           if ((tsi = q->tsi.tsi_next) == NULL)
+           if ((tsi = q->tsi->tsi_next) == NULL)
                continue;
-           q->tsi.tsi_next = NULL;
+           q->tsi->tsi_next = NULL;
            markLoop(tsi, q);
-           q->tsi.tsi_next = tsi;
+           q->tsi->tsi_next = tsi;
        }
        qi = teFreeIterator(qi);
 
@@ -1534,20 +1536,20 @@ prtTSI(" p", &p->tsi);
            printed = 0;
 
            /* T12. Mark predecessor chain, looking for start of loop. */
-           for (q = r->tsi.tsi_chain; q != NULL; q = q->tsi.tsi_chain) {
-               if (q->tsi.tsi_reqx)
+           for (q = r->tsi->tsi_chain; q != NULL; q = q->tsi->tsi_chain) {
+               if (q->tsi->tsi_reqx)
                    /*@innerbreak@*/ break;
-               q->tsi.tsi_reqx = 1;
+               q->tsi->tsi_reqx = 1;
            }
 
            /* T13. Print predecessor chain from start of loop. */
-           while ((p = q) != NULL && (q = p->tsi.tsi_chain) != NULL) {
+           while ((p = q) != NULL && (q = p->tsi->tsi_chain) != NULL) {
                rpmDepSet requires;
                const char * dp;
                char buf[4096];
 
                /* Unchain predecessor loop. */
-               p->tsi.tsi_chain = NULL;
+               p->tsi->tsi_chain = NULL;
 
                if (!printed) {
                    rpmMessage(RPMMESS_DEBUG, _("LOOP:\n"));
@@ -1570,13 +1572,13 @@ prtTSI(" p", &p->tsi);
            }
 
            /* Walk (and erase) linear part of predecessor chain as well. */
-           for (p = r, q = r->tsi.tsi_chain;
+           for (p = r, q = r->tsi->tsi_chain;
                 q != NULL;
-                p = q, q = q->tsi.tsi_chain)
+                p = q, q = q->tsi->tsi_chain)
            {
                /* Unchain linear part of predecessor loop. */
-               p->tsi.tsi_chain = NULL;
-               p->tsi.tsi_reqx = 0;
+               p->tsi->tsi_chain = NULL;
+               p->tsi->tsi_reqx = 0;
            }
        }
        /*@=branchstate@*/
@@ -1608,11 +1610,12 @@ prtTSI(" p", &p->tsi);
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
 
        /* Clean up tsort remnants (if any). */
-       while ((tsi = p->tsi.tsi_next) != NULL) {
-           p->tsi.tsi_next = tsi->tsi_next;
+       while ((tsi = p->tsi->tsi_next) != NULL) {
+           p->tsi->tsi_next = tsi->tsi_next;
            tsi->tsi_next = NULL;
            tsi = _free(tsi);
        }
+       p->tsi = _free(p->tsi);
        p->NEVR = _free(p->NEVR);
        p->name = _free(p->name);
 
index 94fb608..28d8573 100644 (file)
@@ -77,7 +77,9 @@ struct transactionElement_s {
 
     int npreds;                                /*!< No. of predecessors. */
     int depth;                         /*!< Max. depth in dependency tree. */
-    struct tsortInfo_s tsi;
+/*@owned@*/
+    tsortInfo tsi;                     /*!< Ordering info. */
+
     enum rpmTransactionType {
        TR_ADDED,       /*!< Package will be installed. */
        TR_REMOVED      /*!< Package will be removed. */
index e89e4b1..76307df 100644 (file)
@@ -54,15 +54,8 @@ struct availablePackage_s {
     rpmDepSet provides;                /*!< Provides: dependencies. */
 /*@owned@*/ /*@null@*/
     rpmDepSet requires;                /*!< Requires: dependencies. */
-
-#ifdef DYING
-/*@dependent@*//*@null@*/
-    const char ** baseNames;   /*!< Header file basenames. */
-    int filesCount;            /*!< No. of files in header. */
-#else
 /*@owned@*//*@null@*/
     rpmFNSet fns;              /*!< File name set. */
-#endif
 
 #ifdef DYING
     uint_32 multiLib;  /* MULTILIB */
@@ -74,11 +67,12 @@ struct availablePackage_s {
  * A single available item (e.g. a Provides: dependency).
  */
 struct availableIndexEntry_s {
+/*@dependent@*/ /*@null@*/
+    alKey pkgKey;              /*!< Containing package. */
 /*@dependent@*/
-    availablePackage package;  /*!< Containing package. */
-/*@dependent@*/
-    const char * entry;                /*!< Available item name. */
-    size_t entryLen;           /*!< No. of bytes in name. */
+    const char * entry;                /*!< Dependency name. */
+    unsigned short entryLen;   /*!< No. of bytes in name. */
+    unsigned short entryIx;    /*!< Dependency index. */
     enum indexEntryType {
        IET_PROVIDES=1                  /*!< A Provides: dependency. */
     } type;                    /*!< Type of available item. */
@@ -91,16 +85,18 @@ struct availableIndex_s {
 /*@null@*/
     availableIndexEntry index; /*!< Array of available items. */
     int size;                  /*!< No. of available items. */
+    int k;                     /*!< Current index. */
 };
 
 /** \ingroup rpmdep
  * A file to be installed/removed.
  */
 struct fileIndexEntry_s {
+/*@dependent@*/
+    const char * baseName;     /*!< File basename. */
+    int baseNameLen;
     alNum pkgNum;              /*!< Containing package index. */
     int fileFlags;     /* MULTILIB */
-/*@dependent@*/ /*@null@*/
-    const char * baseName;     /*!< File basename. */
 };
 
 /** \ingroup rpmdep
@@ -140,9 +136,10 @@ static int _al_debug = 0;
 static void alFreeIndex(availableList al)
        /*@modifies al @*/
 {
-    if (al->index.size) {
-       al->index.index = _free(al->index.index);
-       al->index.size = 0;
+    availableIndex ai = &al->index;
+    if (ai->size > 0) {
+       ai->index = _free(ai->index);
+       ai->size = 0;
     }
 }
 
@@ -259,14 +256,15 @@ char * alGetNVR(const availableList al, alKey pkgKey)
 availableList alCreate(int delta)
 {
     availableList al = xcalloc(1, sizeof(*al));
+    availableIndex ai = &al->index;
 
     al->delta = delta;
     al->size = 0;
     al->list = xcalloc(al->delta, sizeof(*al->list));
     al->alloced = al->delta;
 
-    al->index.index = NULL;
-    al->index.size = 0;
+    ai->index = NULL;
+    ai->size = 0;
 
     al->numDirs = 0;
     al->dirs = NULL;
@@ -275,10 +273,8 @@ availableList alCreate(int delta)
 
 availableList alFree(availableList al)
 {
-#ifdef DYING
-    HFD_t hfd = headerFreeData;
-#endif
     availablePackage alp;
+    dirInfo die;
     int i;
 
     if (al == NULL)
@@ -290,23 +286,20 @@ availableList alFree(availableList al)
        alp->provides = dsFree(alp->provides);
        alp->requires = dsFree(alp->requires);
 
-#ifdef DYING
-       alp->baseNames = hfd(alp->baseNames, -1);
-#else
        alp->fns = fnsFree(alp->fns);
-#endif
+
        alp->h = headerFree(alp->h, "alFree");
 
     }
 
-    if (al->dirs != NULL)
-    for (i = 0; i < al->numDirs; i++) {
-       al->dirs[i].dirName = _free(al->dirs[i].dirName);
-       al->dirs[i].files = _free(al->dirs[i].files);
+    if ((die = al->dirs) != NULL)
+    for (i = 0; i < al->numDirs; i++, die++) {
+       die->dirName = _free(die->dirName);
+       die->files = _free(die->files);
     }
-
     al->dirs = _free(al->dirs);
     al->numDirs = 0;
+
     al->list = _free(al->list);
     al->alloced = 0;
     alFreeIndex(al);
@@ -319,7 +312,8 @@ availableList alFree(availableList al)
  * @param two          2nd directory info
  * @return             result of comparison
  */
-static int dirInfoCompare(const void * one, const void * two)  /*@*/
+static int dieCompare(const void * one, const void * two)
+       /*@*/
 {
     /*@-castexpose@*/
     const dirInfo a = (const dirInfo) one;
@@ -334,11 +328,36 @@ static int dirInfoCompare(const void * one, const void * two)     /*@*/
     return strcmp(a->dirName, b->dirName);
 }
 
+/**
+ * Compare two file info entries by name (qsort/bsearch).
+ * @param one          1st directory info
+ * @param two          2nd directory info
+ * @return             result of comparison
+ */
+static int fieCompare(const void * one, const void * two)
+       /*@*/
+{
+    /*@-castexpose@*/
+    const fileIndexEntry a = (const fileIndexEntry) one;
+    const fileIndexEntry b = (const fileIndexEntry) two;
+    /*@=castexpose@*/
+    int lenchk = a->baseNameLen - b->baseNameLen;
+
+    if (lenchk)
+       return lenchk;
+
+    /* XXX FIXME: this might do "backward" strcmp for speed */
+    return strcmp(a->baseName, b->baseName);
+}
+
 void alDelPackage(availableList al, alKey pkgKey)
 {
+#ifdef DYING
     HGE_t hge = (HGE_t)headerGetEntryMinMemory;
     HFD_t hfd = headerFreeData;
+#endif
     availablePackage alp;
+    rpmFNSet fns;
     alNum pkgNum = alKey2Num(al, pkgKey);
 
     /*@-nullptrarith@*/ /* FIX: al->list might be NULL */
@@ -350,53 +369,64 @@ if (_al_debug)
 fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, alp->name, alp->version, alp->release);
 /*@=modfilesys@*/
 
-    if (alp->fns != NULL)
-    if (alp->fns->BN != NULL && alp->fns->Count > 0) {
+    /* Delete directory/file info entries from added package list. */
+    if ((fns = alp->fns) != NULL)
+    if (fns->BN != NULL && fns->Count > 0) {
        int origNumDirs = al->numDirs;
+#ifdef DYING
        const char ** dirNames;
        int_32 numDirs;
        rpmTagType dnt;
+#endif
        int dirNum;
-       dirInfo dirNeedle =
-               memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle));
-       dirInfo dirMatch;
+       dirInfo dieNeedle =
+               memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
+       dirInfo die;
        int last;
-       int i, xx;
+       int i;
 
+#ifdef DYING
        xx = hge(alp->h, RPMTAG_DIRNAMES, &dnt, (void **) &dirNames, &numDirs);
+#endif
 
        /* XXX FIXME: We ought to relocate the directory list here */
 
        if (al->dirs != NULL)
-       for (dirNum = al->numDirs - 1; dirNum >= 0; dirNum--) {
-           dirNeedle->dirName = (char *) dirNames[dirNum];
-           dirNeedle->dirNameLen = strlen(dirNames[dirNum]);
-           dirMatch = bsearch(dirNeedle, al->dirs, al->numDirs,
-                              sizeof(*dirNeedle), dirInfoCompare);
-           if (dirMatch == NULL)
+       if (fns->DN != NULL)
+       for (dirNum = fns->DCount - 1; dirNum >= 0; dirNum--) {
+           fileIndexEntry fie;
+
+           /*@-assignexpose@*/
+           dieNeedle->dirName = (char *) fns->DN[dirNum];
+           /*@=assignexpose@*/
+           dieNeedle->dirNameLen = strlen(dieNeedle->dirName);
+           die = bsearch(dieNeedle, al->dirs, al->numDirs,
+                              sizeof(*dieNeedle), dieCompare);
+           if (die == NULL)
                continue;
-           last = dirMatch->numFiles;
-           for (i = dirMatch->numFiles - 1; i >= 0; i--) {
-               if (dirMatch->files[i].pkgNum != pkgNum)
+
+           last = die->numFiles;
+           fie = die->files + last - 1;
+           for (i = last - 1; i >= 0; i--, fie--) {
+               if (fie->pkgNum != pkgNum)
                    /*@innercontinue@*/ continue;
-               dirMatch->numFiles--;
-               if (i > dirMatch->numFiles)
+               die->numFiles--;
+               if (i > die->numFiles)
                    /*@innercontinue@*/ continue;
-               memmove(dirMatch->files, dirMatch->files+1,
-                       (dirMatch->numFiles - i));
+               memmove(fie, fie+1, (die->numFiles - i));
            }
-           if (dirMatch->numFiles > 0) {
+           if (die->numFiles > 0) {
                if (last > i)
-                   dirMatch->files = xrealloc(dirMatch->files,
-                       dirMatch->numFiles * sizeof(*dirMatch->files));
+                   die->files = xrealloc(die->files,
+                                       die->numFiles * sizeof(*die->files));
                continue;
            }
-           dirMatch->files = _free(dirMatch->files);
-           dirMatch->dirName = _free(dirMatch->dirName);
+           die->files = _free(die->files);
+           die->dirName = _free(die->dirName);
            al->numDirs--;
-           if (dirNum > al->numDirs)
+           if ((die - al->dirs) > al->numDirs)
                continue;
-           memmove(dirMatch, dirMatch+1, (al->numDirs - dirNum));
+           memmove(die, die+1, (al->numDirs - (die - al->dirs)));
        }
 
        if (origNumDirs > al->numDirs) {
@@ -406,9 +436,16 @@ fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, alp->name, alp->v
                al->dirs = _free(al->dirs);
        }
 
+#ifdef DYING
        dirNames = hfd(dirNames, dnt);
+#endif
     }
+
+    alp->provides = dsFree(alp->provides);
+    alp->requires = dsFree(alp->requires);
+    alp->fns = fnsFree(alp->fns);
     alp->h = headerFree(alp->h, "alDelPackage");
+
     memset(alp, 0, sizeof(*alp));      /* XXX trash and burn */
     /*@-nullstate@*/ /* FIX: al->list->h may be NULL */
     return;
@@ -420,9 +457,8 @@ alKey alAddPackage(availableList al, alKey pkgKey, Header h)
 {
     int scareMem = 1;
     HGE_t hge = (HGE_t)headerGetEntryMinMemory;
-    HFD_t hfd = headerFreeData;
 #ifdef DYING
-    rpmTagType dnt, bnt;
+    HFD_t hfd = headerFreeData;
 #endif
     availablePackage alp;
     alNum pkgNum = alKey2Num(al, pkgKey);
@@ -431,6 +467,7 @@ alKey alAddPackage(availableList al, alKey pkgKey, Header h)
     uint_32 multiLibMask = 0;
     uint_32 * pp = NULL;
 #endif
+    rpmFNSet fns;
 
     if (pkgNum >= 0 && pkgNum < al->size) {
        alDelPackage(al, pkgKey);
@@ -486,102 +523,91 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, alp->name, alp->v
     alp->provides = dsNew(h, RPMTAG_PROVIDENAME, scareMem);
     alp->requires = dsNew(h, RPMTAG_REQUIRENAME, scareMem);
 
-#ifdef DYING
-    if (!hge(h, RPMTAG_BASENAMES, &bnt, (void **)&alp->baseNames, &alp->filesCount))
-    {
-       alp->filesCount = 0;
-       alp->baseNames = NULL;
-    } else {
-       int_32 * dirIndexes;
-       const char ** dirNames;
-       int_32 numDirs;
-       uint_32 * fileFlags = NULL;
+    alp->fns = fns = fnsNew(h, RPMTAG_BASENAMES, scareMem);
 
-       xx = hge(h, RPMTAG_DIRNAMES, &dnt, (void **) &dirNames, &numDirs);
-       xx = hge(h, RPMTAG_DIRINDEXES, NULL, (void **) &dirIndexes, NULL);
-       xx = hge(h, RPMTAG_FILEFLAGS, NULL, (void **) &fileFlags, NULL);
-    }
-
-    if (alp->filesCount > 0)
-#else
-    alp->fns = fnsNew(h, RPMTAG_BASENAMES, scareMem);
-
-    if (alp->fns && alp->fns->Count > 0)
-#endif
-    {
+    if (fns && fns->Count > 0) {
        int * dirMapping;
-       dirInfo dirNeedle =
-               memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle));
-       dirInfo dirMatch;
+       dirInfo dieNeedle =
+               memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
+       dirInfo die;
        int first, last, dirNum;
        int origNumDirs;
 
        /* XXX FIXME: We ought to relocate the directory list here */
 
-       dirMapping = alloca(sizeof(*dirMapping) * alp->fns->DCount);
+       dirMapping = alloca(sizeof(*dirMapping) * fns->DCount);
 
        /* allocated enough space for all the directories we could possible
           need to add */
        al->dirs = xrealloc(al->dirs,
-                       (al->numDirs + alp->fns->DCount) * sizeof(*al->dirs));
+                       (al->numDirs + fns->DCount) * sizeof(*al->dirs));
        origNumDirs = al->numDirs;
 
-       if (alp->fns->DN != NULL)
-       for (dirNum = 0; dirNum < alp->fns->DCount; dirNum++) {
+       if (fns->DN != NULL)
+       for (dirNum = 0; dirNum < fns->DCount; dirNum++) {
            /*@-assignexpose@*/
-           dirNeedle->dirName = (char *) alp->fns->DN[dirNum];
+           dieNeedle->dirName = (char *) fns->DN[dirNum];
            /*@=assignexpose@*/
-           dirNeedle->dirNameLen = strlen(alp->fns->DN[dirNum]);
-           dirMatch = bsearch(dirNeedle, al->dirs, origNumDirs,
-                              sizeof(*dirNeedle), dirInfoCompare);
-           if (dirMatch) {
-               dirMapping[dirNum] = dirMatch - al->dirs;
+           dieNeedle->dirNameLen = strlen(fns->DN[dirNum]);
+           die = bsearch(dieNeedle, al->dirs, origNumDirs,
+                              sizeof(*dieNeedle), dieCompare);
+           if (die) {
+               dirMapping[dirNum] = die - al->dirs;
            } else {
                dirMapping[dirNum] = al->numDirs;
-               dirMatch = al->dirs + al->numDirs;
-               dirMatch->dirName = xstrdup(alp->fns->DN[dirNum]);
-               dirMatch->dirNameLen = strlen(alp->fns->DN[dirNum]);
-               dirMatch->files = NULL;
-               dirMatch->numFiles = 0;
+               die = al->dirs + al->numDirs;
+               die->dirName = xstrdup(fns->DN[dirNum]);
+               die->dirNameLen = strlen(die->dirName);
+               die->files = NULL;
+               die->numFiles = 0;
                al->numDirs++;
            }
        }
 
-       alp->fns->DN = hfd(alp->fns->DN, alp->fns->DNt);
+#ifdef DYING
+       fns->DN = hfd(fns->DN, fns->DNt);
+#endif
+
+       last = 0;
+       for (first = 0; first < fns->Count; first = last + 1) {
+           fileIndexEntry fie;
 
-       for (first = 0; first < alp->fns->Count; first = last + 1) {
-           if (alp->fns->DI == NULL)   /* XXX can't happen */
+           if (fns->DI == NULL)        /* XXX can't happen */
                continue;
 
-           for (last = first; (last + 1) < alp->fns->Count; last++) {
-               if (alp->fns->DI[first] != alp->fns->DI[last + 1])
+           for (last = first; (last + 1) < fns->Count; last++) {
+               if (fns->DI[first] != fns->DI[last + 1])
                    /*@innerbreak@*/ break;
            }
 
-           dirMatch = al->dirs + dirMapping[alp->fns->DI[first]];
-           dirMatch->files = xrealloc(dirMatch->files,
-                   (dirMatch->numFiles + last - first + 1) *
-                       sizeof(*dirMatch->files));
+           die = al->dirs + dirMapping[fns->DI[first]];
+           die->files = xrealloc(die->files,
+                   (die->numFiles + last - first + 1) *
+                       sizeof(*die->files));
 
-           for (alp->fns->i = first; alp->fns->i <= last; alp->fns->i++) {
-               if (alp->fns->BN == NULL)       /* XXX can't happen */
+           fie = die->files + die->numFiles;
+           for (fns->i = first; fns->i <= last; fns->i++) {
+               if (fns->BN == NULL)    /* XXX can't happen */
                    /*@innercontinue@*/ continue;
-               if (alp->fns->Flags == NULL)    /* XXX can't happen */
+               if (fns->Flags == NULL) /* XXX can't happen */
                    /*@innercontinue@*/ continue;
                /*@-assignexpose@*/
-               dirMatch->files[dirMatch->numFiles].baseName =
-                   alp->fns->BN[alp->fns->i];
+               fie->baseName = fns->BN[fns->i];
+               fie->baseNameLen = strlen(fns->BN[fns->i]);
                /*@=assignexpose@*/
-               dirMatch->files[dirMatch->numFiles].pkgNum = pkgNum;
-               dirMatch->files[dirMatch->numFiles].fileFlags =
-                               alp->fns->Flags[alp->fns->i];
-               dirMatch->numFiles++;
+               fie->pkgNum = pkgNum;
+               fie->fileFlags = fns->Flags[fns->i];
+               die->numFiles++;
+               fie++;
            }
+           qsort(die->files, die->numFiles, sizeof(*die->files), fieCompare);
        }
 
-       /* XXX should we realloc to smaller size? */
-       if (origNumDirs + al->numDirs)
-           qsort(al->dirs, al->numDirs, sizeof(*al->dirs), dirInfoCompare);
+       /* XXX should we realloc al->dirs to actual size? */
+
+       /* If any directories were added, resort the directory list. */
+       if (origNumDirs != al->numDirs)
+           qsort(al->dirs, al->numDirs, sizeof(*al->dirs), dieCompare);
 
     }
 
@@ -597,24 +623,67 @@ assert(((alNum)(alp - al->list)) == pkgNum);
  * @param two          2nd available index entry
  * @return             result of comparison
  */
-static int indexcmp(const void * one, const void * two)                /*@*/
+static int indexcmp(const void * one, const void * two)
+       /*@*/
 {
     /*@-castexpose@*/
     const availableIndexEntry a = (const availableIndexEntry) one;
     const availableIndexEntry b = (const availableIndexEntry) two;
     /*@=castexpose@*/
-    int lenchk = a->entryLen - b->entryLen;
+    int lenchk;
 
+    lenchk = a->entryLen - b->entryLen;
     if (lenchk)
        return lenchk;
 
     return strcmp(a->entry, b->entry);
 }
 
+void alAddProvides(availableList al, alKey pkgKey, rpmDepSet provides)
+{
+    availableIndex ai = &al->index;
+    int i = alKey2Num(al, pkgKey);
+
+    if (provides == NULL || i < 0 || i >= al->size)
+       return;
+    if (ai->index == NULL || ai->k < 0 || ai->k >= ai->size)
+       return;
+
+    if (dsiInit(provides) != NULL)
+    while (dsiNext(provides) >= 0) {
+       const char * Name;
+
+#ifdef DYING   /* XXX FIXME: multilib colored dependency search */
+       const int_32 Flags = dsiGetFlags(provides);
+
+       /* If multilib install, skip non-multilib provides. */
+       if (al->list[i].multiLib && !isDependsMULTILIB(Flags)) {
+           ai->size--;
+           /*@innercontinue@*/ continue;
+       }
+#endif
+
+       if ((Name = dsiGetN(provides)) == NULL)
+           continue;   /* XXX can't happen */
+
+       /*@-assignexpose@*/
+       /*@-temptrans@*/
+       ai->index[ai->k].pkgKey = pkgKey;
+       /*@=temptrans@*/
+       ai->index[ai->k].entry = Name;
+       /*@=assignexpose@*/
+       ai->index[ai->k].entryLen = strlen(Name);
+assert(provides->i < 0x10000);
+       ai->index[ai->k].entryIx = provides->i;
+       ai->index[ai->k].type = IET_PROVIDES;
+       ai->k++;
+    }
+}
+
 void alMakeIndex(availableList al)
 {
     availableIndex ai = &al->index;
-    int i, j, k;
+    int i;
 
     if (ai->size || al->list == NULL) return;
 
@@ -624,30 +693,10 @@ void alMakeIndex(availableList al)
 
     if (ai->size) {
        ai->index = xcalloc(ai->size, sizeof(*ai->index));
+       ai->k = 0;
 
-       k = 0;
-       for (i = 0; i < al->size; i++) {
-           if (al->list[i].provides != NULL)
-           for (j = 0; j < al->list[i].provides->Count; j++) {
-
-#ifdef NOTNOW  /* XXX FIXME: multilib colored dependency search */
-               /* If multilib install, skip non-multilib provides. */
-               if (al->list[i].multiLib &&
-                   !isDependsMULTILIB(al->list[i].provides->Flags[j])) {
-                       ai->size--;
-                       /*@innercontinue@*/ continue;
-               }
-#endif
-
-               ai->index[k].package = al->list + i;
-               /*@-assignexpose@*/
-               ai->index[k].entry = al->list[i].provides->N[j];
-               /*@=assignexpose@*/
-               ai->index[k].entryLen = strlen(al->list[i].provides->N[j]);
-               ai->index[k].type = IET_PROVIDES;
-               k++;
-           }
-       }
+       for (i = 0; i < al->size; i++)
+           alAddProvides(al, (alKey)i, al->list[i].provides);
 
        qsort(ai->index, ai->size, sizeof(*ai->index), indexcmp);
     }
@@ -655,12 +704,15 @@ void alMakeIndex(availableList al)
 
 alKey * alAllFileSatisfiesDepend(const availableList al, const rpmDepSet ds)
 {
-    int i, found = 0;
+    int found = 0;
     const char * dirName;
     const char * baseName;
-    dirInfo dirNeedle =
-               memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle));
-    dirInfo dirMatch;
+    dirInfo dieNeedle =
+               memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
+    dirInfo die;
+    fileIndexEntry fieNeedle =
+               memset(alloca(sizeof(*fieNeedle)), 0, sizeof(*fieNeedle));
+    fileIndexEntry fie;
     alKey * ret = NULL;
     const char * fileName;
 
@@ -679,50 +731,50 @@ alKey * alAllFileSatisfiesDepend(const availableList al, const rpmDepSet ds)
        }
     }
 
-    dirNeedle->dirName = (char *) dirName;
-    dirNeedle->dirNameLen = strlen(dirName);
-    dirMatch = bsearch(dirNeedle, al->dirs, al->numDirs,
-                      sizeof(*dirNeedle), dirInfoCompare);
-    if (dirMatch == NULL)
+    dieNeedle->dirName = (char *) dirName;
+    dieNeedle->dirNameLen = strlen(dirName);
+    die = bsearch(dieNeedle, al->dirs, al->numDirs,
+                      sizeof(*dieNeedle), dieCompare);
+    if (die == NULL)
        goto exit;
 
     /* rewind to the first match */
-    while (dirMatch > al->dirs && dirInfoCompare(dirMatch-1, dirNeedle) == 0)
-       dirMatch--;
+    while (die > al->dirs && dieCompare(die-1, dieNeedle) == 0)
+       die--;
 
     if ((baseName = strrchr(fileName, '/')) == NULL)
        goto exit;
     baseName++;
 
+    /*@-branchstate@*/ /* FIX: ret is a problem */
     for (found = 0, ret = NULL;
-        dirMatch <= al->dirs + al->numDirs &&
-               dirInfoCompare(dirMatch, dirNeedle) == 0;
-        dirMatch++)
+        die <= al->dirs + al->numDirs && dieCompare(die, dieNeedle) == 0;
+        die++)
     {
-       /* XXX FIXME: these file lists should be sorted and bsearched */
-       for (i = 0; i < dirMatch->numFiles; i++) {
-           if (dirMatch->files[i].baseName == NULL ||
-                       strcmp(dirMatch->files[i].baseName, baseName))
-               /*@innercontinue@*/ continue;
-
-#ifdef NOTNOW  /* XXX FIXME: multilib colored dependency search */
-           /*
-            * If a file dependency would be satisfied by a file
-            * we are not going to install, skip it.
-            */
-           if (al->list[dirMatch->files[i].pkgNum].multiLib &&
-                       !isFileMULTILIB(dirMatch->files[i].fileFlags))
-               /*@innercontinue@*/ continue;
+
+       fieNeedle->baseName = baseName;
+       fieNeedle->baseNameLen = strlen(fieNeedle->baseName);
+       fie = bsearch(fieNeedle, die->files, die->numFiles,
+                      sizeof(*fieNeedle), fieCompare);
+       if (fie == NULL)
+           continue;   /* XXX shouldn't happen */
+
+#ifdef DYING   /* XXX FIXME: multilib colored dependency search */
+       /*
+        * If a file dependency would be satisfied by a file
+        * we are not going to install, skip it.
+        */
+       if (al->list[fie->pkgNum].multiLib && !isFileMULTILIB(fie->fileFlags))
+           continue;
 #endif
 
-           dsiNotify(ds, _("(added files)"), 0);
+       dsiNotify(ds, _("(added files)"), 0);
 
-           ret = xrealloc(ret, (found+2) * sizeof(*ret));
-           if (ret)    /* can't happen */
-               ret[found++] = alNum2Key(al, dirMatch->files[i].pkgNum);
-           /*@innerbreak@*/ break;
-       }
+       ret = xrealloc(ret, (found+2) * sizeof(*ret));
+       if (ret)        /* can't happen */
+           ret[found++] = alNum2Key(al, fie->pkgNum);
     }
+    /*@=branchstate@*/
 
 exit:
     dirName = _free(dirName);
@@ -758,6 +810,7 @@ alFileSatisfiesDepend(const availableList al, const rpmDepSet ds)
 alKey *
 alAllSatisfiesDepend(const availableList al, const rpmDepSet ds)
 {
+    availableIndex ai = &al->index;
     availableIndexEntry needle =
                memset(alloca(sizeof(*needle)), 0, sizeof(*needle));
     availableIndexEntry match;
@@ -776,49 +829,44 @@ alAllSatisfiesDepend(const availableList al, const rpmDepSet ds)
            return ret;
     }
 
-    if (!al->index.size || al->index.index == NULL) return NULL;
+    if (ai->index == NULL || ai->size <= 0)
+       return NULL;
 
-    /*@-assignexpose@*/
-    /*@-temptrans@*/
+    /*@-assignexpose -temptrans@*/
     needle->entry = KName;
-    /*@=temptrans@*/
-    needle->entryLen = strlen(KName);
-    match = bsearch(needle, al->index.index, al->index.size,
-                   sizeof(*al->index.index), indexcmp);
-    /*@=assignexpose@*/
+    /*@=assignexpose =temptrans@*/
+    needle->entryLen = strlen(needle->entry);
 
-    if (match == NULL) return NULL;
+    match = bsearch(needle, ai->index, ai->size, sizeof(*ai->index), indexcmp);
+    if (match == NULL)
+       return NULL;
 
     /* rewind to the first match */
-    while (match > al->index.index && indexcmp(match-1, needle) == 0)
+    while (match > ai->index && indexcmp(match-1, needle) == 0)
        match--;
 
     for (ret = NULL, found = 0;
-        match <= al->index.index + al->index.size &&
-               indexcmp(match, needle) == 0;
+        match <= ai->index + ai->size && indexcmp(match, needle) == 0;
         match++)
     {
-       alp = match->package;
+       /*@-nullptrarith@*/
+       alp = al->list + alKey2Num(al, match->pkgKey);
+       /*@=nullptrarith@*/
+
        rc = 0;
+       if (alp->provides != NULL)      /* XXX can't happen */
        switch (match->type) {
        case IET_PROVIDES:
-           if (alp->provides != NULL)
-           for (dsiInit(alp->provides) != NULL; dsiNext(alp->provides) >= 0;) {
-               const char * PName;
-
-               if ((PName = dsiGetN(alp->provides)) == NULL)
-                   /*@innercontinue@*/ continue;
-
-               /* Filter out provides that came along for the ride. */
-               if (strcmp(PName, KName))
-                   /*@innercontinue@*/ continue;
+           alp->provides->i = match->entryIx;
 
+           /* XXX single step on dsiNext to regenerate DNEVR string */
+           alp->provides->i--;
+           if (dsiNext(alp->provides) >= 0)
                rc = dsCompare(alp->provides, ds);
-               if (rc)
-                   /*@innerbreak@*/ break;
-           }
+
            if (rc)
                dsiNotify(ds, _("(added provide)"), 0);
+
            /*@switchbreak@*/ break;
        }
 
index 7fdf2a1..8f80741 100644 (file)
@@ -133,6 +133,18 @@ alKey alAddPackage(availableList al, /*@null@*/ alKey pkgKey, Header h)
        /*@modifies al, h @*/;
 
 /**
+ * Add package provides to available list index.
+ * @param al           available list
+ * @param pkgKey       package key
+ * @param provides     added package provides
+ */
+/*@-exportlocal@*/
+void alAddProvides(availableList al, /*@null@*/ alKey pkgKey,
+               /*@null@*/ rpmDepSet provides)
+       /*@modifies al, provides @*/;
+/*@=exportlocal@*/
+
+/**
  * Generate index for available list.
  * @param al           available list
  */
@@ -149,7 +161,7 @@ void alMakeIndex(availableList al)
 /*@only@*/ /*@null@*/
 alKey * alAllFileSatisfiesDepend(const availableList al, const rpmDepSet ds)
        /*@globals fileSystem @*/
-       /*@modifies fileSystem @*/;
+       /*@modifies al, fileSystem @*/;
 /*@=exportlocal@*/
 
 /**
@@ -161,7 +173,7 @@ alKey * alAllFileSatisfiesDepend(const availableList al, const rpmDepSet ds)
 /*@only@*/ /*@null@*/
 alKey * alAllSatisfiesDepend(const availableList al, const rpmDepSet ds)
        /*@globals fileSystem @*/
-       /*@modifies fileSystem @*/;
+       /*@modifies al, fileSystem @*/;
 
 /**
  * Check added package file lists for first package that has a provide.
@@ -172,7 +184,7 @@ alKey * alAllSatisfiesDepend(const availableList al, const rpmDepSet ds)
  */
 alKey alSatisfiesDepend(const availableList al, const rpmDepSet ds)
        /*@globals fileSystem @*/
-       /*@modifies fileSystem @*/;
+       /*@modifies al, fileSystem @*/;
 
 #ifdef __cplusplus
 }
index a71abef..e5ccf7e 100644 (file)
@@ -190,8 +190,13 @@ static int rpmReSign(/*@unused@*/ rpmTransactionSet ts,
 
        /* Toss the current signatures and recompute if not --addsign. */
        if (qva->qva_mode != RPMSIGN_ADD_SIGNATURE) {
-           sig = rpmFreeSignature(sig);
-           sig = rpmNewSignature();
+           (void) headerRemoveEntry(sig, RPMSIGTAG_SIZE);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_MD5);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_LEMD5_1);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_LEMD5_2);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_PGP5);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_PGP);
+           (void) headerRemoveEntry(sig, RPMSIGTAG_GPG);
            (void) rpmAddSignature(sig, sigtarget, RPMSIGTAG_SIZE, qva->passPhrase);
            (void) rpmAddSignature(sig, sigtarget, RPMSIGTAG_MD5, qva->passPhrase);
        }
index f6f1329..47051e3 100644 (file)
@@ -112,7 +112,7 @@ rpmDepSet dsFree(rpmDepSet ds)
 
 /*@-modfilesystem@*/
 if (_ds_debug)
-fprintf(stderr, "*** ds %p -- %s[%d]\n", ds, ds->Type, ds->Count);
+fprintf(stderr, "*** ds %p --\t%s[%d]\n", ds, ds->Type, ds->Count);
 /*@=modfilesystem@*/
 
 
@@ -163,6 +163,9 @@ rpmDepSet dsNew(Header h, rpmTag tagN, int scareMem)
     rpmTag tagEVR, tagF;
     rpmDepSet ds = NULL;
     const char * Type;
+    const char ** N;
+    rpmTagType Nt;
+    int_32 Count;
 
     if (tagN == RPMTAG_PROVIDENAME) {
        Type = "Provides";
@@ -191,31 +194,37 @@ rpmDepSet dsNew(Header h, rpmTag tagN, int scareMem)
     } else
        goto exit;
 
-    ds = xcalloc(1, sizeof(*ds));
-    ds->i = -1;
+    /*@-branchstate@*/
+    if (hge(h, tagN, &Nt, (void **) &N, &Count)
+     && N != NULL && Count > 0)
+    {
+       int xx;
 
-    ds->Type = Type;
-    ds->DNEVR = NULL;
+       ds = xcalloc(1, sizeof(*ds));
+       ds->h = (scareMem ? headerLink(h, "dsNew") : NULL);
+       ds->i = -1;
+       ds->Type = Type;
+       ds->DNEVR = NULL;
+       ds->tagN = tagN;
+       ds->N = N;
+       ds->Nt = Nt;
+       ds->Count = Count;
 
-    ds->tagN = tagN;
-    ds->h = (scareMem ? headerLink(h, "dsNew") : NULL);
-    if (hge(h, tagN, &ds->Nt, (void **) &ds->N, &ds->Count)) {
-       int xx;
        xx = hge(h, tagEVR, &ds->EVRt, (void **) &ds->EVR, NULL);
        xx = hge(h, tagF, &ds->Ft, (void **) &ds->Flags, NULL);
        if (!scareMem && ds->Flags != NULL)
            ds->Flags = memcpy(xmalloc(ds->Count * sizeof(*ds->Flags)),
                                 ds->Flags, ds->Count * sizeof(*ds->Flags));
-    } else
-       ds->h = headerFree(ds->h, "dsNew");
-
-exit:
 
 /*@-modfilesystem@*/
 if (_ds_debug)
-fprintf(stderr, "*** ds %p ++ %s[%d]\n", ds, ds->Type, ds->Count);
+fprintf(stderr, "*** ds %p ++\t%s[%d]\n", ds, ds->Type, ds->Count);
 /*@=modfilesystem@*/
 
+    }
+    /*@=branchstate@*/
+
+exit:
     /*@-nullret@*/ /* FIX: ds->Flags may be NULL. */
     return ds;
     /*@=nullret@*/
@@ -340,7 +349,7 @@ int dsiNext(/*@null@*/ rpmDepSet ds)
 
 /*@-modfilesystem -nullderef -nullpass @*/
 if (_ds_debug && i != -1)
-fprintf(stderr, "*** ds %p[%d] %s: %s\n", ds, i, (ds && ds->Type ? ds->Type : "?Type?"), (ds->DNEVR ? ds->DNEVR : "?DNEVR?"));
+fprintf(stderr, "*** ds %p\t%s[%d]: %s\n", ds, (ds && ds->Type ? ds->Type : "?Type?"), i, (ds->DNEVR ? ds->DNEVR : "?DNEVR?"));
 /*@=modfilesystem =nullderef =nullpass @*/
 
     return i;
index 495893f..6b00370 100644 (file)
@@ -364,6 +364,8 @@ typedef enum rpmTag_e {
     RPMTAG_INSTALLTID          = 1128,
     RPMTAG_REMOVETID           = 1129,
     RPMTAG_SHA1RHN             = 1130, /*!< internal */
+    RPMTAG_RHNPLATFORM         = 1131,
+    RPMTAG_PLATFORM            = 1132,
 /*@-enummemuse@*/
     RPMTAG_FIRSTFREE_TAG       /*!< internal */
 /*@=enummemuse@*/
index c77a726..a646087 100644 (file)
@@ -78,7 +78,7 @@ int rpmCheckRpmlibProvides(const rpmDepSet key)
            /*@=immediatetrans@*/
            pro->Count = 1;
            (void) dsiNext(dsiInit(pro));
-           rc = dsCompare(key, pro);
+           rc = dsCompare(pro, key);
            pro->DNEVR = _free(pro->DNEVR);
        }
        if (rc)
index 5a72fdf..20b6d98 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -602,93 +602,93 @@ msgstr "Nelze m
 msgid "File listed twice: %s\n"
 msgstr "Soubor uveden dvakrát: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Soubor %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nemohu provést fork %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s selhalo\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Nemohu zapsat v¹echna data do %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Hledám   %s: (pou¾it %s)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Selhalo vyhledání %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -946,123 +946,123 @@ msgstr "
 msgid "line %d: Second %%files list\n"
 msgstr "øádek %d: Druhý seznam %%files\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Architektura je vyøazena: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Architektura není zahrnuta: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS je vyøazen: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS není zahrnut: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Duplikovaná polo¾ka %s v balíèku: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Nemohu otevøít ikonu %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Nemohu pøeèíst ikonu %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Neznámý typ ikony: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "øádek %d: Znaèka má jen jeden token: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "øádek %d: Poèkozená znaèka: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "øádek %d: Prázdná znaèka: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "øádek %d: Nepøípustný znak '-' v %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot nemù¾e být \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "øádek %d: Prefixy nesmí konèit znakem \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "øádek %d: Docdir musí zaèínat na '/': %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "øádek %d: ©patné urèení %s: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "øádek %d: ©patný formát BuildArchitecture: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Interní chyba: ©patná znaèka: %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "©patná specifikace balíèku: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "Balíèek ji¾ existuje: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "øádek %d: Neznámá znaèka: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec soubor nemù¾e pou¾ít BuildRoot\n"
 
@@ -1218,7 +1218,7 @@ msgstr "po
 msgid "No compatible architectures found for build\n"
 msgstr "Nenalezeny ¾ádné kompatibilní architektury pro sestavení\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Balíèek nemá ¾ádné %%description: %s\n"
@@ -1486,45 +1486,45 @@ msgstr "
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "NE "
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "ANO"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1723,7 +1723,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "tato verze RPM podporuje práci s balíèky s verzí <= 4\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead selhalo\n"
@@ -1733,12 +1733,12 @@ msgstr "%s: readLead selhalo\n"
 msgid "%s: bad magic\n"
 msgstr "©patné magické èíslo"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature selhalo\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Není dostupný ¾ádný podpis\n"
@@ -1748,7 +1748,7 @@ msgstr "%s: Nen
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
@@ -2443,12 +2443,12 @@ msgstr "z
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "¹patný db soubor %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
@@ -2477,47 +2477,47 @@ msgstr "%s: RPM v1.0 nelze podepsat\n"
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nemohu znovu podepsat RPM v2.0\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead selhalo: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature selhalo: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "NENÍ OK"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (CHYBÍ KLÍÈ:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "OK"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2526,13 +2526,13 @@ msgstr ""
 "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
index 475a875..fc72688 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -597,93 +597,93 @@ msgstr "Kan ikke blande special-%%doc med andre former: %s\n"
 msgid "File listed twice: %s\n"
 msgstr "Fil angivet to gange: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Fil passer ikke til præfiks (%s): %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Fil ikke fundet med glob: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunne ikke fraspalte ny proces til %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s mislykkedes\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Finder %s: (benytter %s)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Kunne ikke finde %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
@@ -943,123 +943,123 @@ msgstr "linie %d: Fejl ved tolkning af %%files: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr "linie %d: Anden '%%files'-liste\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Arkitekturen er ekskluderet: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Arkitekturen er ikke inkluderet: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS er ekskluderet: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS is ikke inkluderet: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "'%s'-felt skal være tilstede i pakke : %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Flere '%s'-indgange i pakke: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Kunne ikke åbne ikon %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Kunne ikke læse ikon %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Ukendt ikontype: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "linie %d: Ugyldigt tilvalg %s: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "linie %d: Forkert udformet mærke: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "linie %d: Tomt mærke: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "linie %d: Ugyldigt tegn '-' i %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot kan ikke være \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "linie %d: Præfikser kan ikke ende på \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "linie %d: Docdir skal starte med '/': %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "linie %d: Epoch/Serial-felter skal være et nummer: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "linie %d: Ugyldig %s: angivere: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "linie %d: Ugyldigt 'BuildArchitecture'-format: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Intern fejl: Falsk mærke %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Ugyldig pakkeangivelse: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "Pakken eksisterer allerede: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "linie %d: Ukendt mærke: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec-fil kan ikke bruge BuildRoot\n"
 
@@ -1218,7 +1218,7 @@ msgstr "forkert udf
 msgid "No compatible architectures found for build\n"
 msgstr "Ingen arkitekturer, der kan opbygges\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Pakke har ingen %%description: %s\n"
@@ -1487,45 +1487,45 @@ msgstr "ingen pakker\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1724,7 +1724,7 @@ msgid ""
 msgstr ""
 "kun indpakninger med hovedversion <= 4 understøttes af denne udgave af RPM\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead mislykkedes\n"
@@ -1734,12 +1734,12 @@ msgstr "%s: readLead mislykkedes\n"
 msgid "%s: bad magic\n"
 msgstr "Ugyldigt magisk tal"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature mislykkedes\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen tilgængelig signatur\n"
@@ -1749,7 +1749,7 @@ msgstr "%s: Ingen tilg
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
@@ -2464,12 +2464,12 @@ msgstr "post %d kunne ikke l
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db tilfører)\n"
@@ -2498,47 +2498,47 @@ msgstr "%s: Kan ikke underskrive v1.0 RPM\n"
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kan ikke genunderskrive v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen tilgængelig signatur (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "IKKE O.K."
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (MANGLENDE NØGLER:    "
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (IKKE-BETROEDE NØGLER:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "O.K."
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2547,13 +2547,13 @@ msgstr ""
 "\"B\"-afhængighed kræver en epoke (antager samme som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
index 72594b5..2e035e1 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -675,100 +675,100 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1562
+#: build/files.c:1574
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, 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:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -1044,129 +1044,129 @@ msgstr "
 msgid "line %d: Second %%files list\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
 # , c-format
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "Hole %s heraus\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
 # , c-format
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "(unbekannter Typ)"
 
 # , c-format
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
 # , c-format
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "fehlende Architektur für %s bei %s:%d"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Fataler Fehler: "
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "      Optionen der Paketauswahl:"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1335,7 +1335,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
@@ -1623,45 +1623,45 @@ msgstr "Anfrage an alle Pakete"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
 # FIXME
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1870,7 +1870,7 @@ msgid ""
 msgstr ""
 "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
@@ -1880,12 +1880,12 @@ msgstr "%s: 
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Keine Signatur verfügbar\n"
@@ -1895,7 +1895,7 @@ msgstr "%s: Keine Signatur verf
 msgid "%s: headerRead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
@@ -2646,12 +2646,12 @@ msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
 # , c-format
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
@@ -2681,61 +2681,61 @@ msgstr "%s: Kann v1.0-RPM nicht signieren\n"
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (FEHLENDE SCHLüSSEL)"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
index 6c95abf..65727bd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index cbadcba..c7eb0f5 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-0500\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -606,93 +606,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp epäonnistui"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
@@ -950,123 +950,123 @@ msgstr "en voinut avata %s: %s"
 msgid "line %d: Second %%files list\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "Haen: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "(tuntematon tyyppi)"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "vakava virhe: "
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "      Paketin määrittelyparametrit:"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1221,7 +1221,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
@@ -1505,44 +1505,44 @@ msgstr "kysele kaikki paketit"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1744,7 +1744,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
@@ -1754,12 +1754,12 @@ msgstr "%s: readLead  ep
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
@@ -1769,7 +1769,7 @@ msgstr "%s: Ei allekirjoitusta saatavilla\n"
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
@@ -2500,12 +2500,12 @@ msgstr "tietuetta %d ei voitu lukea\n"
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
@@ -2535,61 +2535,61 @@ msgstr "%s: En voi allekirjoittaa v1.0 RPM:
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr "(PUUTTUVAT AVAIMET)"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
index 6538534..9f4fcff 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -641,93 +641,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "La construction a chou.\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -985,123 +985,123 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "      Options de spcification de package:"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1256,7 +1256,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr "%s ne peut tre construit sur cette architecture\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -1542,44 +1542,44 @@ msgstr "aucun package n'a t spcifi pour l'installation"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1777,7 +1777,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1787,12 +1787,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1802,7 +1802,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2551,12 +2551,12 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2585,60 +2585,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
index 09d5bba..43ce4e3 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -586,93 +586,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -926,123 +926,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1454,44 +1454,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1687,7 +1687,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1697,12 +1697,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1712,7 +1712,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2393,11 +2393,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2425,60 +2425,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 8df41d7..1705d8e 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -586,93 +586,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "Skráin er tvítekin: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Skráin fannst ekki með 'glob': %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Gat ekki búið til undirferli (fork) %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s brást\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "gat ekki ritað öll gögn í %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "gat ekki fundið %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -930,123 +930,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Get ekki opnað táknmynd %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Gat ekki lesið táknmynd %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Óþekkt tegund táknmyndar: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "lína %d: Tag tekur einungis eitt tákn: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "lína %d: Skemmt tag: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "lína %d: Tómt tag: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "lína %d: Ólöglegt tákn '-' í %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "lína %d: Epoch/Serial svæðið verður að innihalda tölu: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1200,7 +1200,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1460,44 +1460,44 @@ msgstr "uppf
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1693,7 +1693,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1703,12 +1703,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1718,7 +1718,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2404,11 +2404,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2436,60 +2436,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 2445589..2d6c8e1 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -632,93 +632,93 @@ msgstr "¾
 msgid "File listed twice: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s ¼ºÇÔ"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
@@ -977,123 +977,123 @@ msgstr "%d 
 msgid "line %d: Second %%files list\n"
 msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, fuzzy, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS ¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó %s:%s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, fuzzy, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó: %s"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Þ¥Ã¥È: %s"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 #, fuzzy
 msgid "Spec file can't use BuildRoot\n"
 msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ­¤Þ¤»¤ó"
@@ -1251,7 +1251,7 @@ msgstr "
 msgid "No compatible architectures found for build\n"
 msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
@@ -1537,44 +1537,44 @@ msgstr "%d 
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1777,7 +1777,7 @@ msgid ""
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
@@ -1787,12 +1787,12 @@ msgstr "%s: readLead 
 msgid "%s: bad magic\n"
 msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
@@ -1802,7 +1802,7 @@ msgstr "%s: ͭ
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
@@ -2559,12 +2559,12 @@ msgstr "
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
@@ -2594,48 +2594,48 @@ msgstr "%s: v1.0 
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (¥­¡¼¤Îʶ¼º) "
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2644,13 +2644,13 @@ msgstr ""
 "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
index 69700f1..ac1417f 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -597,93 +597,93 @@ msgstr "Ư
 msgid "File listed twice: %s\n"
 msgstr "ÆÄÀÏ ¸ñ·ÏÀÌ Áߺ¹µÊ: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "ÆÄÀÏÀÌ prefix (%s) (¿Í)°ú ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "ÆÄÀÏ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "ÁÙ(line): %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s (À»)¸¦ fork ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s ¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s (À»)¸¦ Ã£´Â Áß: (%s »ç¿ë)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s (À»)¸¦ Ã£´Âµ¥ ½ÇÆÐÇÔ:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
@@ -937,123 +937,123 @@ msgstr "%d 
 msgid "line %d: Second %%files list\n"
 msgstr "%d ¹ø° ÁÙ: µÎ¹ø° %%files ¸ñ·Ï\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "¾ÆÅ°ÅØÃÄ°¡ Á¦¿ÜµÊ: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "¾ÆÅ°ÅØÃÄ°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "¿î¿µÃ¼Á¦°¡ Á¦¿ÜµÊ: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "¿î¿µÃ¼Á¦°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "%s Ç׸ñ(field)Àº ¹Ýµå½Ã ÆÐÅ°Áö¿¡ Æ÷ÇԵǾî¾ßÇÔ: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "ÆÐÅ°Áö¿¡ %s Ç׸ñ(entry)ÀÌ Áߺ¹µÇ¾î ÀÖÀ½: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "%s ¾ÆÀÌÄÜÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "%s ¾ÆÀÌÄÜÀ» ÀÐÀ» ¼ö ¾øÀ½: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "¾Ë ¼ö ¾ø´Â ¾ÆÀÌÄÜ À¯Çü: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "%d ¹ø° ÁÙ: Å±׿¡ ÇϳªÀÇ ÅäÅ«¸¸ ÀÖ½À´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "%d ¹ø° ÁÙ: ¿Ã¹Ù¸£Áö ¸øÇѠű×ÀÔ´Ï´Ù: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "%d ¹ø° ÁÙ: Å±װ¡ ºñ¾îÀÖ½À´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "%d ¹ø° ÁÙ: %s ¿¡ ºÎÀûÇÕÇÑ ¹®ÀÚ '-' °¡ ÀÖÀ½: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot¸¦ \"/\" ·Î ÁöÁ¤ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "%d ¹ø° ÁÙ: Prefixes´Â Àý´ë \"/\" ·Î ³¡³ª¼­´Â ¾ÈµË´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "%d ¹ø° ÁÙ: DocdirÀº ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "%d ¹ø° ÁÙ: Epoch/Serial Ç׸ñ(field)Àº ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ %s: ¼ö½ÄÀÚ(qualifier): %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ BuildArchitecture Çü½ÄÀÔ´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "³»ºÎ ¿À·ù ¹ß»ý: º¸°Å½º(Bogus) Å±נ%d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "À߸øµÈ ÆÐÅ°Áö ÁöÁ¤: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "ÆÐÅ°Áö°¡ À̹̠Á¸ÀçÇÔ: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "%d ¹ø° ÁÙ: ¾Ë ¼ö ¾ø´Â Å±×ÀÔ´Ï´Ù: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec ÆÄÀÏÀº BuildRoot¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
@@ -1209,7 +1209,7 @@ msgstr "%%include 
 msgid "No compatible architectures found for build\n"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ È£È¯Çϴ ¾ÆÅ°ÅØÃĸ¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "ÆÐÅ°Áö¿¡ %%descriptionÀÌ ¾øÀ½: %s\n"
@@ -1477,45 +1477,45 @@ msgstr "
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÀÇÁ¸(Depends) Ä³½Ã¿¡ Ãß°¡µÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "¿¹"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n"
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1715,7 +1715,7 @@ msgid ""
 msgstr ""
 "ÀÌ RPM ¹öÀü¿¡¼­´Â ÁÖ¿ä ¹øÈ£(major number) <= 4 ÀÇ ÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
@@ -1725,12 +1725,12 @@ msgstr "%s: readLead
 msgid "%s: bad magic\n"
 msgstr "À߸øµÈ magic ÀÔ´Ï´Ù"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
@@ -1740,7 +1740,7 @@ msgstr "%s: 
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
@@ -2449,12 +2449,12 @@ msgstr "
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö´Â ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "À߸øµÈ db ÆÄÀÏ    %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
@@ -2483,47 +2483,47 @@ msgstr "%s: v1.0 RPM
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: v2.0 RPMÀº Àç-¼­¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "¿Ã¹Ù¸£Áö ¾ÊÀ½"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (Å°¸¦ Ã£À» ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (Å°¸¦ ½Å·ÚÇÒ ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "È®ÀÎ"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2532,13 +2532,13 @@ msgstr ""
 "\"B\" ÀÇÁ¸¼ºÀº Áß¿ä½Ã µÇ´Â °Í(epoch)À» ÇÊ¿ä·Î ÇÕ´Ï´Ù (\"A\" ·Î °¡Á¤ÇÕ´Ï´Ù)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
index 11356b8..096a334 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -596,93 +596,93 @@ msgstr "Kan ikke blande spesiell %%doc med andre skjema: %s\n"
 msgid "File listed twice: %s\n"
 msgstr "Fil listet to ganger: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s feilet\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Klarte ikke å finne %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -940,123 +940,123 @@ msgstr "linje %d: Feil under lesing av %%filer: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "%s-felt må være tilstede i pakken: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Kunne ikke åpne ikon %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Kan ikke lese ikon %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Ukjent ikontype: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "linje %d: Tagg tar kun et enkelt tegn: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "linje %d: Feilutformet tagg: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "linje %d: Tom tagg: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "linje %d: Ugyldig tegn '-' i %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot kan ikke være \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "linje %d: Prefiks må ikke slutte på \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "linje %d: Docdir må begynne med '/': %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "linje %d: Epoch/serienummer må være et tall: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "linje %d: Ugyldig %s: kvalifikatorer: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "linje %d: Ugyldig BuildArchitecture format: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Intern feil: Ugyldig tag %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Ugyldig pakkespesifikasjon: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "Pakke eksisterer allerede: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "linje %d: Ukjent tagg: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec-fil kan ikke bruke BuildRoot\n"
 
@@ -1212,7 +1212,7 @@ msgstr "ugyldig %%include utsagn\n"
 msgid "No compatible architectures found for build\n"
 msgstr "Ingen kompatible arkitekturer funnet for bygging\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Pakken har ingen %%description: %s\n"
@@ -1474,44 +1474,44 @@ msgstr "ingen pakker\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "NEI"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1707,7 +1707,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead feilet\n"
@@ -1717,12 +1717,12 @@ msgstr "%s: readLead feilet\n"
 msgid "%s: bad magic\n"
 msgstr "Ugyldig magi"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature feilet\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tilgjengelig\n"
@@ -1732,7 +1732,7 @@ msgstr "%s: Ingen signatur tilgjengelig\n"
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
@@ -2426,11 +2426,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2458,60 +2458,60 @@ msgstr "%s: kan ikke signere v1.0 RPM\n"
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kan ikke signere v2.0 RPM på nytt\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead feilet: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature feilet: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "IKKE OK"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "OK"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
index 74dc701..71b5dbd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -622,93 +622,93 @@ msgstr "Nie mo
 msgid "File listed twice: %s\n"
 msgstr "Plik podany dwukrotnie: %s"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, 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:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "linia: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s nie powiod³o siê"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, 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:2453
+#: build/files.c:2465
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
@@ -967,123 +967,123 @@ msgstr "linia %d: B
 msgid "line %d: Second %%files list\n"
 msgstr "linia %d: Druga lista %%files"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, fuzzy, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Architektura nie jest wspierana: %s"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Architektura nie jest wspierana: %s"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "pole %s musi byæ obecne w pakiecie: %s"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Podwójne wpisy %s w pakiecie: %s"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Nieznany typ ikony: %s"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "linia %d: B³edna opcja %s: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "linia %d: Niepoprawna forma etykiety: %s"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "linia %d: Pusta etykieta: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "linia %d: Nielegalny znak '-' w %s: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, fuzzy, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "B³êdna specyfikacja pakietu: $s"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "Pakiet ju¿ istnieje: %s"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "linia %d: Nieznana etykieta: %s"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 #, fuzzy
 msgid "Spec file can't use BuildRoot\n"
 msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot"
@@ -1241,7 +1241,7 @@ msgstr "b
 msgid "No compatible architectures found for build\n"
 msgstr "Nie mo¿na budowaæ na takie architektury"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Pakiet nie ma %%description: %s"
@@ -1519,45 +1519,45 @@ msgstr "znaleziono %d pakiet
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1760,7 +1760,7 @@ msgid ""
 msgstr ""
 "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
@@ -1770,12 +1770,12 @@ msgstr "%s: readLead nie powiod
 msgid "%s: bad magic\n"
 msgstr "B³êdny magic"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Sygnatura nie jest dostêpna\n"
@@ -1785,7 +1785,7 @@ msgstr "%s: Sygnatura nie jest dost
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
@@ -2516,12 +2516,12 @@ msgstr "nie mo
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "Udostêpniane zasoby:"
@@ -2551,60 +2551,60 @@ msgstr "%s: Nie mo
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "NIE DOBRZE"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (BRAK KLUCZY:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr "(NIEWIARYGODNE KLUCZE:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "OK"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, fuzzy, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "       rpm {--version}"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
index 4747658..769399b 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -592,93 +592,93 @@ msgstr "N
 msgid "File listed twice: %s\n"
 msgstr "Ficheiro listado duas vezes: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, 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:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Ficheiro não encontrado: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Dono/grupo inválido: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Ficheiro: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "O ficheiro precisa de começar por \"/\": %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linha %d: Nome do ficheiro não permitido: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Ficheiro não encontrado pelo glob: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, 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:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "linha: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Não consegui executar o %s: %S\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Não consegui executar à parte o %s: &s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "O %s falhou\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, 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:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "A procurar o %s: (usando o %s)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Não consegui encontrar o %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "A processar os ficheiros: %s-%s-%s\n"
@@ -938,123 +938,123 @@ msgstr "linha %d: Erro ao analisar o %%files: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr "linha %d: Segunda lista de %%files\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "A arquitectura está excluída: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "A arquitectura não está incluída: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "O SO está excluído: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "O SO não está incluído: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "O campo %s tem de estar presente no pacote: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Entradas %s duplicadas no pacote: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Não consegui abrir o ícone %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Não consegui ler o ícone %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Tipo de ícone desconhecido: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "linha %d: Opção inválida %s: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "Linha %d: Opção inválida: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "linha %d: Opção em branco: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "linha %d: Carácter '-' ilegal no %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "O BuildRoot não pode ser o \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "linha %d: Os prefixos não podem acabar em \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "linha %d: A docdir tem de começar por '/': %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "linha %d: O campo Epoch/Serial tem de ser um número: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "linha %d: Qualificadores %s: inválidos: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "linha %d: Formato da BuildArchitecture inválido: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Erro interno: Opção esquisita %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Descrição do pacote inválida: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "O pacote já existe: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "linha %d: Opção desconhecida: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "O ficheiro spec não pode usar a BuildRoot\n"
 
@@ -1209,7 +1209,7 @@ msgstr "instru
 msgid "No compatible architectures found for build\n"
 msgstr "Não foram indicadas arquitecturas para as quais criar\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "O pacote não tem uma %%description: %s\n"
@@ -1474,45 +1474,45 @@ msgstr "nenhum pacote\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) adicionado à cache de dependências.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 #, fuzzy
 msgid "NO "
 msgstr "NÃO-OK"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "=========== a guardar as relações do tsort\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== só os sucessores (ordem de apresentação)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "CICLO:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== a prosseguir o tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1710,7 +1710,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "só os pacotes com versão <= 4 são suportados por esta versão do RPM\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ":%s: o readLead falhou\n"
@@ -1720,12 +1720,12 @@ msgstr ":%s: o readLead falhou\n"
 msgid "%s: bad magic\n"
 msgstr "Código de integridade inválido"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: o rpmReadSignature falhou\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Nenhuma assinatura disponível\n"
@@ -1735,7 +1735,7 @@ msgstr "%s: Nenhuma assinatura dispon
 msgid "%s: headerRead failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
@@ -2440,12 +2440,12 @@ msgstr "o registo %d n
 msgid "package %s is not installed\n"
 msgstr "o pacote %s não está instalado\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s SI (oferecidos pelo db)\n"
@@ -2474,47 +2474,47 @@ msgstr "%s: N
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: não consigo assinar de novo o RPM v2.0\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: o writeLead falhou: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: o rpmWriteSignature falhou: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "NÃO-OK"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (FALTAM AS CHAVES:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (CHAVES SUSPEITAS:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "OK"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2523,13 +2523,13 @@ msgstr ""
 "A dependência \"B\" precisa duma época (assumindo a mesma que \"A\")\n"
 "\t %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s     A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n"
index a5d5325..177fd9b 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-0500\n"
 
 #: build.c:36
 #, fuzzy
@@ -654,102 +654,102 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1483
+#: build/files.c:1495
 #, 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:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1766
+#: build/files.c:1778
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 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:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, 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:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -1038,12 +1038,12 @@ msgstr "No consegui abrir: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
@@ -1056,125 +1056,125 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
 # , c-format
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
 # , c-format
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "      Opces para especificao de pacotes:"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1346,7 +1346,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr "%s no pode ser construido nesta arquitetura\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "no foi passado pacote para desinstalao"
@@ -1630,45 +1630,45 @@ msgstr "pesquise todos os pacotes"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1874,7 +1874,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1884,12 +1884,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1901,7 +1901,7 @@ msgid "%s: headerRead failed\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2671,12 +2671,12 @@ msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2707,61 +2707,61 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
index 63b5924..87e3fac 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -586,93 +586,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -926,123 +926,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1196,7 +1196,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1454,44 +1454,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1687,7 +1687,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1697,12 +1697,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1712,7 +1712,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2393,11 +2393,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2425,60 +2425,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index cd28a17..2fe60b1 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-11-05 08:53-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,11 +1459,11 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:317 lib/rpmds.c:472
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:317 lib/rpmds.c:472
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
@@ -1473,30 +1473,30 @@ msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1343
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1417
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1492
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1553
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1588
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1593
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:718
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:821
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:442
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:471
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:497
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 2db3df3..74fa39b 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -609,93 +609,93 @@ msgstr "
 msgid "File listed twice: %s\n"
 msgstr "æÁÊÌ ÕËÁÚÁΠÄ×ÁÖÄÙ: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -949,123 +949,123 @@ msgstr "
 msgid "line %d: Second %%files list\n"
 msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "ðÏ×ÔÏÒÑÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÐÉËÔÏÇÒÁÍÍÙ: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "ÓÔÒÏËÁ %d: ñÒÌÙË ÔÒÅÂÕÅÔ ÔÏÌØËÏ ÏÄÉΠÁÒÇÕÍÅÎÔ: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÔÜÇ: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó '/': %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: ÏÐÒÅÄÅÌÑÅÔ: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot\n"
 
@@ -1221,7 +1221,7 @@ msgstr "
 msgid "No compatible architectures found for build\n"
 msgstr "îÅ ÎÁÊÄÅÎÙ ÓÏ×ÍÅÓÔÉÍÙÅ ÁÒÈÉÔÅËÔÕÒÙ ÄÌÑ ÓÂÏÒËÉ.\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n"
@@ -1495,46 +1495,46 @@ msgstr "
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "îåT"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "äá"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1733,7 +1733,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
@@ -1743,12 +1743,12 @@ msgstr "%s: 
 msgid "%s: bad magic\n"
 msgstr "îÅ×ÅÒÎÙÊ magic"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
@@ -1758,7 +1758,7 @@ msgstr "%s: 
 msgid "%s: headerRead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
@@ -2456,12 +2456,12 @@ msgstr "
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s YES (db provides)\n"
@@ -2490,47 +2490,47 @@ msgstr "%s: 
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ writeLead: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "îå Oë"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (ïôóõôóô÷õàô ëìàþé:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (îåô äï÷åòéñ ë ëìàþáí:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "Oë"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2539,13 +2539,13 @@ msgstr ""
 "ÄÌÑ ÚÁ×ÉÓÉÍÏÓÔÉ \"B\" ÎÕÖÎÏ ÕËÁÚÁÔØ \"epoch\" (ÔÁË ÖÅ ËÁË ÄÌÑ \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
index d940038..667db61 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -620,93 +620,93 @@ msgstr "Nie je mo
 msgid "File listed twice: %s\n"
 msgstr "Súbor zadaný dvakrát: %s."
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, 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:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, 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:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s zlyhalo"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, 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:2453
+#: build/files.c:2465
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
@@ -965,123 +965,123 @@ msgstr "riadok %d: Chyba pri anal
 msgid "line %d: Second %%files list\n"
 msgstr "riadok %d: Druhý %%files zoznam"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, fuzzy, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Architektúra je vynechaná: %s"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Architektúra nie je obsiahnutá: %s"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS nie je obsiahnutý: %s"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "V balíku musí existova» pole %s: %s"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Duplicitné záznamy %s v balíku: %s"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Neznámy typ ikony: %s"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "riadok %d: Chybná voµba %s: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "riadok %d: Znetvorený popis: %s"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "riadok %d: Prázdny popis: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, fuzzy, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "riadok %d: Docdir musí zaèína» '/': %s"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "riadok %d: Chybný formát BuildArchitecture: %s"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Interná chyba: Èudný popis %d "
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Chybná ¹pecifikácia balíka: %s"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "Balík u¾ existuje: %s"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "riadok %d: Neznámy popis: %s"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 #, fuzzy
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec súbor nemô¾e pou¾i» BuildRoot"
@@ -1238,7 +1238,7 @@ msgstr "znetvoren
 msgid "No compatible architectures found for build\n"
 msgstr "®iadne zostaviteµné architektúry"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Balík neobsahuje %%description: %s"
@@ -1518,45 +1518,45 @@ msgstr "n
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstraòuje sa index skupín\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1757,7 +1757,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead zlyhalo\n"
@@ -1767,12 +1767,12 @@ msgstr "%s: readLead zlyhalo\n"
 msgid "%s: bad magic\n"
 msgstr "Chybné magické èíslo"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis nie je k dispozícii\n"
@@ -1782,7 +1782,7 @@ msgstr "%s: Podpis nie je k dispoz
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
@@ -2513,12 +2513,12 @@ msgstr "z
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "Poskytuje:"
@@ -2548,60 +2548,60 @@ msgstr "%s: Nie je mo
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (CHÝBAJÚCE K¥ÚÈE):"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "V PORIADKU"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, fuzzy, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "          rpm {--version}"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
index 478557e..7a64af4 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.192 2001/11/05 03:44:12 jbj Exp $
+# $Id: sl.po,v 1.193 2001/11/06 22:46:53 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -618,93 +618,93 @@ msgstr "Posebnih %%doc ni mo
 msgid "File listed twice: %s\n"
 msgstr "Datoteka je navedena dvakrat: %s"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, fuzzy, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Datoteka se ne ujema s predpono (%s): %s"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, 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:1766
+#: build/files.c:1778
 #, 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:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Vejitev %s ni mo¾na: %s"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s neuspe¹en"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "pisanje podatkov v %s je bilo neuspe¹no"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Iskanje  %s: (z uporabo %s)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Neuspe¹no iskanje %s:"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -963,123 +963,123 @@ msgstr "vrstica %d: Napaka pri raz
 msgid "line %d: Second %%files list\n"
 msgstr "vrstica %d: Drugi seznam %%Files"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, fuzzy, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Arhitektura je izkljuèena: %s"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Arhitektura ni vkljuèena: %s"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS ni vkljuèen: %s"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "polje %s mora v paketu obstajati: %s"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Podvojeni vnosi %s v paketu: %s"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Ikone %s ni mo¾no odpreti: %s"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Neznan tip ikone: %s"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "vrstica %d: Napaèna izbira %s: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "vrstica %d: Deformirana znaèka: %s"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "vrstica %d: Prazna znaèka: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, fuzzy, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot ne more biti \"/\": %s"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "vrstica %d: Predpone se ne smejo konèati z /: %s"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "vrstica %d: polje Epoch/Serial mora biti ¹tevilo: %s"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "vrstica %d: Napaèna oblika BuildArchitecture: %s"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Notranja napaka: Neprava znaèka %d"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Nepravilno doloèilo paketa: %s"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "Paket ¾e obstaja: %s"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "vrstica %d: Neznana znaèka: %s"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 #, fuzzy
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Datoteka spec ne more uporabiti BuildRoot"
@@ -1238,7 +1238,7 @@ msgstr "Deformiran stavek %%include"
 msgid "No compatible architectures found for build\n"
 msgstr "Arhitektura za izgradnjo ni prisotna"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "V paketu manjka %%description: %s"
@@ -1519,45 +1519,45 @@ msgstr "ni paketov\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1758,7 +1758,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <=4"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
@@ -1768,12 +1768,12 @@ msgstr "%s: readLead je bil neuspe
 msgid "%s: bad magic\n"
 msgstr "Napaèno magièno ¹tevilo"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis ni na voljo\n"
@@ -1783,7 +1783,7 @@ msgstr "%s: Podpis ni na voljo\n"
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
@@ -2512,12 +2512,12 @@ msgstr "zapisa %d ni mo
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
@@ -2546,47 +2546,47 @@ msgstr "%s: Podpis RPM v1.0 ni mo
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead je bil neuspe¹en: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "NI DOBRO"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (MANJKAJOÈI KLJUÈI:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEPREVERJENI KLJUÈI:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "V REDU"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2595,13 +2595,13 @@ msgstr ""
 "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
index 67fea58..f0dbefa 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-0500\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -604,93 +604,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, fuzzy, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, 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:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "PGP omanuo"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -948,123 +948,123 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "line %d: Second %%files list\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, fuzzy, c-format
 msgid "OS is excluded: %s\n"
 msgstr "Pribavljam %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, fuzzy, c-format
 msgid "OS is not included: %s\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, fuzzy, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, fuzzy, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, fuzzy, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, fuzzy, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, fuzzy, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "(nepoznat tip)"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, fuzzy, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, fuzzy, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, fuzzy, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, fuzzy, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, fuzzy, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "nedostaje arhitektura za %s na %s:%d"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "fatalna gre¹ka: "
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, fuzzy, c-format
 msgid "Bad package specification: %s\n"
 msgstr "      Opcije odrednice paketa:"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, fuzzy, c-format
 msgid "Package already exists: %s\n"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1219,7 +1219,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, fuzzy, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "paket %s nije naveden u %s"
@@ -1503,44 +1503,44 @@ msgstr "upit nad svim paketima"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1742,7 +1742,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
@@ -1752,12 +1752,12 @@ msgstr "%s: Neuspeo 'readLead'\n"
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
@@ -1767,7 +1767,7 @@ msgstr "%s: Potpis nije na raspolaganju\n"
 msgid "%s: headerRead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
@@ -2499,12 +2499,12 @@ msgstr "ne mogu da pro
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
@@ -2534,61 +2534,61 @@ msgstr "%s: Ne mogu da potpi
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
index a6350f3..1367781 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -600,93 +600,93 @@ msgstr "Kan inte blanda special %%doc med andra former: %s\n"
 msgid "File listed twice: %s\n"
 msgstr "Filen uppräknad två gånger: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Filen matchar inte prefixet (%s): %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Hittade ingen fil vid matchningen: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunde inte grena %s: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s misslyckades\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunde inte skriva all data till %s\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Letar upp %s: (använder %s)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Misslyckades med att hitta %s:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -940,123 +940,123 @@ msgstr "rad %d: Fel i tolkning av %%files: %s\n"
 msgid "line %d: Second %%files list\n"
 msgstr "rad %d: En andra %%files-lista\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Arkitekturen är utesluten: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Arkitekturen är inte medtagen: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS är uteslutet: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS är inte medtaget: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "%s-fält måste finnas med i paketet: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Dubbla %s-poster i paketet: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "Kan inte öppna ikon %s: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "Kan inte läsa ikon %s: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "Okänd ikontyp: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "rad %d: Taggen tar endast ett värde: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "rad %d: Felaktig tagg: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "rad %d: Tom tagg: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot kan inte vara \"/\": %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "rad %d: Prefix får inte sluta med \"/\": %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "rad %d: Docdir måste börja med \"/\": %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "rad %d: Epoch/Serial-fält måste vara numeriskt: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "rad %d: Felaktigt %s: bestämningar: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "rad %d: Felaktigt BuildArchitecture-format: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Internt fel: felaktig tagg %d\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Felaktig paketangivelse %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "Paketet existerar redan: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "rad %d: Okänd tagg: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Specfil kan inte använda BuildRoot\n"
 
@@ -1211,7 +1211,7 @@ msgstr "felformaterad %%include-sats\n"
 msgid "No compatible architectures found for build\n"
 msgstr "Hittade inga kompatibla arkitekturer att bygga\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Paketet har ingen %%description: %s\n"
@@ -1480,45 +1480,45 @@ msgstr "inga paket\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead misslyckades\n"
@@ -1727,12 +1727,12 @@ msgstr "%s: readLead misslyckades\n"
 msgid "%s: bad magic\n"
 msgstr "Felaktigt magiskt tal"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature misslyckades\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tillgänglig\n"
@@ -1742,7 +1742,7 @@ msgstr "%s: Ingen signatur tillg
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
@@ -2440,12 +2440,12 @@ msgstr "post %u kunde inte l
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
@@ -2474,47 +2474,47 @@ msgstr "%s: Kan inte signera v1.0 RPM\n"
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kan inte signera om v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "EJ OK"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (SAKNADE NYCKLAR:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (EJ BETRODDA NYCKLAR:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "OK"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2523,13 +2523,13 @@ msgstr ""
 "\"B\"-beroendet behöver en epok (antar samma som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
index 93a2d93..37ede1e 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -607,93 +607,93 @@ msgstr "
 msgid "File listed twice: %s\n"
 msgstr "Dosya iki kere gösterildi: %s\n"
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr "Dosya %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, 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:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ayrýlamadý: %s\n"
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr "%s baþarýsýz\n"
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "tüm veri %s içine yazýlamadý\n"
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s aranýyor: (%s kullanarak)...\n"
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s bulunamadý:\n"
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@@ -951,123 +951,123 @@ msgstr "sat
 msgid "line %d: Second %%files list\n"
 msgstr "satýr %d: Ýkinci %%files listesi\n"
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr "Mimari dýþlandý: %s\n"
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr "Mimari içerilmedi: %s\n"
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr "OS dýþlandý: %s\n"
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr "OS içerilmedi: %s\n"
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr "Pakette %s alan mevcut olmalý: %s\n"
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr "Pakette %s girdi tekrarlanmýþ: %s\n"
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr "%s kýsayol simgesi açýlamadý: %s\n"
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr "%s kýsayol simgesi okunamadý: %s\n"
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr "bilinmeyen kýsayol simgesi türü: %s\n"
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr "satýr %d: Etiket sadece tek dizgecik alýr: %s\n"
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr "satýr %d: Etiket bozuk: %s\n"
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr "satýr %d: Etiket boþ: %s\n"
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr "satýr %d:  %s içinde '-' karakteri kuraldýþý: %s\n"
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr "BuildRoot \"/\" olamaz: %s\n"
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr "satýr %d: Önekler \"/\" ile bitemez: %s\n"
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr "satýr %d: Docdir '/' ile baþlamalý: %s\n"
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr "satýr %d: Epoch/Serial alaný bir sayý olmalý: %s\n"
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr "satýr %d: %s hatalý: niteleyiciler: %s\n"
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr "satýr %d: BuildArchitecture biçimi hatalý: %s\n"
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr "Ýçsel hata: %d etiketi sahte\n"
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr "Paket özellikleri hatalý: %s\n"
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr "Paket zaten var: %s\n"
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr "satýr %d: Bilinmeyen etiket: %s\n"
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr "Spec dosyasý BuildRoot kullanamaz\n"
 
@@ -1223,7 +1223,7 @@ msgstr "%%include deyimi bozuk\n"
 msgid "No compatible architectures found for build\n"
 msgstr "Kurgulamak için uyumlu mimari yok\n"
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr "Paket %%description içermiyor: %s\n"
@@ -1500,45 +1500,45 @@ msgstr "paket yok\n"
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr "EVET"
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1739,7 +1739,7 @@ msgstr ""
 "RPM'nin bu sürümünde sadece ilk sürüm rakamý <= 4 olan paketler "
 "destekleniyor\n"
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
@@ -1749,12 +1749,12 @@ msgstr "%s: readLead ba
 msgid "%s: bad magic\n"
 msgstr "Magic hatalý"
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature baþarýsýz\n"
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ýmza bulundurmuyor\n"
@@ -1764,7 +1764,7 @@ msgstr "%s: 
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
@@ -2463,12 +2463,12 @@ msgstr "%u. kay
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 #, fuzzy
 msgid "(added files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
@@ -2497,47 +2497,47 @@ msgstr "%s: v1.0 RPM (eski s
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: v2.0 RPM (eski sürüm) yeniden imzalanamaz\n"
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr "TAMAM DEÐÝL"
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr " (EKSÝK ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr " (GÜVENCESÝZ ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr "Tamam"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, fuzzy, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2546,13 +2546,13 @@ msgstr ""
 "\"B\" baðýmlýlýðý bir dönemsellik gerektirir (tabii ki \"A\" da)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, fuzzy, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 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-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 6c95abf..65727bd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-04 22:42-0500\n"
+"POT-Creation-Date: 2001-11-06 17:01-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"
@@ -591,93 +591,93 @@ msgstr ""
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1277
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1483
+#: build/files.c:1495
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1507
+#: build/files.c:1519
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1550 build/files.c:2162 build/parsePrep.c:50
+#: build/files.c:1562 build/files.c:2174 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1562
+#: build/files.c:1574
 #, c-format
 msgid "File %4d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1666
+#: build/files.c:1678
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1689
+#: build/files.c:1701
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1704
+#: build/files.c:1716
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1766
+#: build/files.c:1778
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1777 build/pack.c:146
+#: build/files.c:1789 build/pack.c:146
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2150
+#: build/files.c:2162
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2224
+#: build/files.c:2236
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2229
+#: build/files.c:2241
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2313
+#: build/files.c:2325
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2317
+#: build/files.c:2329
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2453
+#: build/files.c:2465
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2479 build/files.c:2493
+#: build/files.c:2491 build/files.c:2505
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2614
+#: build/files.c:2626
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -931,123 +931,123 @@ msgstr ""
 msgid "line %d: Second %%files list\n"
 msgstr ""
 
-#: build/parsePreamble.c:233
+#: build/parsePreamble.c:234
 #, c-format
 msgid "Architecture is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:238
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Architecture is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:243
+#: build/parsePreamble.c:244
 #, c-format
 msgid "OS is excluded: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:248
+#: build/parsePreamble.c:249
 #, c-format
 msgid "OS is not included: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:270
+#: build/parsePreamble.c:271
 #, c-format
 msgid "%s field must be present in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:298
+#: build/parsePreamble.c:299
 #, c-format
 msgid "Duplicate %s entries in package: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:358
+#: build/parsePreamble.c:359
 #, c-format
 msgid "Unable to open icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:376
+#: build/parsePreamble.c:377
 #, c-format
 msgid "Unable to read icon %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:389
+#: build/parsePreamble.c:390
 #, c-format
 msgid "Unknown icon type: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:433
+#: build/parsePreamble.c:434
 #, c-format
 msgid "line %d: Tag takes single token only: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:473
+#: build/parsePreamble.c:474
 #, c-format
 msgid "line %d: Malformed tag: %s\n"
 msgstr ""
 
 #. Empty field
-#: build/parsePreamble.c:481
+#: build/parsePreamble.c:482
 #, c-format
 msgid "line %d: Empty tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:503 build/parsePreamble.c:510
+#: build/parsePreamble.c:505 build/parsePreamble.c:512
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:571 build/parseSpec.c:408
+#: build/parsePreamble.c:573 build/parseSpec.c:408
 #, c-format
 msgid "BuildRoot can not be \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:584
+#: build/parsePreamble.c:586
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:596
+#: build/parsePreamble.c:598
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:608
+#: build/parsePreamble.c:610
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:648 build/parsePreamble.c:659
+#: build/parsePreamble.c:650 build/parsePreamble.c:661
 #, c-format
 msgid "line %d: Bad %s: qualifiers: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:685
+#: build/parsePreamble.c:687
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:694
+#: build/parsePreamble.c:696
 #, c-format
 msgid "Internal error: Bogus tag %d\n"
 msgstr ""
 
-#: build/parsePreamble.c:849
+#: build/parsePreamble.c:852
 #, c-format
 msgid "Bad package specification: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:855
+#: build/parsePreamble.c:858
 #, c-format
 msgid "Package already exists: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:882
+#: build/parsePreamble.c:885
 #, c-format
 msgid "line %d: Unknown tag: %s\n"
 msgstr ""
 
-#: build/parsePreamble.c:904
+#: build/parsePreamble.c:907
 msgid "Spec file can't use BuildRoot\n"
 msgstr ""
 
@@ -1201,7 +1201,7 @@ msgstr ""
 msgid "No compatible architectures found for build\n"
 msgstr ""
 
-#: build/parseSpec.c:584
+#: build/parseSpec.c:585
 #, c-format
 msgid "Package has no %%description: %s\n"
 msgstr ""
@@ -1459,44 +1459,44 @@ msgstr ""
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:762 lib/rpmds.c:229 lib/rpmds.c:384
+#: lib/depends.c:762 lib/rpmds.c:326 lib/rpmds.c:481
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1114
+#: lib/depends.c:1103
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1366
+#: lib/depends.c:1345
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1440
+#: lib/depends.c:1419
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1515
+#: lib/depends.c:1494
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1576
+#: lib/depends.c:1555
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1611
+#: lib/depends.c:1590
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1616
+#: lib/depends.c:1595
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1692,7 +1692,7 @@ msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:506
+#: lib/package.c:224 lib/rpmchecksig.c:158 lib/rpmchecksig.c:511
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
@@ -1702,12 +1702,12 @@ msgstr ""
 msgid "%s: bad magic\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:522
+#: lib/package.c:254 lib/rpmchecksig.c:176 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:527
+#: lib/package.c:258 lib/rpmchecksig.c:180 lib/rpmchecksig.c:532
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
@@ -1717,7 +1717,7 @@ msgstr ""
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:450
+#: lib/package.c:303 lib/rpmchecksig.c:109 lib/rpmchecksig.c:455
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2398,11 +2398,11 @@ msgstr ""
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:677
+#: lib/rpmal.c:771
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:780
+#: lib/rpmal.c:868
 msgid "(added provide)"
 msgstr ""
 
@@ -2430,60 +2430,60 @@ msgstr ""
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:213
+#: lib/rpmchecksig.c:218
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:219
+#: lib/rpmchecksig.c:224
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:512
+#: lib/rpmchecksig.c:517
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:707
+#: lib/rpmchecksig.c:712
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:708 lib/rpmchecksig.c:722
+#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:710 lib/rpmchecksig.c:724
+#: lib/rpmchecksig.c:715 lib/rpmchecksig.c:729
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:711 lib/rpmchecksig.c:725
+#: lib/rpmchecksig.c:716 lib/rpmchecksig.c:730
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:713 lib/rpmchecksig.c:727
+#: lib/rpmchecksig.c:718 lib/rpmchecksig.c:732
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:721
+#: lib/rpmchecksig.c:726
 msgid "OK"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:354
+#: lib/rpmds.c:451
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:383
+#: lib/rpmds.c:480
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:409
+#: lib/rpmds.c:506
 #, c-format
 msgid "package %s-%s-%s has unsatisfied %s: %s\n"
 msgstr ""
index 3d81630..a36323b 100644 (file)
@@ -457,6 +457,14 @@ static PyObject * rhnUnload(hdrObject * s, PyObject * args) {
 
     h = headerLink(s->h, "rhnUnload h");
 
+    /* Retrofit a RHNPlatform: tag. */
+    if (!headerIsEntry(h, RPMTAG_RHNPLATFORM)) {
+       const char * arch;
+       int_32 at;
+       if (headerGetEntry(h, RPMTAG_ARCH, &at, (void **)&arch, NULL))
+           headerAddEntry(h, RPMTAG_RHNPLATFORM, at, arch, 1);
+    }
+
     /* Legacy headers are forced into immutable region. */
     if (!headerIsEntry(h, RPMTAG_HEADERIMMUTABLE)) {
        Header nh = headerReload(h, RPMTAG_HEADERIMMUTABLE);
@@ -1915,6 +1923,14 @@ static PyObject * rhnLoad(PyObject * self, PyObject * args) {
        return NULL;
     }
 
+    /* Retrofit a RHNPlatform: tag. */
+    if (!headerIsEntry(hdr, RPMTAG_RHNPLATFORM)) {
+       const char * arch;
+       int_32 at;
+       if (headerGetEntry(hdr, RPMTAG_ARCH, &at, (void **)&arch, NULL))
+           headerAddEntry(hdr, RPMTAG_RHNPLATFORM, at, arch, 1);
+    }
+
     h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
     h->h = hdr;
     h->fileList = h->linkList = h->md5list = NULL;
index 7d80e53..db9a589 100644 (file)
@@ -382,6 +382,7 @@ fi
 %lang(fr)      %{__prefix}/*/locale/fr/LC_MESSAGES/rpm.mo
 %lang(is)      %{__prefix}/*/locale/is/LC_MESSAGES/rpm.mo
 %lang(ja)      %{__prefix}/*/locale/ja/LC_MESSAGES/rpm.mo
+%lang(ko)      %{__prefix}/*/locale/ko/LC_MESSAGES/rpm.mo
 %lang(no)      %{__prefix}/*/locale/no/LC_MESSAGES/rpm.mo
 %lang(pl)      %{__prefix}/*/locale/pl/LC_MESSAGES/rpm.mo
 %lang(pt)      %{__prefix}/*/locale/pt/LC_MESSAGES/rpm.mo
@@ -490,6 +491,7 @@ fi
 %lang(gl)      %{__prefix}/*/locale/gl/LC_MESSAGES/popt.mo
 %lang(hu)      %{__prefix}/*/locale/hu/LC_MESSAGES/popt.mo
 %lang(is)      %{__prefix}/*/locale/is/LC_MESSAGES/popt.mo
+%lang(ko)      %{__prefix}/*/locale/ko/LC_MESSAGES/popt.mo
 %lang(no)      %{__prefix}/*/locale/no/LC_MESSAGES/popt.mo
 %lang(pt)      %{__prefix}/*/locale/pt/LC_MESSAGES/popt.mo
 %lang(ro)      %{__prefix}/*/locale/ro/LC_MESSAGES/popt.mo
@@ -557,3 +559,7 @@ fi
 - depends.h: hack around teIterator() et al from include for now.
 - rpmds: move trigger dependencies into a rpmDepSet as well.
 - rpmal: availablePackage is totally opaque, alKey with index replaces.
+- fix: harmless typo in db3 chroot hack.
+- fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken.
+- fix: add Korean message catalogs (#54473).
+- add RPHNPLATFORM and PLATFORM tags.
index 6abe75c..4af5832 100644 (file)
 
 typedef /*@owned@*/ const void * voidptr;
 
-/** */
-struct hashBucket {
+typedef        struct hashBucket_s * hashBucket;
+
+/**
+ */
+struct hashBucket_s {
     voidptr key;                       /*!< hash key */
 /*@owned@*/ voidptr * data;            /*!< pointer to hashed data */
     int dataCount;                     /*!< length of data (0 if unknown) */
-/*@dependent@*/struct hashBucket * next;/*!< pointer to next item in bucket */
+/*@dependent@*/hashBucket next;                /*!< pointer to next item in bucket */
 };
 
-/** */
+/**
+ */
 struct hashTable_s {
     int numBuckets;                    /*!< number of hash buckets */
     int keySize;                       /*!< size of key (0 if unknown) */
     int freeData;      /*!< should data be freed when table is destroyed? */
-    struct hashBucket ** buckets;      /*!< hash bucket array */
+    hashBucket * buckets;              /*!< hash bucket array */
     hashFunctionType fn;               /*!< generate hash value for key */
     hashEqualityType eq;               /*!< compare hash keys for equality */
 };
@@ -35,11 +39,11 @@ struct hashTable_s {
  * @return pointer to hash bucket of key (or NULL)
  */
 static /*@shared@*/ /*@null@*/
-struct hashBucket *findEntry(hashTable ht, const void * key)
+hashBucket findEntry(hashTable ht, const void * key)
        /*@*/
 {
     unsigned int hash;
-    struct hashBucket * b;
+    hashBucket b;
 
     /*@-modunconnomods@*/
     hash = ht->fn(key) % ht->numBuckets;
@@ -76,8 +80,8 @@ unsigned int hashFunctionString(const void * string)
     return ((((unsigned)len) << 16) + (((unsigned)sum) << 8) + xorValue);
 }
 
-hashTable htCreate(int numBuckets, int keySize, int freeData, hashFunctionType fn,
-                  hashEqualityType eq)
+hashTable htCreate(int numBuckets, int keySize, int freeData,
+               hashFunctionType fn, hashEqualityType eq)
 {
     hashTable ht;
 
@@ -86,8 +90,10 @@ hashTable htCreate(int numBuckets, int keySize, int freeData, hashFunctionType f
     ht->buckets = xcalloc(numBuckets, sizeof(*ht->buckets));
     ht->keySize = keySize;
     ht->freeData = freeData;
+    /*@-assignexpose@*/
     ht->fn = fn;
     ht->eq = eq;
+    /*@=assignexpose@*/
 
     return ht;
 }
@@ -95,7 +101,7 @@ hashTable htCreate(int numBuckets, int keySize, int freeData, hashFunctionType f
 void htAddEntry(hashTable ht, const void * key, const void * data)
 {
     unsigned int hash;
-    struct hashBucket * b;
+    hashBucket b;
 
     hash = ht->fn(key) % ht->numBuckets;
     b = ht->buckets[hash];
@@ -126,7 +132,7 @@ void htAddEntry(hashTable ht, const void * key, const void * data)
 
 void htFree(hashTable ht)
 {
-    struct hashBucket * b, * n;
+    hashBucket b, n;
     int i;
 
     for (i = 0; i < ht->numBuckets; i++) {
@@ -154,7 +160,7 @@ void htFree(hashTable ht)
 
 int htHasEntry(hashTable ht, const void * key)
 {
-    struct hashBucket * b;
+    hashBucket b;
 
     if (!(b = findEntry(ht, key))) return 0; else return 1;
 }
@@ -162,7 +168,7 @@ int htHasEntry(hashTable ht, const void * key)
 int htGetEntry(hashTable ht, const void * key, const void *** data,
               int * dataCount, const void ** tableKey)
 {
-    struct hashBucket * b;
+    hashBucket b;
 
     if ((b = findEntry(ht, key)) == NULL)
        return 1;
index 358a25e..a4f599e 100644 (file)
@@ -8,7 +8,7 @@
 
 /**
  */
-typedef struct hashTable_s * hashTable;
+typedef /*@abstract@*/ struct hashTable_s * hashTable;
 
 #ifdef __cplusplus
 extern "C" {
@@ -26,8 +26,8 @@ typedef int (*hashEqualityType) (const void * key1, const void * key2)
 
 /**
  * Return hash value of a string
- * @param string  string on which to calculate hash value
- * @return hash value
+ * @param string       string on which to calculate hash value
+ * @return             hash value
  */
 unsigned int hashFunctionString(const void * string)
        /*@*/;
@@ -36,7 +36,7 @@ unsigned int hashFunctionString(const void * string)
  * Compare two hash table entries for equality.
  * @param key1          entry 1
  * @param key2          entry 2
- * @return 0 if entries are equal
+ * @return             0 if entries are equal
  */
 int hashEqualityString(const void * key1, const void * key2)
        /*@*/;
@@ -47,10 +47,10 @@ int hashEqualityString(const void * key1, const void * key2)
  * memory, but may be useful anyway.
  * @param numBuckets    number of hash buckets
  * @param keySize       size of key (0 if unknown)
- * @param freeData      should data be freed when table is destroyed?
+ * @param freeData      Should data be freed when table is destroyed?
  * @param fn            function to generate hash value for key
  * @param eq            function to compare hash keys for equality
- * @return pointer to initialized hash table
+ * @return             pointer to initialized hash table
  */
 hashTable htCreate(int numBuckets, int keySize, int freeData,
                hashFunctionType fn, hashEqualityType eq)
@@ -80,7 +80,7 @@ void htAddEntry(hashTable ht, /*@owned@*/ const void * key,
  * @retval data         address to store data value from bucket
  * @retval dataCount    address to store data value size from bucket
  * @retval tableKey     address to store key value from bucket (may be NULL)
- * @return 0 on success, 1 if the item is not found.
+ * @return             0 on success, 1 if the item is not found.
  */
 int htGetEntry(hashTable ht, const void * key,
                /*@null@*/ /*@out@*/ const void *** data,
@@ -92,7 +92,7 @@ int htGetEntry(hashTable ht, const void * key,
  * Check for key in hash table.
  * @param ht            pointer to hash table
  * @param key           pointer to key value
- * @return 1 if the key is present, 0 otherwise
+ * @return             1 if the key is present, 0 otherwise
  */
 /*@unused@*/
 int htHasEntry(hashTable ht, const void * key)