aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-07-24 12:36:52 +0000
committerFrancois Pons <fpons@mandriva.com>2002-07-24 12:36:52 +0000
commit4cf5682cf59a7547e263b74b744515597aec873e (patch)
tree09e915d7844aa63aa26b7814ec0fe8c2d834e14d /URPM.xs
parent9a3a55e34e01d4dba1eb5a09ba25eb3c59101173 (diff)
downloadperl-URPM-4cf5682cf59a7547e263b74b744515597aec873e.tar
perl-URPM-4cf5682cf59a7547e263b74b744515597aec873e.tar.gz
perl-URPM-4cf5682cf59a7547e263b74b744515597aec873e.tar.bz2
perl-URPM-4cf5682cf59a7547e263b74b744515597aec873e.tar.xz
perl-URPM-4cf5682cf59a7547e263b74b744515597aec873e.zip
0.50-4mdk
Diffstat (limited to 'URPM.xs')
-rw-r--r--URPM.xs15
1 files changed, 9 insertions, 6 deletions
diff --git a/URPM.xs b/URPM.xs
index b87f7d5..5486ac0 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -406,14 +406,11 @@ update_provides(URPM__Package pkg, HV *provides) {
if (list) {
for (i = 0; i < count; ++i) {
len = strlen(list[i]);
- if (!strncmp(list[i], "rpmlib(", 7)) continue;
if (list[i][0] == '/') hv_fetch(provides, list[i], len, 1);
}
}
/* update all provides */
- /* headerGetEntry(pkg->h, RPMTAG_PROVIDEVERSION, &type, (void **) &list_evr, &count);
- headerGetEntry(pkg->h, RPMTAG_PROVIDEFLAGS, &type, (void **) &flags, &count); */
headerGetEntry(pkg->h, RPMTAG_PROVIDENAME, &type, (void **) &list, &count);
if (list) {
for (i = 0; i < count; ++i) {
@@ -423,15 +420,21 @@ update_provides(URPM__Package pkg, HV *provides) {
}
}
} else {
- char *ps, *s;
+ char *ps, *s, *es;
if ((s = pkg->requires) != NULL && *s != 0) {
ps = strchr(s, '@');
while(ps != NULL) {
- if (s[0] == '/') hv_fetch(provides, s, ps-s, 1);
+ if (s[0] == '/') {
+ *ps = 0; es = strchr(s, '['); if (!es) es = strchr(s, ' '); *ps = '@';
+ hv_fetch(provides, s, es != NULL ? es-s : ps-s, 1);
+ }
s = ps + 1; ps = strchr(s, '@');
}
- if (s[0] == '/') hv_fetch(provides, s, strlen(s), 1);
+ if (s[0] == '/') {
+ es = strchr(s, '['); if (!es) es = strchr(s, ' ');
+ hv_fetch(provides, s, es != NULL ? es-s : strlen(s), 1);
+ }
}
if ((s = pkg->provides) != NULL && *s != 0) {