- fix builddir relative inclusion, add %%pubkeys to rpm header.
authorjbj <devnull@localhost>
Sat, 28 Dec 2002 00:24:14 +0000 (00:24 +0000)
committerjbj <devnull@localhost>
Sat, 28 Dec 2002 00:24:14 +0000 (00:24 +0000)
- fix: package relocations were broken (#75057).

CVS patchset: 5978
CVS date: 2002/12/28 00:24:14

29 files changed:
CHANGES
build/files.c
lib/rpmfi.c
lib/rpmte.c
lib/rpmts.c
lib/rpmts.h
lib/transaction.c
po/cs.po
po/da.po
po/de.po
po/fi.po
po/fr.po
po/gl.po
po/is.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
rpm.spec.in

diff --git a/CHANGES b/CHANGES
index 3ed6d311ed43a70b4e5a09ed511cc3a0413757a9..4b7810824183eecea06dc438f146f916bf350ca8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -80,6 +80,8 @@
        - add BETA-GPG-KEY (but not in headers using %%pubkey yet).
        - disable perl module magic rule.
        - ignore ENOENT return from db->close (#80514,#79314).
+       - fix builddir relative inclusion, add %%pubkeys to rpm header.
+       - fix: package relocations were broken (#75057).
 
 4.0.4 -> 4.1:
        - loosely wire beecrypt library into rpm.
index ad38b7a2b51f00d4654da3c9e9a9872cce8e8faf..2d5021cfc1ee035173d467918434ef47b204da25 100644 (file)
@@ -1742,7 +1742,7 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
     const char * apkt = NULL;
     const unsigned char * pkt = NULL;
     ssize_t pktlen = 0;
-    int absolute = 1;
+    int absolute = 0;
     int rc = 1;
     int xx;
 
@@ -1753,7 +1753,6 @@ static int processPubkeyFile(Package pkg, FileList fl, const char * fileURL)
      } else
        fn = rpmGenPath(buildURL, NULL, fn);
 
-fprintf(stderr, "*** fn %s\n", fn);
     if ((rc = pgpReadPkts(fn, &pkt, &pktlen)) <= 0) {
        rpmError(RPMERR_BADSPEC, _("%s: public key read failed.\n"), fn);
        goto exit;
index 5f810866346760c45df660dab53d94aa685267eb..61e48b9fd2a0320e6a19cd9f1c50c971c8186662 100644 (file)
@@ -463,7 +463,7 @@ Header relocateFileList(const rpmts ts, rpmfi fi,
                Header origH, fileAction * actions)
        /*@modifies ts, fi, origH, actions @*/
 {
-    rpmte p = fi->te;
+    rpmte p = rpmtsRelocateElement(ts);
     HGE_t hge = fi->hge;
     HAE_t hae = fi->hae;
     HME_t hme = fi->hme;
@@ -982,6 +982,7 @@ rpmfi rpmfiNew(rpmts ts, Header h, rpmTag tagN, int scareMem)
     HGE_t hge =
        (scareMem ? (HGE_t) headerGetEntryMinMemory : (HGE_t) headerGetEntry);
     HFD_t hfd = headerFreeData;
+    rpmte p;
     rpmfi fi = NULL;
     const char * Type;
     uint_32 * uip;
@@ -1092,7 +1093,7 @@ if (fi->actions == NULL)
 
     if (ts != NULL)
     if (fi != NULL)
-    if (fi->te != NULL && rpmteType(fi->te) == TR_ADDED) {
+    if ((p = rpmtsRelocateElement(ts)) != NULL && rpmteType(p) == TR_ADDED) {
        Header foo;
 /* XXX DYING */
 if (fi->actions == NULL)
index 24c9463954bc59183564014389af0eb0bd1e4a78..70fcc2a1524975508aa1ff680abdfa5cbbdf8679 100644 (file)
@@ -92,6 +92,7 @@ static void addTE(rpmts ts, rpmte p, Header h,
 {
     int scareMem = 0;
     HGE_t hge = (HGE_t)headerGetEntryMinMemory;
+    rpmte savep;
     int_32 * ep;
     const char * arch, * os;
     int xx;
@@ -120,19 +121,6 @@ static void addTE(rpmts ts, rpmte p, Header h,
        p->epoch = NULL;
 /*@=branchstate@*/
 
-    p->this = rpmdsThis(h, RPMTAG_PROVIDENAME, RPMSENSE_EQUAL);
-    p->provides = rpmdsNew(h, RPMTAG_PROVIDENAME, scareMem);
-    p->fi = rpmfiNew(ts, h, RPMTAG_BASENAMES, scareMem);
-    p->requires = rpmdsNew(h, RPMTAG_REQUIRENAME, scareMem);
-    p->conflicts = rpmdsNew(h, RPMTAG_CONFLICTNAME, scareMem);
-    p->obsoletes = rpmdsNew(h, RPMTAG_OBSOLETENAME, scareMem);
-
-    p->key = key;
-
-    p->fd = NULL;
-
-    p->multiLib = 0;
-
     if (relocs != NULL) {
        rpmRelocation * r;
        int i;
@@ -150,6 +138,20 @@ static void addTE(rpmts ts, rpmte p, Header h,
     } else {
        p->relocs = NULL;
     }
+
+    p->key = key;
+    p->fd = NULL;
+    p->multiLib = 0;
+
+    p->this = rpmdsThis(h, RPMTAG_PROVIDENAME, RPMSENSE_EQUAL);
+    p->provides = rpmdsNew(h, RPMTAG_PROVIDENAME, scareMem);
+    p->requires = rpmdsNew(h, RPMTAG_REQUIRENAME, scareMem);
+    p->conflicts = rpmdsNew(h, RPMTAG_CONFLICTNAME, scareMem);
+    p->obsoletes = rpmdsNew(h, RPMTAG_OBSOLETENAME, scareMem);
+
+    savep = rpmtsSetRelocateElement(ts, p);
+    p->fi = rpmfiNew(ts, h, RPMTAG_BASENAMES, scareMem);
+    (void) rpmtsSetRelocateElement(ts, savep);
 }
 /*@=bounds@*/
 
index b39b078ff725101aca0483d1a59b8fd2d0e1584e..31e8d50a0ad43a346874e39aa9e054993c7c43c0 100644 (file)
@@ -1117,6 +1117,22 @@ Spec rpmtsSetSpec(rpmts ts, Spec spec)
     return ospec;
 }
 
+rpmte rpmtsRelocateElement(rpmts ts)
+{
+/*@-compdef -retexpose -usereleased@*/
+    return ts->relocateElement;
+/*@=compdef =retexpose =usereleased@*/
+}
+
+rpmte rpmtsSetRelocateElement(rpmts ts, rpmte relocateElement)
+{
+    rpmte orelocateElement = ts->relocateElement;
+/*@-assignexpose -temptrans@*/
+    ts->relocateElement = relocateElement;
+/*@=assignexpose =temptrans@*/
+    return orelocateElement;
+}
+
 int rpmtsSetNotifyCallback(rpmts ts,
                rpmCallbackFunction notify, rpmCallbackData notifyData)
 {
index 712769e2ace2d9a960cef14dc4f74f6a0d7141c0..883b827e0e42197a473ce946a0a7f3fce04bb618 100644 (file)
@@ -156,6 +156,9 @@ struct rpmts_s {
     int numAvailablePackages;  /*!< No. available package instances. */
 #endif
 
+/*@null@*/
+    rpmte relocateElement;     /*!< Element to use when relocating packages. */
+
 /*@owned@*/ /*@relnull@*/
     rpmte * order;             /*!< Packages sorted by dependencies. */
     int orderCount;            /*!< No. of transaction elements. */
@@ -755,6 +758,25 @@ Spec rpmtsSpec(rpmts ts)
 Spec rpmtsSetSpec(rpmts ts, /*@null@*/ Spec spec)
        /*@modifies ts @*/;
 
+/** \ingroup rpmts
+ * Get current relocate transaction element.
+ * @param ts           transaction set
+ * @return             current relocate transaction element
+ */
+/*@null@*/
+rpmte rpmtsRelocateElement(rpmts ts)
+       /*@*/;
+
+/** \ingroup rpmts
+ * Set current relocate transaction element.
+ * @param ts           transaction set
+ * @param relocateElement new relocate transaction element
+ * @return             previous relocate transaction element
+ */
+/*@null@*/
+rpmte rpmtsSetRelocateElement(rpmts ts, /*@null@*/ rpmte relocateElement)
+       /*@modifies ts @*/;
+
 /** \ingroup rpmts
  * Set transaction notify callback function and argument.
  *
index fcadf4f4baf0686ce834095ec44af20397daf404..967bc8768def31d931f79b9ad6b5b2ad8a806687 100644 (file)
@@ -1473,11 +1473,16 @@ rpmMessage(RPMMESS_DEBUG, _("computing file dispositions\n"));
                {
                    char * fstates = fi->fstates;
                    fileAction * actions = fi->actions;
+                   rpmte savep;
 
                    fi->fstates = NULL;
                    fi->actions = NULL;
                    fi = rpmfiFree(fi);
+
+                   savep = rpmtsSetRelocateElement(ts, p);
                    fi = rpmfiNew(ts, p->h, RPMTAG_BASENAMES, 1);
+                   (void) rpmtsSetRelocateElement(ts, savep);
+
                    if (fi != NULL) {   /* XXX can't happen */
                        fi->te = p;
                        fi->fstates = _free(fi->fstates);
index c5c15654777d816082ad7bf721b6631c9b2699d5..0bcb5f1561776bc451c98275f8d79d1f7cbdf36a 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -525,64 +525,64 @@ msgstr "Soubor nesouhlas
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead selhalo\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "©patný soubor: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
index 0c53358e4cfc40ba424cd7447506c70042a9168b..6469835f8a7583eded771be5bfba35891284de04 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -520,64 +520,64 @@ msgstr "Fil passer ikke til pr
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Fil ikke fundet med glob: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
index 6dcc3b533a72b01c76195665eec71f12d7960cab..c1e11df51ee7f9b585058a153d5cd60cb793f00d 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -594,59 +594,59 @@ msgstr "Lesen von %s fehlgeschlagen: %s."
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
 # , c-format
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -654,7 +654,7 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
index 0009c69385214eef281ffc401453b82492d6fecf..7165337fbf7cea402e50577d7a70d658b97062e3 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
@@ -535,64 +535,64 @@ msgstr "En voi lukea %s: %s."
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
index bdeac315cd4755791929981e8225a29703d6010b..b887f3930a31ef9ec12f65dea2c058396a758ab1 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -556,64 +556,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "La construction a chou.\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 54dc9fed9e1edf7ab3ad3038f28f3b0e20d2f801..1aedf733f065f6c02c122984124a01a534c86657 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -505,64 +505,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 1910720d4283dd5d48a7cdd4f02c4f522dabd84b..0e5e6de40da1ecf239f2daed11101f7e478bc012 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -508,64 +508,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Skráin fannst ekki með 'glob': %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ógild skrá %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 57683f749347433ef09f22dbe4af54dd746e7f19..4847f497feeb1253f30cc83724cd8b9268168090 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -550,64 +550,64 @@ msgstr "
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷Ãæ\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
index 588e7cb3dbd06a4da40d8eddfbaba1be8441c387..aa2fa5115bb45996ae773ed63cebe88fd9dec0e6 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "PO-Revision-Date: 2002-03-04 17:17+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -519,64 +519,64 @@ msgstr "
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "Çà: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
index 8c57fbf6736ef0667d271cefa1a3c9d514e090c9..9bf67abf3bb0a320caf662baecb937e008566191 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -519,64 +519,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead feilet\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 915196c949d2b514f7906d78de1f0b34111db435..88135736f3c37e26862dbd36848c2a83d9547203 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -541,64 +541,64 @@ msgstr "Plik nie zgadza si
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "linia: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "poszukiwanie pakietu %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
index 6c263d057d48e242defe3626355072daf6cedc43..8b1c4028f3fd6cfa59fb1e024accc9503fd3233e 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "PO-Revision-Date: 2002-02-14 10:51+0000\n"
 "Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
 "Language-Team: pt <morais@kde.org\n"
@@ -527,64 +527,64 @@ msgstr "O ficheiro n
 msgid "File not found: %s\n"
 msgstr "Ficheiro não encontrado: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "O ficheiro precisa de começar por \"/\": %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob não permitido: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Ficheiro não encontrado pelo glob: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Não consegui abrir o ficheiro do %%files %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "linha: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ficheiro inválido: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Dono/grupo inválido: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "A processar os ficheiros: %s-%s-%s\n"
index 3e27f4e921d175f692c37090ef600a137cb6c35f..dce52d5a88db50de69559ef3fabd1842fcb70422 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
@@ -576,68 +576,68 @@ msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "instale pacote"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index f9b16bc63b3ae8dde02f29beb2f391fba47e8efe..e4dff34c887c27a037cc46fa6de0743923fefdc6 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -505,64 +505,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 2cebf3e6b4ff702d948417264e6ab95abb101dec..e16e54d2657cd670ac64fbcfcdeb652eb6bbddec 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -511,64 +511,64 @@ msgstr ""
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
index 609673aa9d6c12b81574fadd29ff78d28d8e0719..05253fdb66bc7a2650083b287226c555d2f7ec98 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "PO-Revision-Date: 2002-08-27 13:36-0400\n"
 "Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -526,57 +526,57 @@ msgstr "
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr "%s: ÜÔÏ ÎÅ ÏÔËÒÙÔÙÊ ËÌÀÞ.\n"
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "ðÒÏ×ÅÒËÁ ÎÁ ÎÅÕÐÁËÏ×ÁÎÎÙÊ(Å) ÆÁÊÌ(Ù): %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -585,7 +585,7 @@ msgstr ""
 "ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
 "%s"
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
index 8c2d0cee1a29fbd01dca9116176b40b883275756..f327d39721162e688f70f0a25ac0c7c9f9da67fa 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -538,64 +538,64 @@ msgstr "S
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "vyhµadáva sa balík %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
index 006b04cf231a789741534d6ada80f8d1c58f3648..e2c276b2909ff7e68453eb7a389ef8c23149b6b9 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.352 2002/12/27 19:42:52 jbj Exp $
+# $Id: sl.po,v 1.353 2002/12/28 00:24:51 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -537,64 +537,64 @@ msgstr "Datoteka se ne ujema s predpono (%s): %s"
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Po¹kodovana datoteka: %s: %s"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "i¹èemo paket %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
index 63cb1e19e66571e4982343205238ea84163a0071..a6ea269660798ec5c4c72fd5fbdee811e9ce7dbd 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=iso-8859-2\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -528,64 +528,64 @@ msgstr "Neuspelo 
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "gre¹ka potrage za paketom %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
index 803074e3539c735ee1651d5941b4d3f7048928a1..2cea73a2582aedfa9fb0228ab1012df2d24753ab 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-0500\n"
 "PO-Revision-Date: 2002-08-19 22:26+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -518,57 +518,57 @@ msgstr "Filen matchar inte prefixet (%s): %s\n"
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: importläsning misslyckades.\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr "%s: inte en publik nyckel med skal.\n"
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Hittade ingen fil vid matchningen: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Felaktig fil: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Letar efter opackade fil(er): %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -577,7 +577,7 @@ msgstr ""
 "Installerade (men opaketerade) filer funna:\n"
 "%s"
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
index cbab36e5514b4d20b17edadb8353386876049ca7..e6d4e1dfc58a898ecf4770783d4b4cdba8e1b0f4 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: 2002-12-27 14:23-0500\n"
+"POT-Creation-Date: 2002-12-27 19:22-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"
@@ -530,64 +530,64 @@ msgstr "Dosya 
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1758
+#: build/files.c:1757
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: build/files.c:1762 lib/rpmchecksig.c:573
+#: build/files.c:1761 lib/rpmchecksig.c:573
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1810
+#: build/files.c:1809
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1834
+#: build/files.c:1833
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1851 lib/rpminstall.c:343
+#: build/files.c:1850 lib/rpminstall.c:343
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
 
-#: build/files.c:1911
+#: build/files.c:1910
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1922 build/pack.c:156
+#: build/files.c:1921 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2311
+#: build/files.c:2310
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Dosya hatalý: %s: %s\n"
 
-#: build/files.c:2323 build/parsePrep.c:50
+#: build/files.c:2322 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:2367
+#: build/files.c:2366
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
 
-#: build/files.c:2388
+#: build/files.c:2387
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2416
+#: build/files.c:2415
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
index b9ef94493e777da683d6f9d24fc1c4fafacb5a24..650aa8b2f5c85bee6b7318703c0430b95e57b70f 100644 (file)
@@ -15,7 +15,7 @@ Name: rpm
 %define version @VERSION@
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.41
+Release: 0.42
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -232,6 +232,9 @@ exit 0
 %files
 %defattr(-,root,root)
 %doc RPM-PGP-KEY RPM-GPG-KEY BETA-GPG-KEY CHANGES GROUPS doc/manual/[a-z]*
+%pubkey RPM-PGP-KEY
+%pubkey RPM-GPG-KEY
+%pubkey BETA-GPG-KEY
 %attr(0755, @RPMUSER@, @RPMGROUP@)     /bin/rpm
 
 %ifos linux
@@ -455,10 +458,12 @@ exit 0
 %{__prefix}/include/popt.h
 
 %changelog
-* Fri Dec 27 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.41
+* Fri Dec 27 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.42
 - add BETA-GPG-KEY (but not in headers using %%pubkey yet).
 - disable perl module magic rule.
 - ignore ENOENT return from db->close (#80514,#79314).
+- fix builddir relative inclusion, add %%pubkeys to rpm header.
+- fix: package relocations were broken (#75057).
 
 * Thu Dec 26 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.39
 - add Red Hat pubkeys to rpm header.