aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rpmtools.pm1
-rw-r--r--rpmtools.spec5
2 files changed, 5 insertions, 1 deletions
diff --git a/rpmtools.pm b/rpmtools.pm
index 8b194d3..b3bc6d9 100644
--- a/rpmtools.pm
+++ b/rpmtools.pm
@@ -79,6 +79,7 @@ sub compute_depslist {
my @requires = keys %requires;
while (my $req = shift @requires) {
+ $req eq 'basesystem' and next; #- never need to requires basesystem directly as always required! what a speed up!
ref $req or $req = $params->{provides}{$req} || ($req =~ /rpmlib\(/ ? [] :
[ ($req !~ /NOTFOUND_/ && "NOTFOUND_") . $req ]);
if (@$req > 1) {
diff --git a/rpmtools.spec b/rpmtools.spec
index 8001c65..0c92e8a 100644
--- a/rpmtools.spec
+++ b/rpmtools.spec
@@ -1,5 +1,5 @@
%define name rpmtools
-%define release 1mdk
+%define release 2mdk
# do not modify here, see Makefile in the CVS
%define version 2.0
@@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Oct 19 2000 François Pons <fpons@mandrakesoft.com> 2.0-2mdk
+- fixed speed problem of rpmtools depslist computation, now 10x faster!
+
* Thu Oct 19 2000 Frederic Lepied <flepied@mandrakesoft.com> 2.0-1mdk
- updated for rpm 4.