- popt: add ability to perform callbacks for every, not just first, match.
CVS patchset: 3993
CVS date: 2000/07/31 15:04:20
- create rpmbuild/rpmquery/rpmverify/rpmsign symlinks.
- fix: look for any/all dbapi when rebuilding.
- link rpm2cpio dynamically since cpio is linked dynamically.
+ - fix: uniqify dependency problems when printing (#14034).
3.0.4 -> 3.0.5
- configure.in fiddles for BSD systems (Patrick Schoo).
fprintf(fp, " %s", version);
}
+static int sameProblem(struct rpmDependencyConflict * ap,
+ struct rpmDependencyConflict * bp)
+{
+
+ if (ap->sense != bp->sense)
+ return 1;
+
+ if (ap->byName && bp->byName && strcmp(ap->byName, bp->byName))
+ return 1;
+ if (ap->byVersion && bp->byVersion && strcmp(ap->byVersion, bp->byVersion))
+ return 1;
+ if (ap->byRelease && bp->byRelease && strcmp(ap->byRelease, bp->byRelease))
+ return 1;
+
+ if (ap->needsName && bp->needsName && strcmp(ap->needsName, bp->needsName))
+ return 1;
+ if (ap->needsVersion && bp->needsVersion && strcmp(ap->needsVersion, bp->needsVersion))
+ return 1;
+ if (ap->needsFlags && bp->needsFlags && ap->needsFlags != bp->needsFlags)
+ return 1;
+
+ return 0;
+}
+
/* XXX FIXME: merge into problems */
void printDepProblems(FILE * fp, struct rpmDependencyConflict * conflicts,
int numConflicts)
int i;
for (i = 0; i < numConflicts; i++) {
+ int j;
+
+ /* Filter already displayed problems. */
+ for (j = 0; j < i; j++) {
+ if (!sameProblem(conflicts + i, conflicts + j))
+ break;
+ }
+ if (j < i)
+ continue;
+
fprintf(fp, "\t%s", conflicts[i].needsName);
- if (conflicts[i].needsFlags) {
+ if (conflicts[i].needsFlags)
printDepFlags(fp, conflicts[i].needsVersion,
conflicts[i].needsFlags);
- }
if (conflicts[i].sense == RPMDEP_SENSE_REQUIRES)
fprintf(fp, _(" is needed by %s-%s-%s\n"), conflicts[i].byName,
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-07-27 15:59+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
msgid "display a verbose file listing"
msgstr "zobrazit roz¹íøený výpis souborù"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je nutné pro %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " koliduje s %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "balíèek %s-%s-%s je pro jinou architekturu"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "balíèek %s-%s-%s je pro jiný operaèní systém"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "balíèek %s-%s-%s je ji¾ nainstalován"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "cesta %s není pøemístitelná pro balíèek %s-%s-%s"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "soubor %s zpùsobuje konflikt mezi instalovaným %s-%s-%s a %s-%s-%s"
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr "soubor %s z instalace %s-%s-%s koliduje se souborem z balíèku %s-%s-%s"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "balíèek %s-%s-%s (který je novìj¹í, ne¾ %s-%s-%s) je ji¾ nainstalován"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "instalace balíèku %s-%s-%s potøebuje %ld%cb na systému souborù %s"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "v balíèku %s-%s-%s pøedtransakèní syscall(s): %s selhalo: %s"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s-%s-%s"
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 2.5.2\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr "Dateiliste des Pakets anzeigen"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " wird von %s-%s-%s gebraucht\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " steht im Konflikt mit %s-%s-%s\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " steht im Konflikt mit %s-%s-%s\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:114
+#: lib/problems.c:147
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
msgid "display a verbose file listing"
msgstr "näytä paketin tiedostolistaus"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr "vaatii %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
-msgstr "POT-Creation-Date: 2000-07-29 16:29-0400\n"
+msgstr "POT-Creation-Date: 2000-07-31 10:51-0400\n"
#: build.c:25 lib/rpminstall.c:451
#, c-format
msgid "display a verbose file listing"
msgstr " -l - affiche la liste des packages"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 1.0\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-06-16 02:20+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm-3.0.4\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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"
# build root [BuildRoot]
# net share [¥Í¥Ã¥È¶¦Í]
# reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.104 2000/07/29 20:31:57 jbj Exp $
+# $Id: ja.po,v 1.105 2000/07/31 15:04:21 jbj Exp $
#: rpm.c:178 rpmqv.c:257
#, c-format
msgid "rpm: %s\n"
msgid "display a verbose file listing"
msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " %s-%s-%s ¤È¶¥¹ç¤·¤Þ¤¹\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë¥¢¡¼¥¥Æ¥¯¥Á¥ã¸þ¤±¤Ç¤¹"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë OS ¸þ¤±¤Ç¤¹"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
"¥Õ¥¡¥¤¥ë %s ¤Ï %s-%s-%s ¤È %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:92
+#: lib/problems.c:125
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
"%s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤«¤é¤Î¥Õ¥¡¥¤¥ë %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s "
"¤«¤é¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s (%s-%s-%s¤è¤ê¤â¿·¤·¤¤¤â¤Î) "
"¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s "
"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ç)"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤¤Þ¤·¤¿"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-06-22 21:59+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm-3.0.2\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr "wy¶wietl wiêcej informacji o plikach z listy"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " jest wymagany przez %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " jest w konflikcie z %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
"plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
"pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, fuzzy, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
-msgstr "POT-Creation-Date: 2000-07-29 16:29-0400\n"
+msgstr "POT-Creation-Date: 2000-07-31 10:51-0400\n"
#: build.c:25 lib/rpminstall.c:451
#, c-format
msgid "display a verbose file listing"
msgstr "mostre a lista de arquivos do pacote"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "display a verbose file listing"
msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " ÎÕÖÅÎ ÄÌÑ %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ïó"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "ÐÁËÅÔ %s-%s-%s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "ÐÕÔØ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ ÄÌÑ ÐÁËÅÔÁ %s-%s-%s"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s-%s-%s É %s-%s-%s"
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr "ÆÁÊÌ %s ÉÚ ÐÁËÅÔÁ %s-%s-%s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s-%s-%s"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "ÐÁËÅÔ %s-%s-%s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s-%s-%s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, fuzzy, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s-%s-%s"
msgid ""
msgstr ""
"Project-Id-Version: rpm 2.93\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr "zobrazi» podrobný zoznam súborov balíka"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je vy¾adované %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " koliduje s %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
# -*- 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.89 2000/07/29 20:31:58 jbj Exp $
+# $Id: sl.po,v 1.90 2000/07/31 15:04:22 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-02-17 22:25+01:00\n"
"Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
msgid "display a verbose file listing"
msgstr "izpis ob¹irnega seznama datotek"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " potrebuje %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " v sporu z %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s je za drug tip arhitekture"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s je za drug operacijski sistem"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "poti %s ni mo¾no premakniti za paket %s-%s-%s"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "datoteka %s v sporu med poskusom namestitve %s-%s-%s in %s-%s-%s"
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
"datoteka %s name¹èena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
msgid "display a verbose file listing"
msgstr "prika¾i listu datoteka u paketu"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je potreban paketu %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " se sudara sa %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s nije instaliran\n"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "paket %s nije instaliran\n"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " se sudara sa %s-%s-%s\n"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\n"
"PO-Revision-Date: 2000-07-24 22:14+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
msgid "display a verbose file listing"
msgstr "visa en utförlig fillistning"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " behövs av %s-%s-%s\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " står i konflikt med %s-%s-%s\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s är för en annan arkitektur"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s är för ett annat operativsystem"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s-%s-%s är redan installerat"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "sökväg %s är inte relokerbar för paket %s-%s-%s"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
"filen %s är en konflikt mellan installationsförsök av %s-%s-%s och %s-%s-%s"
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
"filen %s från installation av %s-%s-%s står i konflikt med filen från paket "
"%s-%s-%s"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s (som är nyare än %s-%s-%s) är redan installerat"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "installation av paket %s-%s-%s kräver %ld%cb på filsystem %s"
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s-%s-%s systemanrop före transaktion: %s misslyckades: %s"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "okänt fel %d uppträdde under manipulation av paket %s-%s-%s"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr "Paketin içerdiði dosyalarý gösterme"
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ", %s-%s-%s tarafýndan kullanýlýyor\n"
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ", %s-%s-%s ile çeliþiyor\n"
-#: lib/problems.c:66
+#: lib/problems.c:99
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:71
+#: lib/problems.c:104
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:76
+#: lib/problems.c:109
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/problems.c:81
+#: lib/problems.c:114
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ", %s-%s-%s ile çeliþiyor\n"
-#: lib/problems.c:98
+#: lib/problems.c:131
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-29 16:29-0400\n"
+"POT-Creation-Date: 2000-07-31 10:51-0400\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 "display a verbose file listing"
msgstr ""
-#: lib/problems.c:43
+#: lib/problems.c:76
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:46
+#: lib/problems.c:79
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:66
+#: lib/problems.c:99
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:71
+#: lib/problems.c:104
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:109
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:81
+#: lib/problems.c:114
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:86
+#: lib/problems.c:119
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:92
+#: lib/problems.c:125
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:98
+#: lib/problems.c:131
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:137
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:147
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:122
+#: lib/problems.c:155
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-1.3 ->
+1.5 -> 1.6
+ - add ability to perform callbacks for every, not just first, match.
+
+1.3 -> 1.5
- heavy dose of const's
- poptParseArgvString() now NULL terminates the list
msgid ""
msgstr ""
"Project-Id-Version: popt 1.3\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-07-26 23:09+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt 1.4\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-01-06 20:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt 1.0\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-06-16 02:12+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt 7.0\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-06-21 16:11+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-06-22 01:02+01:00\n"
"Last-Translator: Pedro Morais <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt 1.6\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-06-14 23:23+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 1999-08-04 21:40+0200\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-06-20 00:07+0200\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: popt 1.2\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 2000-01-06 13:01+0100\n"
"Last-Translator: Fatih Demir <kabalak@gmx.net>\n"
"Language-Team: Turkish Gnome Tranlation Team <gnotrap@gmx.net>\n"
msgid ""
msgstr ""
"Project-Id-Version: popt 1.4\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 1999-09-30 16:54+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
msgid ""
msgstr ""
"Project-Id-Version: popt 1.3\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Nobody yet\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\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 ""
msgstr ""
"Project-Id-Version: kcmkpanel\n"
-"POT-Creation-Date: 2000-07-09 15:05-0400\n"
+"POT-Creation-Date: 2000-07-30 09:36-0400\n"
"PO-Revision-Date: 1999-11-11 05:04+0800\n"
"Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
con->execAbsolute = allowAbsolute;
}
-static void invokeCallbacks(poptContext con, const struct poptOption * table,
- int post) {
- const struct poptOption * opt = table;
- poptCallbackType cb;
+static void invokeCallbacksPRE(poptContext con, const struct poptOption * opt)
+{
+ for (; opt->longName || opt->shortName || opt->arg; opt++) {
+ if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
+ /* Recurse on included sub-tables. */
+ invokeCallbacksPRE(con, opt->arg);
+ } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
+ (opt->argInfo & POPT_CBFLAG_PRE))
+ { poptCallbackType cb = (poptCallbackType)opt->arg;
+ /* Perform callback. */
+ cb(con, POPT_CALLBACK_REASON_PRE, NULL, NULL, opt->descrip);
+ }
+ }
+}
- while (opt->longName || opt->shortName || opt->arg) {
+static void invokeCallbacksPOST(poptContext con, const struct poptOption * opt)
+{
+ for (; opt->longName || opt->shortName || opt->arg; opt++) {
if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
- invokeCallbacks(con, opt->arg, post);
- } else if (((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK) &&
- ((!post && (opt->argInfo & POPT_CBFLAG_PRE)) ||
- ( post && (opt->argInfo & POPT_CBFLAG_POST)))) {
- cb = (poptCallbackType)opt->arg;
- cb(con, post ? POPT_CALLBACK_REASON_POST : POPT_CALLBACK_REASON_PRE,
- NULL, NULL, opt->descrip);
+ /* Recurse on included sub-tables. */
+ invokeCallbacksPRE(con, opt->arg);
+ } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
+ (opt->argInfo & POPT_CBFLAG_POST))
+ { poptCallbackType cb = (poptCallbackType)opt->arg;
+ /* Perform callback. */
+ cb(con, POPT_CALLBACK_REASON_POST, NULL, NULL, opt->descrip);
+ }
+ }
+}
+
+static void invokeCallbacksOPTION(poptContext con,
+ const struct poptOption * opt,
+ const struct poptOption * myOpt,
+ const void * myData, int shorty)
+{
+ const struct poptOption * cbopt = NULL;
+
+ for (; opt->longName || opt->shortName || opt->arg; opt++) {
+ if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
+ /* Recurse on included sub-tables. */
+ invokeCallbacksOPTION(con, opt->arg, myOpt, myData, shorty);
+ } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK &&
+ !(opt->argInfo & POPT_CBFLAG_SKIPOPTION)) {
+ /* Save callback info. */
+ cbopt = opt;
+ } else if (cbopt != NULL &&
+ ((myOpt->shortName && opt->shortName && shorty &&
+ myOpt->shortName == opt->shortName) ||
+ (myOpt->longName && opt->longName &&
+ !strcmp(myOpt->longName, opt->longName)))
+ )
+ { poptCallbackType cb = (poptCallbackType)cbopt->arg;
+ const void * cbData = (cbopt->descrip ? cbopt->descrip : myData);
+ /* Perform callback. */
+ cb(con, POPT_CALLBACK_REASON_OPTION, myOpt,
+ con->os->nextArg, cbData);
+ /* Terminate (unless explcitly continuing). */
+ if (!(cbopt->argInfo & POPT_CBFLAG_CONTINUE))
+ return;
}
- opt++;
}
}
poptContext poptGetContext(const char * name, int argc, const char ** argv,
- const struct poptOption * options, int flags) {
+ const struct poptOption * options, int flags)
+{
poptContext con = malloc(sizeof(*con));
memset(con, 0, sizeof(*con));
if (name)
con->appName = strcpy(malloc(strlen(name) + 1), name);
- invokeCallbacks(con, con->options, 0);
+ invokeCallbacksPRE(con, con->options);
return con;
}
}
/*@observer@*/ static const struct poptOption *
-findOption(const struct poptOption * table, const char * longName,
+findOption(const struct poptOption * opt, const char * longName,
char shortName,
/*@out@*/ poptCallbackType * callback, /*@out@*/ const void ** callbackData,
int singleDash)
{
- const struct poptOption * opt = table;
- const struct poptOption * opt2;
const struct poptOption * cb = NULL;
/* This happens when a single - is given */
if (singleDash && !shortName && !*longName)
shortName = '-';
- while (opt->longName || opt->shortName || opt->arg) {
+ for (; opt->longName || opt->shortName || opt->arg; opt++) {
+
if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
+ const struct poptOption * opt2;
+ /* Recurse on included sub-tables. */
opt2 = findOption(opt->arg, longName, shortName, callback,
callbackData, singleDash);
if (opt2) {
- if (*callback && !*callbackData)
+ /* Sub-table data will be inheirited if no data yet. */
+ if (*callback && *callbackData == NULL)
*callbackData = opt->descrip;
return opt2;
}
} else if (shortName && shortName == opt->shortName) {
break;
}
- opt++;
}
- if (!opt->longName && !opt->shortName) return NULL;
+ if (!opt->longName && !opt->shortName)
+ return NULL;
*callbackData = NULL;
*callback = NULL;
if (cb) {
const void * cbData = NULL;
const char * longArg = NULL;
int canstrip = 0;
+ int shorty = 0;
while (!con->os->nextCharArg && con->os->next == con->os->argc
&& con->os > con->optionStack) {
cleanOSE(con->os--);
}
if (!con->os->nextCharArg && con->os->next == con->os->argc) {
- invokeCallbacks(con, con->options, 1);
+ invokeCallbacksPOST(con, con->options);
if (con->doExec) execCommand(con);
return -1;
}
canstrip = 1;
poptStripArg(con, thisopt);
}
+ shorty = 0;
}
}
&cbData, 0);
if (!opt)
return POPT_ERROR_BADOPT;
+ shorty = 1;
origOptString++;
if (*origOptString) con->os->nextCharArg = origOptString;
}
if (cb)
- cb(con, POPT_CALLBACK_REASON_OPTION, opt, con->os->nextArg, cbData);
+ invokeCallbacksOPTION(con, con->options, opt, cbData, shorty);
else if (opt->val && ((opt->argInfo & POPT_ARG_MASK) != POPT_ARG_VAL))
done = 1;
#define POPT_CBFLAG_POST 0x40000000 /* call the callback after parse */
#define POPT_CBFLAG_INC_DATA 0x20000000 /* use data from the include line,
not the subtable */
+#define POPT_CBFLAG_SKIPOPTION 0x10000000 /* don't callback with option */
+#define POPT_CBFLAG_CONTINUE 0x08000000 /* continue callbacks with option */
#define POPT_ERROR_NOARG -10
#define POPT_ERROR_BADOPT -11
Name: rpm
%define version 4.0
Version: %{version}
-Release: 0.62
+Release: 0.63
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/rpm-%{version}.tar.gz
Copyright: GPL
%{__prefix}/include/popt.h
%changelog
+* Mon Jul 31 2000 Jeff Johnson <jbj@redhat.com>
+- fix: uniqify dependency problems when printing (#14034).
+- popt: add ability to perform callbacks for every, not just first, match.
+
* Sat Jul 29 2000 Jeff Johnson <jbj@redhat.com>
- bail on firstkey/nextkey, there's a better way.
- link rpm2cpio dynamically since cpio is linked dynamically.