diff options
author | jbj <devnull@localhost> | 2005-02-10 09:04:05 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2005-02-10 09:04:05 +0000 |
commit | 704d36f484c546eea1f0c72f7992db223a98ffc0 (patch) | |
tree | bcd1d270b1ac3ebcd5cdb1aa9a78231a7610bd5e | |
parent | 85bdd0ae7c9f9ee420fa42541bd3a795b8184c76 (diff) | |
download | rpm-704d36f484c546eea1f0c72f7992db223a98ffc0.tar.gz rpm-704d36f484c546eea1f0c72f7992db223a98ffc0.tar.bz2 rpm-704d36f484c546eea1f0c72f7992db223a98ffc0.zip |
- perform callbacks as always (#147537).
CVS patchset: 7757
CVS date: 2005/02/10 09:04:05
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | lib/rpmfi.c | 17 | ||||
-rw-r--r-- | lib/rpmfi.h | 9 | ||||
-rw-r--r-- | lib/transaction.c | 27 | ||||
-rw-r--r-- | po/cs.po | 18 | ||||
-rw-r--r-- | po/da.po | 18 | ||||
-rw-r--r-- | po/de.po | 18 | ||||
-rw-r--r-- | po/fi.po | 18 | ||||
-rw-r--r-- | po/fr.po | 18 | ||||
-rw-r--r-- | po/gl.po | 18 | ||||
-rw-r--r-- | po/is.po | 18 | ||||
-rw-r--r-- | po/ja.po | 18 | ||||
-rw-r--r-- | po/ko.po | 18 | ||||
-rw-r--r-- | po/no.po | 18 | ||||
-rw-r--r-- | po/pl.po | 18 | ||||
-rw-r--r-- | po/pt.po | 18 | ||||
-rw-r--r-- | po/pt_BR.po | 18 | ||||
-rw-r--r-- | po/ro.po | 18 | ||||
-rw-r--r-- | po/rpm.pot | 18 | ||||
-rw-r--r-- | po/ru.po | 18 | ||||
-rw-r--r-- | po/sk.po | 18 | ||||
-rw-r--r-- | po/sl.po | 20 | ||||
-rw-r--r-- | po/sr.po | 18 | ||||
-rw-r--r-- | po/sv.po | 18 | ||||
-rw-r--r-- | po/tr.po | 18 | ||||
-rw-r--r-- | rpm.spec.in | 10 |
26 files changed, 248 insertions, 196 deletions
@@ -20,6 +20,7 @@ - add support for V4 rfc-2440 signatures. - sqlite3: run-time endian test rather than chasing <endian.h> (#146752). - discover and use getmntinfo if present. + - perform callbacks as always (#147537). 4.3.3 -> 4.4: - pentium3/pentium4 arch support (pluto@PLD). diff --git a/lib/rpmfi.c b/lib/rpmfi.c index 4767206a5..38bee29a3 100644 --- a/lib/rpmfi.c +++ b/lib/rpmfi.c @@ -1110,6 +1110,12 @@ if (_rpmfi_debug < 0) fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, fi->Type, fi->fc); /*@=modfilesys@*/ + /* Free pre- and post-transaction script and interpreter strings. */ + fi->pretrans = _free(fi->pretrans); + fi->pretransprog = _free(fi->pretransprog); + fi->posttrans = _free(fi->posttrans); + fi->posttransprog = _free(fi->posttransprog); + /*@-branchstate@*/ if (fi->fc > 0) { fi->bnl = hfd(fi->bnl, -1); @@ -1197,6 +1203,11 @@ static inline unsigned char nibble(char c) (_fi)->_data = memcpy(xmalloc((_fi)->fc * sizeof(*(_fi)->_data)), \ (_fi)->_data, (_fi)->fc * sizeof(*(_fi)->_data)) +/* XXX Ick, not SEF. */ +#define _fdupestring(_h, _tag, _data) \ + if (hge((_h), (_tag), NULL, (void **) &(_data), NULL)) \ + _data = xstrdup(_data) + rpmfi rpmfiNew(const rpmts ts, Header h, rpmTag tagN, int scareMem) { HGE_t hge = @@ -1244,6 +1255,12 @@ rpmfi rpmfiNew(const rpmts ts, Header h, rpmTag tagN, int scareMem) fi->archivePos = 0; fi->archiveSize = (xx ? *uip : 0); + /* Extract pre- and post-transaction script and interpreter strings. */ + _fdupestring(h, RPMTAG_PRETRANS, fi->pretrans); + _fdupestring(h, RPMTAG_PRETRANSPROG, fi->pretransprog); + _fdupestring(h, RPMTAG_POSTTRANS, fi->posttrans); + _fdupestring(h, RPMTAG_POSTTRANSPROG, fi->posttransprog); + if (!hge(h, RPMTAG_BASENAMES, NULL, (void **) &fi->bnl, &fi->fc)) { fi->fc = 0; fi->dc = 0; diff --git a/lib/rpmfi.h b/lib/rpmfi.h index cc56f935d..1c9bdfa3b 100644 --- a/lib/rpmfi.h +++ b/lib/rpmfi.h @@ -129,6 +129,15 @@ struct rpmfi_s { unsigned char * md5s; /*!< File md5 sums in binary. */ /*@only@*/ /*@null@*/ + const char * pretrans; +/*@only@*/ /*@null@*/ + const char * pretransprog; +/*@only@*/ /*@null@*/ + const char * posttrans; +/*@only@*/ /*@null@*/ + const char * posttransprog; + +/*@only@*/ /*@null@*/ char * fn; /*!< File name buffer. */ int fnlen; /*!< FIle name buffer length. */ diff --git a/lib/transaction.c b/lib/transaction.c index 2f9e7aab3..c6948c81f 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1574,6 +1574,10 @@ rpmMessage(RPMMESS_DEBUG, _("sanity checking %d elements\n"), rpmtsNElements(ts) if ((fi = rpmtsiFi(pi)) == NULL) continue; /* XXX can't happen */ + /* If no pre-transaction script, then don't bother. */ + if (fi->pretrans == NULL) + continue; + p->fd = ts->notify(p->h, RPMCALLBACK_INST_OPEN_FILE, 0, 0, rpmteKey(p), ts->notifyData); p->h = NULL; @@ -2255,9 +2259,11 @@ assert(psm != NULL); psm = rpmpsmFree(psm); /*@=nullstate@*/ +#ifdef DYING /*@-type@*/ /* FIX: p is almost opaque */ p->fi = rpmfiFree(p->fi); /*@=type@*/ +#endif } /*@=branchstate@*/ @@ -2270,6 +2276,18 @@ assert(psm != NULL); rpmMessage(RPMMESS_DEBUG, _("running post-transaction scripts\n")); pi = rpmtsiInit(ts); while ((p = rpmtsiNext(pi, TR_ADDED)) != NULL) { + int haspostscript; + + if ((fi = rpmtsiFi(pi)) == NULL) + continue; /* XXX can't happen */ + + haspostscript = (fi->posttrans != NULL ? 1 : 0); + p->fi = rpmfiFree(p->fi); + + /* If no post-transaction script, then don't bother. */ + if (haspostscript) + continue; + p->fd = ts->notify(p->h, RPMCALLBACK_INST_OPEN_FILE, 0, 0, rpmteKey(p), ts->notifyData); p->h = NULL; @@ -2295,11 +2313,9 @@ assert(psm != NULL); } if (rpmteFd(p) != NULL) { - fi = rpmfiNew(ts, p->h, RPMTAG_BASENAMES, 1); - if (fi != NULL) { /* XXX can't happen */ - fi->te = p; - p->fi = fi; - } + p->fi = rpmfiNew(ts, p->h, RPMTAG_BASENAMES, 1); + if (p->fi != NULL) /* XXX can't happen */ + p->fi->te = p; /*@-compdef -usereleased@*/ /* p->fi->te undefined */ psm = rpmpsmNew(ts, p, p->fi); /*@=compdef =usereleased@*/ @@ -2314,6 +2330,7 @@ assert(psm != NULL); rpmteKey(p), ts->notifyData); /*@=noeffectuncon =compdef =usereleased @*/ p->fd = NULL; + p->fi = rpmfiFree(p->fi); p->h = headerFree(p->h); } } @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n" "Language-Team: Czech <cs@li.org>\n" @@ -3560,7 +3560,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3568,31 +3568,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n" "Language-Team: Danish <dansk@klid.dk>\n" @@ -3573,7 +3573,7 @@ msgstr "kører præinstallations-skript (hvis det findes)\n" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3581,31 +3581,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 #, fuzzy msgid "running post-transaction scripts\n" msgstr "kører skriptet postuninstall (hvis det findes)\n" @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n" "Language-Team: German <de@li.org>\n" @@ -3742,7 +3742,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3750,31 +3750,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-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" @@ -3604,7 +3604,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3612,31 +3612,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: RPM 4.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2003-07-06 01:36+0200\n" "Last-Translator: RPM French Translation <rpm-fr@livna.org>\n" "Language-Team: RPM French Translation <rpm-fr@livna.org>\n" @@ -3582,7 +3582,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "calcul de %d empreintes de fichier\n" @@ -3590,31 +3590,31 @@ msgstr "calcul de %d empreintes de fichier\n" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "calcul de la disposition des fichiers\n" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n" "Language-Team: Galician <trasno@ceu.fi.udc.es>\n" @@ -3444,7 +3444,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3452,31 +3452,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -3478,7 +3478,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3486,31 +3486,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n" "Language-Team: JRPM <jrpm@linux.or.jp>\n" @@ -3652,7 +3652,7 @@ msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3660,31 +3660,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 #, fuzzy msgid "running post-transaction scripts\n" msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-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" @@ -3549,7 +3549,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3557,31 +3557,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian <no@li.org>\n" @@ -3521,7 +3521,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3529,31 +3529,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.3-20030515\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2003-06-08 22:42+0200\n" "Last-Translator: Arkadiusz Miskiewicz <arekm@pld-linux.org>\n" "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" @@ -3506,7 +3506,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "obliczanie %d odcisków plików\n" @@ -3514,31 +3514,31 @@ msgstr "obliczanie %d odcisków plików\n" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "obliczanie dyspozycji plików\n" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "Tworzenie transakcji auto-wycofywania\n" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "Dodanie niepowiod³o siê. Nie mo¿na przeczytaæ nag³ó³ka pakietu.\n" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "Dodanie niepowiod³o siê w rpmpsmStage().\n" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "Dodanie niepowiod³o siê. Nie mo¿na uzyskaæ listy plików.\n" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "Usuwanie niepowiod³o siê w rpmpsmStage().\n" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "uruchamianie skryptów po-transakcyjnych\n" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-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" @@ -3560,7 +3560,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3568,31 +3568,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index ce7925a32..d494325d3 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2004-02-29 07:48+0500\n" "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n" "Language-Team: Brazilian Portuguese\n" @@ -3816,7 +3816,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3824,31 +3824,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton <gafton@redhat.com>\n" "Language-Team: Romanian <ro@li.org>\n" @@ -3444,7 +3444,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3452,31 +3452,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 3eaeab1d7..469fe547a 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -3450,7 +3450,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3458,31 +3458,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-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" @@ -3524,7 +3524,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n" @@ -3532,31 +3532,31 @@ msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n" "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n" @@ -3607,7 +3607,7 @@ msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3615,31 +3615,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 #, fuzzy msgid "running post-transaction scripts\n" msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n" @@ -1,13 +1,13 @@ # -*- 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.389.2.13 2005/02/03 23:06:01 jbj Exp $ +# $Id: sl.po,v 1.389.2.14 2005/02/10 09:04:19 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -3612,7 +3612,7 @@ msgstr "poganjanje prednamestitvenih skript (èe obstajajo)\n" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3620,31 +3620,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 #, fuzzy msgid "running post-transaction scripts\n" msgstr "poganjanje poodnamestitvenih skriptov (èe obstajajo)\n" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2004-02-29 07:48+0500\n" "Last-Translator: unknown\n" "Language-Team: unknown\n" @@ -3598,7 +3598,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3606,31 +3606,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2003-02-05 12:40+0100\n" "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -3510,7 +3510,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "beräknar %d filfingeravtryck\n" @@ -3518,31 +3518,31 @@ msgstr "beräknar %d filfingeravtryck\n" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "beräknar filåtgärder\n" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-03 17:51-0500\n" +"POT-Creation-Date: 2005-02-10 04:01-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n" "Language-Team: Turkish <tr@li.org>\n" @@ -3571,7 +3571,7 @@ msgstr "" #. * calling fpLookupList only once. I'm not sure that the speedup is #. * worth the trouble though. #. -#: lib/transaction.c:1641 +#: lib/transaction.c:1645 #, c-format msgid "computing %d file fingerprints\n" msgstr "" @@ -3579,31 +3579,31 @@ msgstr "" #. =============================================== #. * Compute file disposition for each package in transaction set. #. -#: lib/transaction.c:1722 +#: lib/transaction.c:1726 msgid "computing file dispositions\n" msgstr "" -#: lib/transaction.c:1901 +#: lib/transaction.c:1905 msgid "Creating auto-rollback transaction\n" msgstr "" -#: lib/transaction.c:2055 +#: lib/transaction.c:2059 msgid "Add failed. Could not read package header.\n" msgstr "" -#: lib/transaction.c:2119 +#: lib/transaction.c:2123 msgid "Add failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2163 +#: lib/transaction.c:2167 msgid "Add failed. Could not get file list.\n" msgstr "" -#: lib/transaction.c:2212 +#: lib/transaction.c:2216 msgid "Erase failed failed in rpmpsmStage().\n" msgstr "" -#: lib/transaction.c:2270 +#: lib/transaction.c:2276 msgid "running post-transaction scripts\n" msgstr "" diff --git a/rpm.spec.in b/rpm.spec.in index c850554b8..85fff7934 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -20,7 +20,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.18 +Release: 0.20 Group: System Environment/Base Source: ftp://jbj.org/pub/rpm-devel/rpm-%{rpm_version}.tar.gz License: GPL @@ -71,6 +71,9 @@ This package contains the RPM shared libraries. Summary: Development files for manipulating RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version}-%{release} +Requires: beecrypt >= 4.1.2 +Requires: neon-devel +Requires: sqlite3-devel %description devel This package contains the RPM C library and header files. These @@ -151,6 +154,8 @@ CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} $WITH_PYTHON \ --without-javaglue %endif +make -C zlib || : + make %{?_smp_mflags} %install @@ -495,6 +500,9 @@ exit 0 %{__includedir}/popt.h %changelog +* Thu Feb 10 2005 Jeff Johnson <jbj@jbj.org> 4.4.1-0.20 +- perform callbacks as always (#147537). + * Wed Feb 2 2005 Jeff Johnson <jbj@jbj.org> 4.4.1-0.16 - fix: length of gpg V4 hash seed was incorrect (#146896). - add support for V4 rfc-2440 signatures. |