- methods to complete making transactionElement opaque.
authorjbj <devnull@localhost>
Sat, 17 Nov 2001 08:02:17 +0000 (08:02 +0000)
committerjbj <devnull@localhost>
Sat, 17 Nov 2001 08:02:17 +0000 (08:02 +0000)
CVS patchset: 5189
CVS date: 2001/11/17 08:02:17

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

diff --git a/CHANGES b/CHANGES
index e61329f..d976f76 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -64,6 +64,7 @@
        - transaction.c: use wrappers/iterators to access TFI_t.
        - annotations to make a transactionElement opaque.
        - use array of pointers rather than contiguous array for ts->order.
+       - methods to complete making transactionElement opaque.
 
 4.0.3 -> 4.0.4:
 
index 85b5a8e..d01285d 100644 (file)
@@ -216,7 +216,7 @@ static int intcmp(const void * a, const void * b)   /*@*/
  * @return             0 on success
  */
 static int removePackage(rpmTransactionSet ts, Header h, int dboffset,
-               alKey depends)
+               /*@exposed@*/ /*@dependent@*/ /*@null@*/ alKey depends)
        /*@modifies ts, h @*/
 {
     transactionElement p;
@@ -248,18 +248,10 @@ static int removePackage(rpmTransactionSet ts, Header h, int dboffset,
 /*@=type =voidabstract @*/
     }
 
-    p = teNew(ts, h, NULL, NULL);
+    p = teNew(ts, h, TR_REMOVED, NULL, NULL, dboffset, depends);
     ts->order[ts->orderCount] = p;
     ts->orderCount++;
 
-/*@-type@*/ /* FIX: transactionElement not opaque */
-    p->type = TR_REMOVED;
-    p->u.removed.dboffset = dboffset;
-    /*@-assignexpose -temptrans@*/
-    p->u.removed.dependsOnKey = depends;
-    /*@=assignexpose =temptrans@*/
-/*@=type@*/
-
     return 0;
 }
 
@@ -272,7 +264,6 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
     teIterator pi; transactionElement p;
     rpmDepSet add;
     rpmDepSet obsoletes;
-    const char * name;
     alKey pkgKey;      /* addedPackages key */
     int xx;
     int ec = 0;
@@ -327,27 +318,25 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
 /*@=type =voidabstract @*/
     }
 
-    p = teNew(ts, h, key, relocs);
+    p = teNew(ts, h, TR_ADDED, key, relocs, -1, pkgKey);
     ts->order[oc] = p;
     if (!duplicate)
        ts->orderCount++;
     
-/*@-type@*/ /* FIX: transactionElement not opaque */
-    p->type = TR_ADDED;
-    pkgKey = alAddPackage(ts->addedPackages, pkgKey, p->key,
-                       p->provides, p->fi);
+    pkgKey = alAddPackage(ts->addedPackages, pkgKey, teGetKey(p),
+                       teGetDS(p, RPMTAG_PROVIDENAME),
+                       teGetFI(p, RPMTAG_BASENAMES));
     if (pkgKey == RPMAL_NOMATCH) {
        ts->order[oc] = teFree(ts->order[oc]);
        ec = 1;
        goto exit;
     }
-    p->u.addedKey = pkgKey;
-    p->multiLib = 0;
-/*@=type@*/
+    (void) teSetAddedKey(p, pkgKey);
 
 #ifdef NOYET
   /* XXX this needs a search over ts->order, not ts->addedPackages */
   { uint_32 *pp = NULL;
+
     /* XXX This should be added always so that packages look alike.
      * XXX However, there is logic in files.c/depends.c that checks for
      * XXX existence (rather than value) that will need to change as well.
@@ -357,12 +346,12 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
 
     if (multiLibMask) {
        for (i = 0; i < pkgNum - 1; i++) {
-           if (!strcmp (p->name, al->list[i].name)
+           if (!strcmp (teGetN(p), al->list[i].name)
                && hge(al->list[i].h, RPMTAG_MULTILIBS, NULL,
                                  (void **) &pp, NULL)
                && !rpmVersionCompare(p->h, al->list[i].h)
                && *pp && !(*pp & multiLibMask))
-                   p->multiLib = multiLibMask;
+                   (void) teSetMultiLib(p, multiLibMask);
        }
     }
   }
@@ -385,15 +374,11 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
            goto exit;
     }
 
-    name = teGetN(p);
-
     {  rpmdbMatchIterator mi;
        Header h2;
 
-       /* XXX FIXME: obsolete all packages with same provide, not just name. */
-       mi = rpmtsInitIterator(ts, RPMTAG_NAME, name, 0);
+       mi = rpmtsInitIterator(ts, RPMTAG_PROVIDENAME, teGetN(p), 0);
        while((h2 = rpmdbNextIterator(mi)) != NULL) {
-           /*@-branchstate@*/
            if (rpmVersionCompare(h, h2))
                xx = removePackage(ts, h2, rpmdbGetIteratorOffset(mi), pkgKey);
            else {
@@ -406,17 +391,15 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
                if (oldmultiLibMask && multiLibMask
                 && !(oldmultiLibMask & multiLibMask))
                {
-/*@-type@*/ /* FIX: transactionElement not opaque */
-                   p->multiLib = multiLibMask;
-/*@=type@*/
+                   (void) teSetMultiLib(p, multiLibMask);
                }
            }
-           /*@=branchstate@*/
        }
        mi = rpmdbFreeIterator(mi);
     }
 
-    obsoletes = dsiInit(rpmdsLink(teGetDS(p, RPMTAG_OBSOLETENAME), "Obsoletes"));
+    obsoletes = rpmdsLink(teGetDS(p, RPMTAG_OBSOLETENAME), "Obsoletes");
+    obsoletes = dsiInit(obsoletes);
     if (obsoletes != NULL)
     while (dsiNext(obsoletes) >= 0) {
        const char * Name;
@@ -425,14 +408,13 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
            continue;   /* XXX can't happen */
 
        /* XXX avoid self-obsoleting packages. */
-       if (!strcmp(name, Name))
+       if (!strcmp(teGetN(p), Name))
                continue;
 
        {   rpmdbMatchIterator mi;
            Header h2;
 
-       /* XXX FIXME: obsolete all packages with same provide, not just name. */
-           mi = rpmtsInitIterator(ts, RPMTAG_NAME, Name, 0);
+           mi = rpmtsInitIterator(ts, RPMTAG_PROVIDENAME, Name, 0);
 
            xx = rpmdbPruneIterator(mi,
                ts->removedPackages, ts->numRemovedPackages, 1);
@@ -442,11 +424,9 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
                 * Rpm prior to 3.0.3 does not have versioned obsoletes.
                 * If no obsoletes version info is available, match all names.
                 */
-               /*@-branchstate@*/
                if (dsiGetEVR(obsoletes) == NULL
                 || headerMatchesDepFlags(h2, obsoletes))
                    xx = removePackage(ts, h2, rpmdbGetIteratorOffset(mi), pkgKey);
-               /*@=branchstate@*/
            }
            mi = rpmdbFreeIterator(mi);
        }
@@ -806,9 +786,7 @@ static int checkPackageDeps(rpmTransactionSet ts, const char * pkgNEVR,
        /* 1 == unsatisfied, 0 == satsisfied */
        switch (rc) {
        case 0:         /* conflicts exist. */
-           /*@-mayaliasunique@*/ /* LCL: NULL may alias h ??? */
            dsProblem(ts->probs, pkgNEVR, conflicts, NULL);
-           /*@=mayaliasunique@*/
            /*@switchbreak@*/ break;
        case 1:         /* conflicts don't exist. */
            /*@switchbreak@*/ break;
@@ -1074,12 +1052,12 @@ static void prtTSI(const char * msg, tsortInfo tsi)
        /*@globals fileSystem@*/
        /*@modifies fileSystem@*/
 {
-/*@-nullpass -type -abstract@*/
+/*@-nullpass@*/
 if (_te_debug) {
     if (msg) fprintf(stderr, "%s", msg);
-    fprintf(stderr, " tsi %p suc %p next %p chain %p reqx %d qcnt %d\n", tsi, tsi->tsi_suc, tsi->tsi_next, tsi->tsi_chain, tsi->tsi_reqx, tsi->tsi_qcnt);
+/*@i@*/ fprintf(stderr, " tsi %p suc %p next %p chain %p reqx %d qcnt %d\n", tsi, tsi->tsi_suc, tsi->tsi_next, tsi->tsi_chain, tsi->tsi_reqx, tsi->tsi_qcnt);
 }
-/*@=nullpass =type =abstract@*/
+/*@=nullpass@*/
 }
 
 /**
@@ -1158,15 +1136,15 @@ fprintf(stderr, "addRelation: selected[%d] = 1\n", i);
 
     /* T3. Record next "q <- p" relation (i.e. "p" requires "q"). */
     teGetTSI(p)->tsi_count++;                  /* bump p predecessor count */
-/*@-type@*/
-    if (p->depth <= q->depth)          /* Save max. depth in dependency tree */
-       p->depth = q->depth + 1;
-/*@=type@*/
-/*@-nullpass -type -abstract@*/
+
+    if (teGetDepth(p) <= teGetDepth(q))        /* Save max. depth in dependency tree */
+       (void) teSetDepth(p, (teGetDepth(q) + 1));
+
+/*@-nullpass@*/
 if (_te_debug)
-fprintf(stderr, "addRelation: p %p(%s) depth %d", p, teGetN(p), p->depth);
+/*@i@*/ fprintf(stderr, "addRelation: p %p(%s) depth %d", p, teGetN(p), teGetDepth(p));
 prtTSI(NULL, teGetTSI(p));
-/*@=nullpass =type =abstract@*/
+/*@=nullpass@*/
 
     tsi = xcalloc(1, sizeof(*tsi));
     tsi->tsi_suc = p;
@@ -1174,21 +1152,21 @@ prtTSI(NULL, teGetTSI(p));
     tsi->tsi_reqx = dsiGetIx(requires);
 
     tsi->tsi_next = teGetTSI(q)->tsi_next;
-/*@-nullpass -compmempass -type -abstract@*/
+/*@-nullpass -compmempass@*/
 prtTSI("addRelation: new", tsi);
 if (_te_debug)
-fprintf(stderr, "addRelation: BEFORE q %p(%s)", q, teGetN(q));
+/*@i@*/ fprintf(stderr, "addRelation: BEFORE q %p(%s)", q, teGetN(q));
 prtTSI(NULL, teGetTSI(q));
-/*@=nullpass =compmempass =type =abstract@*/
+/*@=nullpass =compmempass@*/
 /*@-mods@*/
     teGetTSI(q)->tsi_next = tsi;
     teGetTSI(q)->tsi_qcnt++;                   /* bump q successor count */
 /*@=mods@*/
-/*@-nullpass -compmempass -type -abstract@*/
+/*@-nullpass -compmempass@*/
 if (_te_debug)
-fprintf(stderr, "addRelation:  AFTER q %p(%s)", q, teGetN(q));
+/*@i@*/ fprintf(stderr, "addRelation:  AFTER q %p(%s)", q, teGetN(q));
 prtTSI(NULL, teGetTSI(q));
-/*@=nullpass =compmempass =type =abstract@*/
+/*@=nullpass =compmempass@*/
     return 0;
 }
 /*@=mustmod@*/
@@ -1285,9 +1263,7 @@ fprintf(stderr, "*** rpmdepOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCo
     pi = teInitIterator(ts);
     /* XXX Only added packages are ordered (for now). */
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
-/*@-type@*/    /* FIX: transactionElement not opaque */
-       p->tsi = xcalloc(1, sizeof(*p->tsi));
-/*@=type@*/
+       teNewTSI(p);
     }
     pi = teFreeIterator(pi);
 
@@ -1352,14 +1328,12 @@ 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) {
 
-/*@-type@*/
-       p->npreds = teGetTSI(p)->tsi_count;
-/*@=type@*/
+       (void) teSetNpreds(p, teGetTSI(p)->tsi_count);
 
-/*@-modfilesystem -nullpass -type -abstract@*/
+/*@-modfilesystem -nullpass @*/
 if (_te_debug)
-fprintf(stderr, "\t+++ %p[%d] %s npreds %d\n", p, teiGetOc(pi), teGetNEVR(p), p->npreds);
-/*@=modfilesystem =nullpass =type =abstract@*/
+/*@i@*/ fprintf(stderr, "\t+++ %p[%d] %s npreds %d\n", p, teiGetOc(pi), teGetNEVR(p), teGetNpreds(p));
+/*@=modfilesystem =nullpass @*/
 
     }
     pi = teFreeIterator(pi);
@@ -1384,16 +1358,15 @@ rescan:
        teGetTSI(p)->tsi_suc = NULL;
        addQ(p, &q, &r);
        qlen++;
-/*@-modfilesystem -nullpass -type -abstract @*/
+/*@-modfilesystem -nullpass @*/
 if (_te_debug)
-fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, teGetNEVR(p));
+/*@i@*/ fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, teGetNEVR(p));
 prtTSI(" p", teGetTSI(p));
-/*@=modfilesystem =nullpass =type =abstract @*/
+/*@=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 = teGetTSI(q)->tsi_suc) {
 
        /* XXX Only added packages are ordered (for now). */
@@ -1406,12 +1379,12 @@ prtTSI(" p", teGetTSI(p));
            /*@notreached@*/ /*@switchbreak@*/ break;
        }
 
-/*@-type@*/
        rpmMessage(RPMMESS_DEBUG, "%5d%5d%5d%3d %*s %s\n",
-                       orderingCount, q->npreds, teGetTSI(q)->tsi_qcnt, q->depth,
-                       (2 * q->depth), "",
+                       orderingCount, teGetNpreds(q),
+                       teGetTSI(q)->tsi_qcnt, teGetDepth(q),
+                       (2 * teGetDepth(q)), "",
                        (teGetNEVR(q) ? teGetNEVR(q) : "???"));
-/*@=type@*/
+
        ordering[orderingCount] = teGetAddedKey(q);
        orderingCount++;
        qlen--;
@@ -1427,15 +1400,13 @@ prtTSI(" p", teGetTSI(p));
            if (p && (--teGetTSI(p)->tsi_count) <= 0) {
                /* XXX TODO: add control bit. */
                teGetTSI(p)->tsi_suc = NULL;
-               /*@-nullstate@*/        /* FIX: q->tsi->tsi_u.suc may be NULL */
                addQ(p, &teGetTSI(q)->tsi_suc, &r);
-               /*@=nullstate@*/
                qlen++;
-/*@-modfilesystem -nullpass -type -abstract@*/
+/*@-modfilesystem -nullpass @*/
 if (_te_debug)
-fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, teGetNEVR(p));
+/*@i@*/ fprintf(stderr, "\t+++ addQ ++ qlen %d p %p(%s)", qlen, p, teGetNEVR(p));
 prtTSI(" p", teGetTSI(p));
-/*@=modfilesystem =nullpass =type =abstract@*/
+/*@=modfilesystem =nullpass @*/
            }
            tsi = _free(tsi);
        }
@@ -1445,7 +1416,6 @@ prtTSI(" p", teGetTSI(p));
                _("========== successors only (presentation order)\n"));
        }
     }
-    /*@=branchstate@*/
 
     /* T8. End of process. Check for loops. */
     if (loopcheck != 0) {
@@ -1480,14 +1450,15 @@ prtTSI(" p", teGetTSI(p));
        ri = teInitIterator(ts);
        /* XXX Only added packages are ordered (for now). */
        while ((r = teNext(ri, TR_ADDED)) != NULL)
-       /*@-branchstate@*/
        {
            int printed;
 
            printed = 0;
 
            /* T12. Mark predecessor chain, looking for start of loop. */
-           for (q = teGetTSI(r)->tsi_chain; q != NULL; q = teGetTSI(q)->tsi_chain) {
+           for (q = teGetTSI(r)->tsi_chain; q != NULL;
+                q = teGetTSI(q)->tsi_chain)
+           {
                if (teGetTSI(q)->tsi_reqx)
                    /*@innerbreak@*/ break;
                teGetTSI(q)->tsi_reqx = 1;
@@ -1507,9 +1478,10 @@ prtTSI(" p", teGetTSI(p));
                }
 
                /* Find (and destroy if co-requisite) "q <- p" relation. */
-               if ((requires = teGetDS(p, RPMTAG_REQUIRENAME)) == NULL)
-                   continue;   /* XXX can't happen */
+               requires = teGetDS(p, RPMTAG_REQUIRENAME);
                requires = dsiInit(requires);
+               if (requires == NULL)
+                   /*@innercontinue@*/ continue;       /* XXX can't happen */
                dp = zapRelation(q, p, requires, 1, &nzaps);
 
                /* Print next member of loop. */
@@ -1523,8 +1495,7 @@ prtTSI(" p", teGetTSI(p));
            }
 
            /* Walk (and erase) linear part of predecessor chain as well. */
-           for (p = r, q = teGetTSI(r)->tsi_chain;
-                q != NULL;
+           for (p = r, q = teGetTSI(r)->tsi_chain; q != NULL;
                 p = q, q = teGetTSI(q)->tsi_chain)
            {
                /* Unchain linear part of predecessor loop. */
@@ -1532,7 +1503,6 @@ prtTSI(" p", teGetTSI(p));
                teGetTSI(p)->tsi_reqx = 0;
            }
        }
-       /*@=branchstate@*/
        ri = teFreeIterator(ri);
 
        /* If a relation was eliminated, then continue sorting. */
@@ -1561,14 +1531,7 @@ prtTSI(" p", teGetTSI(p));
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
 
        /* Clean up tsort remnants (if any). */
-       while ((tsi = teGetTSI(p)->tsi_next) != NULL) {
-           teGetTSI(p)->tsi_next = tsi->tsi_next;
-           tsi->tsi_next = NULL;
-           tsi = _free(tsi);
-       }
-/*@-type@*/    /* FIX: transactionElement not opaque */
-       p->tsi = _free(p->tsi);
-/*@=type@*/
+       teFreeTSI(p);
 
        /* Prepare added package ordering permutation. */
        orderList[j].pkgKey = teGetAddedKey(p);
@@ -1631,13 +1594,7 @@ prtTSI(" p", teGetTSI(p));
     /* Clean up after dependency checks */
     pi = teInitIterator(ts);
     while ((p = teNextIterator(pi)) != NULL) {
-/*@-type@*/    /* FIX: transactionElement not opaque */
-       p->this = dsFree(p->this);
-       p->provides = dsFree(p->provides);
-       p->requires = dsFree(p->requires);
-       p->conflicts = dsFree(p->conflicts);
-       p->obsoletes = dsFree(p->obsoletes);
-/*@=type@*/
+       teCleanDS(p);
     }
     pi = teFreeIterator(pi);
 
@@ -1711,23 +1668,18 @@ int rpmdepCheck(rpmTransactionSet ts,
     pi = teInitIterator(ts);
     while ((p = teNext(pi, TR_ADDED)) != NULL) {
        rpmDepSet provides;
-       rpmDepSet requires;
-       rpmDepSet conflicts;
-       uint_32 multiLib;
-
-       multiLib = teGetMultiLib(p);
-
-       provides = teGetDS(p, RPMTAG_PROVIDENAME);
-       requires = teGetDS(p, RPMTAG_REQUIRENAME);
-       conflicts = teGetDS(p, RPMTAG_CONFLICTNAME);
 
         rpmMessage(RPMMESS_DEBUG,  "========== +++ %s\n" , teGetNEVR(p));
-       rc = checkPackageDeps(ts, teGetNEVR(p), requires, conflicts,
-                       NULL, multiLib);
+       rc = checkPackageDeps(ts, teGetNEVR(p),
+                       teGetDS(p, RPMTAG_REQUIRENAME),
+                       teGetDS(p, RPMTAG_CONFLICTNAME),
+                       NULL,
+                       teGetMultiLib(p));
        if (rc)
            goto exit;
 
-#ifdef DYING   /* XXX all packages now have Provides: name = version-release */
+#if defined(DYING) || defined(__LCLINT__)
+       /* XXX all packages now have Provides: name = version-release */
        /* Adding: check name against conflicts matches. */
        rc = checkDependentConflicts(ts, teGetN(p));
        if (rc)
@@ -1735,6 +1687,7 @@ int rpmdepCheck(rpmTransactionSet ts,
 #endif
 
        rc = 0;
+       provides = teGetDS(p, RPMTAG_PROVIDENAME);
        provides = dsiInit(provides);
        if (provides == NULL || dsiGetN(provides) == NULL)
            continue;
@@ -1758,7 +1711,6 @@ int rpmdepCheck(rpmTransactionSet ts,
     /*
      * Look at the removed packages and make sure they aren't critical.
      */
-    /*@-branchstate@*/
     pi = teInitIterator(ts);
     while ((p = teNext(pi, TR_REMOVED)) != NULL) {
        rpmDepSet provides;
@@ -1766,7 +1718,8 @@ int rpmdepCheck(rpmTransactionSet ts,
 
        rpmMessage(RPMMESS_DEBUG,  "========== --- %s\n" , teGetNEVR(p));
 
-#ifdef DYING   /* XXX all packages now have Provides: name = version-release */
+#if defined(DYING) || defined(__LCLINT__)
+       /* XXX all packages now have Provides: name = version-release */
        /* Erasing: check name against requiredby matches. */
        rc = checkDependentPackages(ts, teGetN(p));
        if (rc)
@@ -1807,7 +1760,6 @@ int rpmdepCheck(rpmTransactionSet ts,
        if (rc)
            goto exit;
     }
-    /*@=branchstate@*/
     pi = teFreeIterator(pi);
 
 /*@-type@*/ /* FIX: return refcounted rpmProblemSet */
index c90ec97..c3161ed 100644 (file)
@@ -208,7 +208,7 @@ int dsiNext(/*@null@*/ rpmDepSet ds)
  * @return             dependency set
  */
 /*@null@*/
-rpmDepSet dsiInit(/*@returned@*/ /*@null@*/ rpmDepSet ds)
+rpmDepSet dsiInit(/*@null@*/ rpmDepSet ds)
        /*@modifies ds @*/;
 
 /**
index 282cd80..89c9024 100644 (file)
@@ -108,6 +108,8 @@ static void addTE(rpmTransactionSet ts, transactionElement p, Header h,
 
     p->fd = NULL;
 
+    p->multiLib = 0;
+
     if (relocs != NULL) {
        rpmRelocation * r;
        int i;
@@ -137,11 +139,27 @@ transactionElement teFree(transactionElement te)
     return NULL;
 }
 
-transactionElement teNew(rpmTransactionSet ts, Header h,
-               fnpyKey key, rpmRelocation * relocs)
+transactionElement teNew(const rpmTransactionSet ts, Header h,
+               rpmTransactionType type,
+               fnpyKey key,
+               rpmRelocation * relocs,
+               int dboffset,
+               alKey pkgKey)
 {
     transactionElement te = xcalloc(1, sizeof(*te));
+
     addTE(ts, te, h, key, relocs);
+    switch (type) {
+    case TR_ADDED:
+       te->type = type;
+       te->u.addedKey = pkgKey;
+       break;
+    case TR_REMOVED:
+       te->type = type;
+       te->u.removed.dependsOnKey = pkgKey;
+       te->u.removed.dboffset = dboffset;
+       break;
+    }
     return te;
 }
 
@@ -186,6 +204,46 @@ int teGetMultiLib(transactionElement te)
     return (te != NULL ? te->multiLib : 0);
 }
 
+int teSetMultiLib(transactionElement te, int nmultiLib)
+{
+    int omultiLib = 0;
+    if (te != NULL) {
+       omultiLib = te->multiLib;
+       te->multiLib = nmultiLib;
+    }
+    return omultiLib;
+}
+
+int teGetDepth(transactionElement te)
+{
+    return (te != NULL ? te->depth : 0);
+}
+
+int teSetDepth(transactionElement te, int ndepth)
+{
+    int odepth = 0;
+    if (te != NULL) {
+       odepth = te->depth;
+       te->depth = ndepth;
+    }
+    return odepth;
+}
+
+int teGetNpreds(transactionElement te)
+{
+    return (te != NULL ? te->npreds : 0);
+}
+
+int teSetNpreds(transactionElement te, int npreds)
+{
+    int opreds = 0;
+    if (te != NULL) {
+       opreds = te->npreds;
+       te->npreds = npreds;
+    }
+    return opreds;
+}
+
 tsortInfo teGetTSI(transactionElement te)
 {
     /*@-compdef -retalias -retexpose -usereleased @*/
@@ -193,14 +251,60 @@ tsortInfo teGetTSI(transactionElement te)
     /*@=compdef =retalias =retexpose =usereleased @*/
 }
 
+void teFreeTSI(transactionElement te)
+{
+    if (te != NULL && teGetTSI(te) != NULL) {
+       tsortInfo tsi;
+
+       /* Clean up tsort remnants (if any). */
+       while ((tsi = teGetTSI(te)->tsi_next) != NULL) {
+           teGetTSI(te)->tsi_next = tsi->tsi_next;
+           tsi->tsi_next = NULL;
+           tsi = _free(tsi);
+       }
+       te->tsi = _free(te->tsi);
+    }
+    /*@-nullstate@*/ /* FIX: te->tsi is NULL */
+    return;
+    /*@=nullstate@*/
+}
+
+void teNewTSI(transactionElement te)
+{
+    if (te != NULL) {
+       teFreeTSI(te);
+       te->tsi = xcalloc(1, sizeof(*te->tsi));
+    }
+}
+
+void teCleanDS(transactionElement te)
+{
+    te->this = dsFree(te->this);
+    te->provides = dsFree(te->provides);
+    te->requires = dsFree(te->requires);
+    te->conflicts = dsFree(te->conflicts);
+    te->obsoletes = dsFree(te->obsoletes);
+}
+
 alKey teGetAddedKey(transactionElement te)
 {
-    return (te != NULL ? te->u.addedKey : 0);
+    return (te != NULL ? te->u.addedKey : RPMAL_NOMATCH);
+}
+
+alKey teSetAddedKey(transactionElement te, alKey npkgKey)
+{
+    alKey opkgKey = RPMAL_NOMATCH;
+    if (te != NULL) {
+       opkgKey = te->u.addedKey;
+       te->u.addedKey = npkgKey;
+    }
+    return opkgKey;
 }
 
+
 alKey teGetDependsOnKey(transactionElement te)
 {
-    return (te != NULL ? te->u.removed.dependsOnKey : 0);
+    return (te != NULL ? te->u.removed.dependsOnKey : RPMAL_NOMATCH);
 }
 
 int teGetDBOffset(transactionElement te)
@@ -227,6 +331,7 @@ fnpyKey teGetKey(transactionElement te)
 
 rpmDepSet teGetDS(transactionElement te, rpmTag tag)
 {
+    /*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
     if (te == NULL)
        return NULL;
 
@@ -246,10 +351,12 @@ rpmDepSet teGetDS(transactionElement te, rpmTag tag)
        return te->obsoletes;
     else
        return NULL;
+    /*@=compdef =refcounttrans =retalias =retexpose =usereleased @*/
 }
 
 TFI_t teGetFI(transactionElement te, rpmTag tag)
 {
+    /*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
     if (te == NULL)
        return NULL;
 
@@ -257,6 +364,7 @@ TFI_t teGetFI(transactionElement te, rpmTag tag)
        return te->fi;
     else
        return NULL;
+    /*@=compdef =refcounttrans =retalias =retexpose =usereleased @*/
 }
 
 int teiGetOc(teIterator tei)
index 85d2897..67408a4 100644 (file)
@@ -95,8 +95,10 @@ struct transactionElement_s {
 
 /*@-fielduse@*/        /* LCL: confused by union? */
     union { 
-/*@unused@*/ alKey addedKey;
-/*@unused@*/ struct {
+/*@exposed@*/ /*@dependent@*/ /*@null@*/
+       alKey addedKey;
+       struct {
+/*@exposed@*/ /*@dependent@*/ /*@null@*/
            alKey dependsOnKey;
            int dboffset;
        } removed;
@@ -134,14 +136,20 @@ transactionElement teFree(/*@only@*/ /*@null@*/ transactionElement te)
  * Create a transaction element.
  * @param ts           transaction set
  * @param h            header
- * @param key          package retrieval key (e.g. file name)
- * @param relocs       package file relocations
+ * @param type         TR_ADDED/TR_REMOVED
+ * @param key          (TR_ADDED) package retrieval key (e.g. file name)
+ * @param relocs       (TR_ADDED) package file relocations
+ * @param dboffset     (TR_REMOVED) rpmdb instance
+ * @param pkgKey       associated added package (if any)
  * @return             new transaction element
  */
 /*@only@*/ /*@null@*/
 transactionElement teNew(const rpmTransactionSet ts, Header h,
-               /*@exposed@*/ /*@null@*/ fnpyKey key,
-               /*@null@*/ rpmRelocation * relocs)
+               rpmTransactionType type,
+               /*@exposed@*/ /*@dependent@*/ /*@null@*/ fnpyKey key,
+               /*@null@*/ rpmRelocation * relocs,
+               int dboffset,
+               /*@exposed@*/ /*@dependent@*/ /*@null@*/ alKey pkgKey)
        /*@modifies ts, h @*/;
 
 /**
@@ -215,6 +223,49 @@ int teGetMultiLib(transactionElement te)
        /*@*/;
 
 /**
+ * Set multlib flags of transaction element.
+ * @param te           transaction element
+ * @param nmultiLib    new multilib flags
+ * @return             previous multilib flags
+ */
+int teSetMultiLib(transactionElement te, int nmultiLib)
+       /*@modifies te @*/;
+
+/**
+ * Retrieve tsort tree depth of transaction element.
+ * @param te           transaction element
+ * @return             depth
+ */
+int teGetDepth(transactionElement te)
+       /*@*/;
+
+/**
+ * Set tsort tree depth of transaction element.
+ * @param te           transaction element
+ * @param ndepth       new depth
+ * @return             previous depth
+ */
+int teSetDepth(transactionElement te, int ndepth)
+       /*@modifies te @*/;
+
+/**
+ * Retrieve tsort no. of predecessors of transaction element.
+ * @param te           transaction element
+ * @return             no. of predecessors
+ */
+int teGetNpreds(transactionElement te)
+       /*@*/;
+
+/**
+ * Set tsort no. of predecessors of transaction element.
+ * @param te           transaction element
+ * @param ndepth       new no. of predecessors
+ * @return             previous no. of predecessors
+ */
+int teSetNpreds(transactionElement te, int npreds)
+       /*@modifies te @*/;
+
+/**
  * Retrieve tsort info for transaction element.
  * @param te           transaction element
  * @return             tsort info
@@ -223,20 +274,52 @@ tsortInfo teGetTSI(transactionElement te)
        /*@*/;
 
 /**
+ * Destroy tsort info of transaction element.
+ * @param te           transaction element
+ */
+void teFreeTSI(transactionElement te)
+       /*@modifies te @*/;
+
+/**
+ * Initialize tsort info of transaction element.
+ * @param te           transaction element
+ */
+void teNewTSI(transactionElement te)
+       /*@modifies te @*/;
+
+/**
+ * Destroy dependency set info of transaction element.
+ * @param te           transaction element
+ */
+void teCleanDS(transactionElement te)
+       /*@modifies te @*/;
+
+/**
  * Retrieve pkgKey of TR_ADDED transaction element.
  * @param te           transaction element
  * @return             pkgKey
  */
-/*@exposed@*/
+/*@exposed@*/ /*@dependent@*/ /*@null@*/
 alKey teGetAddedKey(transactionElement te)
        /*@*/;
 
 /**
+ * Set pkgKey of TR_ADDED transaction element.
+ * @param te           transaction element
+ * @param npkgKey      new pkgKey
+ * @return             previous pkgKey
+ */
+/*@exposed@*/ /*@dependent@*/ /*@null@*/
+alKey teSetAddedKey(transactionElement te,
+               /*@exposed@*/ /*@dependent@*/ /*@null@*/ alKey npkgKey)
+       /*@modifies te @*/;
+
+/**
  * Retrieve dependent pkgKey of TR_REMOVED transaction element.
  * @param te           transaction element
  * @return             dependent pkgKey
  */
-/*@exposed@*/
+/*@exposed@*/ /*@dependent@*/ /*@null@*/
 alKey teGetDependsOnKey(transactionElement te)
        /*@*/;
 
index c304ffa..095234d 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1432,89 +1432,89 @@ msgstr ""
 msgid " failed - "
 msgstr "selhal - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít databázi balíèkù v %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "¹patný db soubor %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "¾ádné balíèky\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 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:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "NE "
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "ANO"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 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:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 4a0b92c..bee79c4 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1433,89 +1433,89 @@ msgstr ""
 msgid " failed - "
 msgstr " mislykkedes - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tilfører)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tilfører)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index c9e61b7..ce7bc5e 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1568,90 +1568,90 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
 # , c-format
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
 # FIXME
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 9207ba6..a388e2e 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-0500\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -1451,88 +1451,88 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "kysele kaikki paketit"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index d6df6c6..e2ba1ce 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1491,85 +1491,85 @@ msgstr ""
 msgid " failed - "
 msgstr "La construction a chou.\n"
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index a1701ad..e4e4eab 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1405,83 +1405,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 4b9c05d..cb9c513 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,84 +1410,84 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "uppfæra pakka"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index e170a7e..935a0d0 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1483,88 +1483,88 @@ msgstr ""
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 6335399..cd349cd 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1423,89 +1423,89 @@ msgstr "
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "À߸øµÈ db ÆÄÀÏ    %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÀÇÁ¸(Depends) Ä³½Ã¿¡ Ãß°¡µÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "¿¹"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n"
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 0d14302..0fbc11e 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1424,84 +1424,84 @@ msgstr ""
 msgid " failed - "
 msgstr " feilet - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakke %s er allerede installert"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "NEI"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index ee1c4aa..5cd746c 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1465,89 +1465,89 @@ msgstr ""
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "Udostêpniane zasoby:"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 397f30c..532b3f8 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1420,89 +1420,89 @@ msgstr ""
 msgid " failed - "
 msgstr " falhou - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "não consigo abrir a base de dados Packages em %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "o pacote %s já está instalado"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s SI (oferecidos pelo db)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "nenhum pacote\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) adicionado à cache de dependências.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 #, fuzzy
 msgid "NO "
 msgstr "NÃO-OK"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "=========== a guardar as relações do tsort\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== só os sucessores (ordem de apresentação)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "CICLO:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== a prosseguir o tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 64c0292..566386b 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-0500\n"
 
 #: build.c:36
 #, fuzzy
@@ -1578,87 +1578,87 @@ msgid " failed - "
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "pesquise todos os pacotes"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 3b5fc65..fd7bd55 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1405,83 +1405,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 39cc82c..5acbac8 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-11-16 19:26-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1415,78 +1415,78 @@ msgstr ""
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:303
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:586
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:611
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:627
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:648
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:660
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:673
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:712
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:714 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:714 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1053
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1295
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1368
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1445
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1541
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1546
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 594fc1e..5cffde8 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1441,90 +1441,90 @@ msgstr "
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s YES (rpmrc provides)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s YES (rpmlib provides)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "îåT"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "äá"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 4654398..368adef 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1464,89 +1464,89 @@ msgstr ""
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "Poskytuje:"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 05c27e0..cae75ee 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.208 2001/11/16 22:42:43 jbj Exp $
+# $Id: sl.po,v 1.209 2001/11/17 08:02:49 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1465,89 +1465,89 @@ msgstr ""
 msgid " failed - "
 msgstr " neuspe¹no - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "ni paketov\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index cca58ee..66c4001 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-0500\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -1449,88 +1449,88 @@ msgstr ""
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "upit nad svim paketima"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 27ec822..8afed04 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1426,89 +1426,89 @@ msgstr "Ingen arkivfilen i huvud"
 msgid " failed - "
 msgstr " misslyckades - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s är redan installerat"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "inga paket\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 19659e0..0350c52 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1446,89 +1446,89 @@ msgstr ""
 msgid " failed - "
 msgstr " baþarýsýz - "
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s zaten kurulu"
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 #, fuzzy
 msgid "(db files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 #, fuzzy
 msgid "(db package)"
 msgstr "paket yok\n"
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr "EVET"
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, 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:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 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-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 56c6371..34fbe09 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-11-16 17:39-0500\n"
+"POT-Creation-Date: 2001-11-17 02:54-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"
@@ -1410,83 +1410,83 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:103
+#: lib/depends.c:101
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:419
+#: lib/depends.c:294
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:704
+#: lib/depends.c:566
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:729
+#: lib/depends.c:591
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:745
+#: lib/depends.c:607
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:766
+#: lib/depends.c:628
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:778
+#: lib/depends.c:640
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:791
+#: lib/depends.c:653
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:830
+#: lib/depends.c:692
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
+#: lib/depends.c:694 lib/rpmds.c:407 lib/rpmds.c:566
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:1173
+#: lib/depends.c:1031
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1415
+#: lib/depends.c:1271
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1491
+#: lib/depends.c:1342
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1568
+#: lib/depends.c:1416
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1628
+#: lib/depends.c:1476
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1665
+#: lib/depends.c:1511
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1670
+#: lib/depends.c:1516
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
index 7c6769b..9518bb0 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -582,3 +582,4 @@ fi
 - transaction.c: use wrappers/iterators to access TFI_t.
 - annotations to make a transactionElement opaque.
 - use array of pointers rather than contiguous array for ts->order.
+- methods to complete making transactionElement opaque.
index 0064077..6648a72 100644 (file)
@@ -582,3 +582,4 @@ fi
 - transaction.c: use wrappers/iterators to access TFI_t.
 - annotations to make a transactionElement opaque.
 - use array of pointers rather than contiguous array for ts->order.
+- methods to complete making transactionElement opaque.