summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2005-02-10 09:04:05 +0000
committerjbj <devnull@localhost>2005-02-10 09:04:05 +0000
commit704d36f484c546eea1f0c72f7992db223a98ffc0 (patch)
treebcd1d270b1ac3ebcd5cdb1aa9a78231a7610bd5e
parent85bdd0ae7c9f9ee420fa42541bd3a795b8184c76 (diff)
downloadrpm-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--CHANGES1
-rw-r--r--lib/rpmfi.c17
-rw-r--r--lib/rpmfi.h9
-rw-r--r--lib/transaction.c27
-rw-r--r--po/cs.po18
-rw-r--r--po/da.po18
-rw-r--r--po/de.po18
-rw-r--r--po/fi.po18
-rw-r--r--po/fr.po18
-rw-r--r--po/gl.po18
-rw-r--r--po/is.po18
-rw-r--r--po/ja.po18
-rw-r--r--po/ko.po18
-rw-r--r--po/no.po18
-rw-r--r--po/pl.po18
-rw-r--r--po/pt.po18
-rw-r--r--po/pt_BR.po18
-rw-r--r--po/ro.po18
-rw-r--r--po/rpm.pot18
-rw-r--r--po/ru.po18
-rw-r--r--po/sk.po18
-rw-r--r--po/sl.po20
-rw-r--r--po/sr.po18
-rw-r--r--po/sv.po18
-rw-r--r--po/tr.po18
-rw-r--r--rpm.spec.in10
26 files changed, 248 insertions, 196 deletions
diff --git a/CHANGES b/CHANGES
index 67f863a12..bb6f9292e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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);
}
}
diff --git a/po/cs.po b/po/cs.po
index e9a027ab9..3e21c934b 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -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 ""
diff --git a/po/da.po b/po/da.po
index 9eebba277..d523cc8e3 100644
--- a/po/da.po
+++ b/po/da.po
@@ -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"
diff --git a/po/de.po b/po/de.po
index 88f223f7f..e351e5c4b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -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 ""
diff --git a/po/fi.po b/po/fi.po
index a33976933..647ea24ae 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -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 ""
diff --git a/po/fr.po b/po/fr.po
index 7fb11785b..6839cf2fb 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -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 ""
diff --git a/po/gl.po b/po/gl.po
index 5607288d7..293b4cb9d 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -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 ""
diff --git a/po/is.po b/po/is.po
index 0e92578bb..a6107cc20 100644
--- a/po/is.po
+++ b/po/is.po
@@ -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 ""
diff --git a/po/ja.po b/po/ja.po
index 66ed5459c..c0d83e53f 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -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"
diff --git a/po/ko.po b/po/ko.po
index 42a899089..e667db2e0 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -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 ""
diff --git a/po/no.po b/po/no.po
index f395e3be3..8343e4064 100644
--- a/po/no.po
+++ b/po/no.po
@@ -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 ""
diff --git a/po/pl.po b/po/pl.po
index 8f635b351..b682aa3d7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -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"
diff --git a/po/pt.po b/po/pt.po
index b1b7ee798..3ba101d93 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -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 ""
diff --git a/po/ro.po b/po/ro.po
index 7c766c988..ecb6c504a 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -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 ""
diff --git a/po/ru.po b/po/ru.po
index 7fb9e3d8c..c4346961b 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -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 ""
diff --git a/po/sk.po b/po/sk.po
index 5da99a82b..6ebae1f50 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -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"
diff --git a/po/sl.po b/po/sl.po
index 861b1753f..b3e56b3a6 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -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"
diff --git a/po/sr.po b/po/sr.po
index a0fc954ec..2826c6117 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -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 ""
diff --git a/po/sv.po b/po/sv.po
index d0dfb60a3..97340ff47 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -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 ""
diff --git a/po/tr.po b/po/tr.po
index 8221d10af..81daf0b54 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -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.