X-Git-Url: http://git.pld-linux.org/?p=packages%2Frpm.git;a=blobdiff_plain;f=rpm-pld-autodep.patch;h=a64ff1fc73bb7551facfb28de5a681a27dcd769e;hp=a6301ee74838999b3da909ad73999d51f786bba5;hb=1da879ec9c0232219daf532c1baeb13a525cd4c1;hpb=5f8c53f093e2a3c369890771bf3e3912247e09f4 diff --git a/rpm-pld-autodep.patch b/rpm-pld-autodep.patch index a6301ee..a64ff1f 100644 --- a/rpm-pld-autodep.patch +++ b/rpm-pld-autodep.patch @@ -1,6 +1,5 @@ -diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c ---- rpm-4.3.orig/build/rpmfc.c 2004-01-16 14:21:42.283166337 +0100 -+++ rpm-4.3/build/rpmfc.c 2004-01-16 14:38:10.000000000 +0100 +--- rpm-4.3/build/rpmfc.c.orig Wed May 19 11:30:29 2004 ++++ rpm-4.3/build/rpmfc.c Wed May 19 17:03:01 2004 @@ -1,6 +1,7 @@ #include "system.h" @@ -18,11 +17,11 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c #if HAVE_GELF_H #include -@@ -301,6 +304,57 @@ +@@ -301,14 +304,83 @@ return buf; }; -+regex_t * rpmfcExpandRegexps(const char * str,int *count){ ++static regex_t * rpmfcExpandRegexps(const char * str,int *count){ + int i,j,r; + const char *s; + ARGV_t patterns=NULL; @@ -49,8 +48,8 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c + if (r==0) j++; + else { + rpmMessage(RPMMESS_NORMAL, -+ "Compilation of regular expresion '%s'" -+ " (expanded from '%s') failed. Skipping it.\n", ++ _("Compilation of regular expresion '%s'" ++ " (expanded from '%s') failed. Skipping it.\n"), + patterns[i],str); + } + } @@ -64,7 +63,22 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c + return compiled; +} + -+regex_t * rpmfcFreeRegexps(regex_t *regexps,int count){ ++static int rpmfcMatchRegexps(regex_t *regexps, int count, const char *str, char deptype) ++{ ++ int j; ++ for(j = 0; j < count; j++) { ++ rpmMessage(RPMMESS_DEBUG, ++ _("Checking %c: '%s' against _noauto expr. #%i\n"), deptype, str, j); ++ if (!regexec(®exps[j], str, 0, NULL, 0)) { ++ rpmMessage(RPMMESS_NORMAL, ++ _("Skipping %c: '%s' as it matches _noauto expr. #%i\n"), deptype, str, j); ++ return 1; ++ } ++ } ++ return 0; ++} ++ ++static regex_t * rpmfcFreeRegexps(regex_t *regexps,int count){ + int i; + + if (regexps) @@ -76,132 +90,132 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c /** * Run per-interpreter dependency helper. * @param fc file classifier -@@ -326,6 +380,9 @@ - int pac; - int xx; - int i; -+ int noauto_c=0; -+ regex_t *noauto=NULL; -+ int j; - - switch (deptype) { - default: -@@ -334,6 +391,8 @@ - case 'P': - if (fc->skipProv) - return 0; -+ noauto=rpmfcExpandRegexps("%{_noautoprov}",&noauto_c); -+ rpmMessage(RPMMESS_DEBUG, "%i _noautoprov patterns.\n",noauto_c); - xx = snprintf(buf, sizeof(buf), "%%{?__%s_provides}", nsdep); - depsp = &fc->provides; - dsContext = RPMSENSE_FIND_PROVIDES; -@@ -342,6 +401,8 @@ - case 'R': - if (fc->skipReq) - return 0; -+ noauto=rpmfcExpandRegexps("%{_noautoreq}",&noauto_c); -+ rpmMessage(RPMMESS_DEBUG, "%i _noautoreq patterns.\n",noauto_c); - xx = snprintf(buf, sizeof(buf), "%%{?__%s_requires}", nsdep); - depsp = &fc->requires; - dsContext = RPMSENSE_FIND_REQUIRES; -@@ -394,6 +455,16 @@ + * @param deptype 'P' == Provides:, 'R' == Requires:, helper + * @param nsdep class name for interpreter (e.g. "perl") ++ * @param noauto _noauto* regexps ++ * @param noauto_c # of _noauto* regexps + * @return 0 on success + */ +-static int rpmfcHelper(rpmfc fc, unsigned char deptype, const char * nsdep) ++static int rpmfcHelper(rpmfc fc, unsigned char deptype, const char * nsdep, ++ regex_t * noauto, int noauto_c) + /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ + /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/ + { +@@ -394,6 +466,8 @@ } /*@=branchstate@*/ -+ for(j=0;jtracked && deptype == 'P' && *EVR != '\0') { -@@ -422,6 +493,7 @@ - } - sb_stdout = freeStringBuf(sb_stdout); - -+ noauto=rpmfcFreeRegexps(noauto,noauto_c); - return 0; - } - -@@ -637,9 +709,11 @@ +@@ -637,9 +711,16 @@ /** * Extract script dependencies. * @param fc file classifier + * @param findprov 1 to enable provides + * @param findreq 1 to enable requires ++ * @param noautoprov _noautoprov regexps ++ * @param noautoprov_c # of _noautoprov regexps ++ * @param noautoreq _noautoreq regexps ++ * @param noautoreq_c # of _noautoreq regexps * @return 0 on success */ -static int rpmfcSCRIPT(rpmfc fc) -+static int rpmfcSCRIPT(rpmfc fc,int findprov,int findreq) ++static int rpmfcSCRIPT(rpmfc fc, int findprov, int findreq, ++ regex_t *noautoprov, int noautoprov_c, regex_t *noautoreq, int noautoreq_c) /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/ { -@@ -691,7 +765,7 @@ +@@ -691,7 +772,7 @@ *se = '\0'; se++; - if (is_executable) { -+ if (is_executable && findreq) { ++ if (is_executable && findreq && !rpmfcMatchRegexps(noautoreq, noautoreq_c, s, 'R')) { /* Add to package requires. */ ds = rpmdsSingle(RPMTAG_REQUIRENAME, s, "", RPMSENSE_FIND_REQUIRES); xx = rpmdsMerge(&fc->requires, ds); -@@ -718,19 +792,22 @@ +@@ -718,21 +799,22 @@ (void) fclose(fp); if (fc->fcolor->vals[fc->ix] & RPMFC_PERL) { - if (fc->fcolor->vals[fc->ix] & RPMFC_MODULE) -+ if (findprov && fc->fcolor->vals[fc->ix] & RPMFC_MODULE) - xx = rpmfcHelper(fc, 'P', "perl"); +- xx = rpmfcHelper(fc, 'P', "perl"); - if (is_executable || (fc->fcolor->vals[fc->ix] & RPMFC_MODULE)) +- xx = rpmfcHelper(fc, 'R', "perl"); ++ if (findprov && fc->fcolor->vals[fc->ix] & RPMFC_MODULE) ++ xx = rpmfcHelper(fc, 'P', "perl", noautoprov, noautoprov_c); + if (findreq && (is_executable || (fc->fcolor->vals[fc->ix] & RPMFC_MODULE))) - xx = rpmfcHelper(fc, 'R', "perl"); ++ xx = rpmfcHelper(fc, 'R', "perl", noautoreq, noautoreq_c); } if (fc->fcolor->vals[fc->ix] & RPMFC_PYTHON) { - xx = rpmfcHelper(fc, 'P', "python"); +-#ifdef NOTYET - if (is_executable) +-#endif +- xx = rpmfcHelper(fc, 'R', "python"); + if (findprov) -+ xx = rpmfcHelper(fc, 'P', "python"); -+ if (findreq && is_executable) - xx = rpmfcHelper(fc, 'R', "python"); ++ xx = rpmfcHelper(fc, 'P', "python", noautoprov, noautoprov_c); ++ if (findreq) ++ xx = rpmfcHelper(fc, 'R', "python", noautoreq, noautoreq_c); } if (fc->fcolor->vals[fc->ix] & RPMFC_PHP) { -+ if (findprov) - xx = rpmfcHelper(fc, 'P', "php"); +- xx = rpmfcHelper(fc, 'P', "php"); - xx = rpmfcHelper(fc, 'R', "php"); ++ if (findprov) ++ xx = rpmfcHelper(fc, 'P', "php", noautoprov, noautoprov_c); + if (findreq) -+ xx = rpmfcHelper(fc, 'R', "php"); ++ xx = rpmfcHelper(fc, 'R', "php", noautoreq, noautoreq_c); } return 0; -@@ -739,9 +816,11 @@ +@@ -739,9 +823,16 @@ /** * Extract Elf dependencies. * @param fc file classifier + * @param findprov 1 to enable provides + * @param findreq 1 to enable requires ++ * @param noautoprov _noautoprov regexps ++ * @param noautoprov_c # of _noautoprov regexps ++ * @param noautoreq _noautoreq regexps ++ * @param noautoreq_c # of _noautoreq regexps * @return 0 on success */ -static int rpmfcELF(rpmfc fc) -+static int rpmfcELF(rpmfc fc,int findprov,int findreq) ++static int rpmfcELF(rpmfc fc, int findprov, int findreq, ++ regex_t *noautoprov, int noautoprov_c, regex_t *noautoreq, int noautoreq_c) /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/ { -@@ -853,17 +932,19 @@ +@@ -844,26 +935,31 @@ + && !(filter_GLIBC_PRIVATE != 0 + && !strcmp(s, "GLIBC_PRIVATE"))) + { ++ int doauto; ++ + buf[0] = '\0'; + t = buf; + t = stpcpy( stpcpy( stpcpy( stpcpy(t, soname), "("), s), ")"); + ++ doauto = findprov && !rpmfcMatchRegexps(noautoprov, noautoprov_c, buf, 'P'); + #if !defined(__alpha__) + if (isElf64) t = stpcpy(t, "(64bit)"); #endif t++; + -+ if (findprov) { ++ if (doauto) { + /* Add to package provides. */ + ds = rpmdsSingle(RPMTAG_PROVIDES, + buf, "", RPMSENSE_FIND_PROVIDES); + xx = rpmdsMerge(&fc->provides, ds); ++ ++ /* Add to file dependencies. */ ++ xx = rpmfcSaveArg(&fc->ddict, ++ rpmfcFileDep(t, fc->ix, ds)); - /* Add to package provides. */ - ds = rpmdsSingle(RPMTAG_PROVIDES, @@ -211,17 +225,27 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c - /* Add to file dependencies. */ - xx = rpmfcSaveArg(&fc->ddict, - rpmfcFileDep(t, fc->ix, ds)); -+ /* Add to file dependencies. */ -+ xx = rpmfcSaveArg(&fc->ddict, -+ rpmfcFileDep(t, fc->ix, ds)); - +- - ds = rpmdsFree(ds); + ds = rpmdsFree(ds); + } } auxoffset += aux->vda_next; } -@@ -914,15 +995,17 @@ +@@ -904,25 +1000,30 @@ + && !(filter_GLIBC_PRIVATE != 0 + && !strcmp(s, "GLIBC_PRIVATE"))) + { ++ int doauto; ++ + buf[0] = '\0'; + t = buf; + t = stpcpy( stpcpy( stpcpy( stpcpy(t, soname), "("), s), ")"); + ++ doauto = findreq && !rpmfcMatchRegexps(noautoreq, noautoreq_c, buf, 'R'); + #if !defined(__alpha__) + if (isElf64) + t = stpcpy(t, "(64bit)"); #endif t++; @@ -229,16 +253,17 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c - ds = rpmdsSingle(RPMTAG_REQUIRENAME, - buf, "", RPMSENSE_FIND_REQUIRES); - xx = rpmdsMerge(&fc->requires, ds); -+ if (findreq) { -+ /* Add to package dependencies. */ -+ ds = rpmdsSingle(RPMTAG_REQUIRENAME, -+ buf, "", RPMSENSE_FIND_REQUIRES); -+ xx = rpmdsMerge(&fc->requires, ds); - +- - /* Add to file dependencies. */ - xx = rpmfcSaveArg(&fc->ddict, - rpmfcFileDep(t, fc->ix, ds)); - ds = rpmdsFree(ds); ++ if (doauto) { ++ /* Add to package dependencies. */ ++ ds = rpmdsSingle(RPMTAG_REQUIRENAME, ++ buf, "", RPMSENSE_FIND_REQUIRES); ++ xx = rpmdsMerge(&fc->requires, ds); ++ + /* Add to file dependencies. */ + xx = rpmfcSaveArg(&fc->ddict, + rpmfcFileDep(t, fc->ix, ds)); @@ -247,15 +272,23 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c } auxoffset += aux->vna_next; } -@@ -947,6 +1030,7 @@ +@@ -947,23 +1048,30 @@ /* Files with executable bit set only. */ if (fc->skipReq || !(st->st_mode & (S_IXUSR|S_IXGRP|S_IXOTH))) /*@innercontinue@*/ continue; -+ if (!findreq) continue; ++ if (!findreq) ++ continue; /* Add to package requires. */ depsp = &fc->requires; tagN = RPMTAG_REQUIRENAME; -@@ -959,6 +1043,7 @@ + dsContext = RPMSENSE_FIND_REQUIRES; + s = elf_strptr(elf, shdr->sh_link, dyn->d_un.d_val); + assert(s != NULL); ++ if(rpmfcMatchRegexps(noautoreq, noautoreq_c, s, 'R')) ++ continue; + /*@switchbreak@*/ break; + case DT_SONAME: + gotSONAME = 1; /* Add to package provides. */ if (fc->skipProv) /*@innercontinue@*/ continue; @@ -263,29 +296,54 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c depsp = &fc->provides; tagN = RPMTAG_PROVIDENAME; dsContext = RPMSENSE_FIND_PROVIDES; -@@ -997,7 +1082,7 @@ + s = elf_strptr(elf, shdr->sh_link, dyn->d_un.d_val); + assert(s != NULL); ++ if(rpmfcMatchRegexps(noautoprov, noautoprov_c, s, 'P')) ++ continue; + /*@switchbreak@*/ break; + } + if (s == NULL) +@@ -997,7 +1105,7 @@ /*@=branchstate =uniondef @*/ /* For DSO's, provide the basename of the file if DT_SONAME not found. */ -- if (!fc->skipProv && isDSO && !gotSONAME) { -+ if (findprov && !fc->skipProv && isDSO && !gotSONAME) { +- if (!fc->skipProv && isDSO && !gotDEBUG && !gotSONAME) { ++ if (findprov && !fc->skipProv && isDSO && !gotDEBUG && !gotSONAME) { depsp = &fc->provides; tagN = RPMTAG_PROVIDENAME; dsContext = RPMSENSE_FIND_PROVIDES; -@@ -1045,7 +1130,7 @@ +@@ -1015,6 +1123,8 @@ + t = stpcpy(t, s); + /*@=nullpass@*/ + ++ if(!rpmfcMatchRegexps(noautoprov, noautoprov_c, buf, 'P')) { ++ + #if !defined(__alpha__) + if (isElf64) + t = stpcpy(t, "()(64bit)"); +@@ -1032,6 +1142,7 @@ + /*@=boundswrite@*/ + + ds = rpmdsFree(ds); ++ } + } + + exit: +@@ -1045,7 +1156,8 @@ } typedef struct rpmfcApplyTbl_s { - int (*func) (rpmfc fc); -+ int (*func) (rpmfc fc,int findprov,int findreq); ++ int (*func) (rpmfc fc, int findprov, int findreq, ++ regex_t *noautoprov, int noautoprov_c, regex_t *noautoreq, int noautoreq_c); int colormask; } * rpmfcApplyTbl; -@@ -1058,6 +1143,109 @@ +@@ -1058,6 +1170,109 @@ { NULL, 0 } }; -+int rpmfcFindRequiredPackages(rpmfc fc) ++static int rpmfcFindRequiredPackages(rpmfc fc) +{ + rpmts ts=NULL; + const char * s; @@ -308,11 +366,11 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c + regex_t *noautoreqdep; + int noautoreqdep_c; + -+ noautoreqdep=rpmfcExpandRegexps("%{_noautoreqdep}",&noautoreqdep_c); ++ noautoreqdep=rpmfcExpandRegexps("%{__noautoreqdep}", &noautoreqdep_c); + + ts = rpmtsCreate(); /* XXX ts created in main() should be used */ + -+ rpmMessage(RPMMESS_NORMAL, "Searching for required packages....\n"); ++ rpmMessage(RPMMESS_NORMAL, _("Searching for required packages....\n")); + + nddict = argvCount(fc->ddict); + previx = -1; @@ -336,31 +394,31 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c + + if (deptype!='R') continue; + -+ rpmMessage(RPMMESS_DEBUG, "#%i requires: %s,%s,%i\n",ix,N,EVR,Flags); ++ rpmMessage(RPMMESS_DEBUG, _("#%i requires: %s,%s,%i\n"),ix,N,EVR,Flags); + if (EVR && EVR[0]) { -+ rpmMessage(RPMMESS_DEBUG, "skipping #%i require\n"); ++ rpmMessage(RPMMESS_DEBUG, _("skipping #%i require\n")); + continue; + } + for(j=0;j not found\n",N); ++ rpmMessage(RPMMESS_DEBUG, _("%s -> not found\n"),N); + continue; + } -+ rpmMessage(RPMMESS_DEBUG, "Iterator: %p\n",it); ++ rpmMessage(RPMMESS_DEBUG, _("Iterator: %p\n"),it); + if (rpmdbGetIteratorCount(it)>1) { -+ rpmMessage(RPMMESS_DEBUG, "%s -> multiple (skipping)\n",N); ++ rpmMessage(RPMMESS_DEBUG, _("%s -> multiple (skipping)\n"),N); + rpmdbFreeIterator(it); + continue; + } @@ -369,7 +427,7 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c + r=rpmHeaderGetEntry(hdr,RPMTAG_NAME,NULL,(void **)&hname, NULL); + assert(r<2); + if (!strcmp(hname,N)) { -+ rpmMessage(RPMMESS_DEBUG, "%s -> %s (skipping)\n",N,hname); ++ rpmMessage(RPMMESS_DEBUG, _("%s -> %s (skipping)\n"),N,hname); + rpmdbFreeIterator(it); + continue; + } @@ -391,68 +449,240 @@ diff -dur rpm-4.3.orig/build/rpmfc.c rpm-4.3/build/rpmfc.c int rpmfcApply(rpmfc fc) { rpmfcApplyTbl fcat; -@@ -1075,6 +1263,21 @@ +@@ -1075,6 +1290,29 @@ int ix; int i; int xx; + int j; + int findprov; + int findreq; -+ regex_t *noautoreqfiles=NULL; -+ int noautoreqfiles_c; -+ regex_t *noautoprovfiles=NULL; ++ regex_t *noautoprovfiles = NULL; + int noautoprovfiles_c; ++ regex_t *noautoreqfiles = NULL; ++ int noautoreqfiles_c; ++ regex_t *noautoprov = NULL; ++ int noautoprov_c; ++ regex_t *noautoreq = NULL; ++ int noautoreq_c; + const char *buildroot; + int buildroot_l; + -+ buildroot=rpmExpand("%{buildroot}",NULL); -+ buildroot_l=strlen(buildroot); ++ buildroot = rpmExpand("%{buildroot}",NULL); ++ buildroot_l = strlen(buildroot); + -+ noautoreqfiles=rpmfcExpandRegexps("%{_noautoreqfiles}",&noautoreqfiles_c); -+ noautoprovfiles=rpmfcExpandRegexps("%{_noautoprovfiles}",&noautoprovfiles_c); ++ noautoprovfiles = rpmfcExpandRegexps("%{__noautoprovfiles}", &noautoprovfiles_c); ++ noautoreqfiles = rpmfcExpandRegexps("%{__noautoreqfiles}", &noautoreqfiles_c); ++ noautoprov = rpmfcExpandRegexps("%{__noautoprov}", &noautoprov_c); ++ noautoreq = rpmfcExpandRegexps("%{__noautoreq}", &noautoreq_c); ++ rpmMessage(RPMMESS_DEBUG, _("%i _noautoprov patterns.\n"), noautoprov_c); ++ rpmMessage(RPMMESS_DEBUG, _("%i _noautoreq patterns.\n"), noautoreq_c); /* Generate package and per-file dependencies. */ for (fc->ix = 0; fc->fn[fc->ix] != NULL; fc->ix++) { -@@ -1082,10 +1285,41 @@ +@@ -1082,10 +1320,44 @@ for (fcat = rpmfcApplyTable; fcat->func != NULL; fcat++) { if (!(fc->fcolor->vals[fc->ix] & fcat->colormask)) /*@innercontinue@*/ continue; - xx = (*fcat->func) (fc); -+ findprov=1; -+ findreq=1; ++ findprov = 1; ++ findreq = 1; + if (strncmp(fc->fn[fc->ix],buildroot,buildroot_l)==0) {/* sanity check */ -+ for(j=0;jfn[fc->ix]+buildroot_l,0,NULL,0)) { -+ rpmMessage(RPMMESS_NORMAL, -+ "skipping %s provides detection" -+ " (matches noautoprovfiles pattern #%i)\n", -+ fc->fn[fc->ix],j); -+ findprov=0; ++ fc->fn[fc->ix] + buildroot_l, 0, NULL, 0)) { ++ rpmMessage(RPMMESS_NORMAL, ++ _("skipping %s provides detection" ++ " (matches noautoprovfiles pattern #%i)\n"), ++ fc->fn[fc->ix], j); ++ findprov = 0; + break; + } + } -+ for(j=0;jfn[fc->ix]+buildroot_l,0,NULL,0)) { -+ rpmMessage(RPMMESS_NORMAL, -+ "skipping %s requires detection" -+ " (matches noautoreqfiles pattern #%i)\n", -+ fc->fn[fc->ix],j); -+ findreq=0; ++ fc->fn[fc->ix] + buildroot_l, 0, NULL, 0)) { ++ rpmMessage(RPMMESS_NORMAL, ++ _("skipping %s requires detection" ++ " (matches noautoreqfiles pattern #%i)\n"), ++ fc->fn[fc->ix], j); ++ findreq = 0; + break; + } + } + } -+ xx = (*fcat->func) (fc,findprov,findreq); ++ xx = (*fcat->func) (fc, findprov, findreq, ++ noautoprov, noautoprov_c, noautoreq, noautoreq_c); } } -+ noautoreqfiles=rpmfcFreeRegexps(noautoreqfiles,noautoreqfiles_c); -+ noautoprovfiles=rpmfcFreeRegexps(noautoprovfiles,noautoprovfiles_c); -+ ++ noautoprovfiles = rpmfcFreeRegexps(noautoprovfiles, noautoprovfiles_c); ++ noautoreqfiles = rpmfcFreeRegexps(noautoreqfiles, noautoreqfiles_c); ++ noautoprov = rpmfcFreeRegexps(noautoprov, noautoprov_c); ++ noautoreq = rpmfcFreeRegexps(noautoreq, noautoreq_c); ++#ifdef AUTODEP_PKGNAMES /* define to use package names in R */ + rpmfcFindRequiredPackages(fc); -+ ++#endif /*@-boundswrite@*/ /* Generate per-file indices into package dependencies. */ nddict = argvCount(fc->ddict); +--- rpm-4.3/po/POTFILES.in.orig 2004-01-04 03:13:02.000000000 +0100 ++++ rpm-4.3/po/POTFILES.in 2004-02-01 21:05:50.567248776 +0100 +@@ -22,6 +22,7 @@ + build/parseSpec.c + build/poptBT.c + build/reqprov.c ++build/rpmfc.c + build/spec.c + lib/cpio.c + lib/depends.c +--- rpm-4.3/po/pl.po.orig 2004-02-01 20:53:10.000000000 +0100 ++++ rpm-4.3/po/pl.po 2004-02-01 21:20:36.532561576 +0100 +@@ -1295,6 +1295,127 @@ + msgid "lookup i18N strings in specfile catalog" + msgstr "wyszukaj wpisy I18N w katalogu pliku spec" + ++#: build/rpmfc.c:94 ++#, c-format ++msgid "\texecv(%s) pid %d\n" ++msgstr "\texecv(%s) pid %d\n" ++ ++#. XXX this error message is probably not seen. ++#: build/rpmfc.c:100 ++#, c-format ++msgid "Couldn't exec %s: %s\n" ++msgstr "Nie mo¿na uruchomiæ %s: %s\n" ++ ++#: build/rpmfc.c:105 ++#, c-format ++msgid "Couldn't fork %s: %s\n" ++msgstr "Nie mo¿na wykonaæ fork %s: %s\n" ++ ++#: build/rpmfc.c:190 ++#, c-format ++msgid "\twaitpid(%d) rc %d status %x\n" ++msgstr "\twaitpid(%d) rc %d status %x\n" ++ ++#: build/rpmfc.c:194 ++#, c-format ++msgid "%s failed\n" ++msgstr "%s nie powiod³o siê\n" ++ ++#: build/rpmfc.c:198 ++#, c-format ++msgid "failed to write all data to %s\n" ++msgstr "Nie uda³o siê zapisaæ wszystkich danych do %s\n" ++ ++#: build/rpmfc.c:334 ++#, c-format ++msgid "Compilation of regular expresion '%s' (expanded from '%s') failed. Skipping it.\n" ++msgstr "Kompilacja wyra¿enia regularnego '%s' (powsta³ego z '%s') nie powiod³a siê; pominiêto.\n" ++ ++#: build/rpmfc.c:395 ++#, c-format ++msgid "%i _noautoprov patterns.\n" ++msgstr "%i wzorców _noautoprov.\n" ++ ++#: build/rpmfc.c:405 ++#, c-format ++msgid "%i _noautoreq patterns.\n" ++msgstr "%i wzorców _noautoreq.\n" ++ ++#: build/rpmfc.c:459 ++#, c-format ++msgid "Checking %c: '%s' against _noauto expr. #%i\n" ++msgstr "Sprawdzanie %c: '%s' z wyra¿eniem _noauto #%i\n" ++ ++#: build/rpmfc.c:462 ++#, c-format ++msgid "Skipping %c: '%s' as it matches _noauto expr. #%i\n" ++msgstr "Pominiêto %c: '%s' pasuj±ce do wyra¿enia _noauto #%i\n" ++ ++#. XXX ts created in main() should be used ++#: build/rpmfc.c:1173 ++msgid "Searching for required packages....\n" ++msgstr "Poszukiwanie wymaganych pakietów...\n" ++ ++#: build/rpmfc.c:1197 ++#, c-format ++msgid "#%i requires: %s,%s,%i\n" ++msgstr "#%i wymaga: %s,%s,%i\n" ++ ++#: build/rpmfc.c:1199 ++#, c-format ++msgid "skipping #%i require\n" ++msgstr "pominiêto zale¿no¶æ #%i\n" ++ ++#: build/rpmfc.c:1205 ++#, c-format ++msgid "skipping %s requirement processing (matches noautoreqdep pattern #%i)\n" ++msgstr "pominiêto przetwarzanie zale¿no¶ci %s (pasuje do wzorca noautoreqdep #%i)\n" ++ ++#: build/rpmfc.c:1211 ++#, c-format ++msgid "skipping #%i require (is file requirement)\n" ++msgstr "pominiêto zale¿no¶æ #%i (zale¿no¶æ od pliku)\n" ++ ++#: build/rpmfc.c:1216 ++#, c-format ++msgid "%s -> not found\n" ++msgstr "%s -> nie znaleziono\n" ++ ++#: build/rpmfc.c:1219 ++#, c-format ++msgid "Iterator: %p\n" ++msgstr "Iterator: %p\n" ++ ++#: build/rpmfc.c:1221 ++#, c-format ++msgid "%s -> multiple (skipping)\n" ++msgstr "%s -> wiele (pominiêto)\n" ++ ++#: build/rpmfc.c:1230 ++#, c-format ++msgid "%s -> %s (skipping)\n" ++msgstr "%s -> %s (pominiêto)\n" ++ ++#: build/rpmfc.c:1295 ++#, c-format ++msgid "skipping %s provides detection (matches noautoprovfiles pattern #%i)\n" ++msgstr "pominiêto wykrywanie w³asno¶ci %s (pasuje do wzorca noautoprovfiles #%i)\n" ++ ++#: build/rpmfc.c:1306 ++#, c-format ++msgid "skipping %s requires detection (matches noautoreqfiles pattern #%i)\n" ++msgstr "pominiêto wykrywanie w³asno¶ci %s (pasuje do wzorca noautoreqfiles #%i)\n" ++ ++#: build/rpmfc.c:1642 ++#, c-format ++msgid "Finding %s: %s\n" ++msgstr "Poszukiwanie %s: %s\n" ++ ++#: build/rpmfc.c:1648 build/rpmfc.c:1657 ++#, c-format ++msgid "Failed to find %s:\n" ++msgstr "Nie uda³o siê odnale¼æ %s:\n" ++ + #: build/spec.c:237 + #, c-format + msgid "line %d: Bad number: %s\n" +--- rpm/configure.ac.orig 2004-08-22 13:02:30.000000000 +0200 ++++ rpm/configure.ac 2004-08-22 13:25:37.000000000 +0200 +@@ -971,6 +971,18 @@ + AC_SUBST(__CHGRP_RHF) + + dnl ++dnl enable generating autorequires containing packages names ++dnl ++AC_ARG_ENABLE([adding-packages-names-in-autogenerated-dependancies], ++ [ --enable-adding-packages-names-in-autogenerated-dependancies Add packages names for autogenerated dependancies to requires], ++ ++ AC_MSG_RESULT([Using packages names in autogerated requires is enabled]) ++ AC_DEFINE(AUTODEP_PKGNAMES, 1, "Generating autorequires containing packages names.") ++ ++ ) ++ ++ ++dnl + dnl figure out what root's primary group is + dnl + AC_MSG_CHECKING(root's primary group)