- fix: package relocations were broken (#75057).
CVS patchset: 5978
CVS date: 2002/12/28 00:24:14
- 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.
const char * apkt = NULL;
const unsigned char * pkt = NULL;
ssize_t pktlen = 0;
- int absolute = 1;
+ int absolute = 0;
int rc = 1;
int xx;
} 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;
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;
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;
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)
{
int scareMem = 0;
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
+ rpmte savep;
int_32 * ep;
const char * arch, * os;
int xx;
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;
} 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@*/
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)
{
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. */
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.
*
{
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);
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"
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"
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"
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"
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"
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"
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"
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"
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"
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"
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 ""
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"
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 ""
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"
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 ""
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"
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"
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"
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"
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"
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 ""
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"
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"
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"
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"
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"
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 ""
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"
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 ""
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"
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 ""
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"
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"
"ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
"%s"
-#: build/files.c:2416
+#: build/files.c:2415
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
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"
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"
# -*- 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"
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"
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"
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"
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"
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"
"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"
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"
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"
%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
%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
%{__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.