diff options
author | Francois Pons <fpons@mandriva.com> | 2001-06-25 16:41:39 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-06-25 16:41:39 +0000 |
commit | 7ce6b8500c1e8dbf243c46324e549f278819455d (patch) | |
tree | 12677fb71c58e5191bc9a9705124d45d4e7730ab | |
parent | 6209217b87298a88b2d183a8e3c877772f09b99c (diff) | |
download | urpmi-7ce6b8500c1e8dbf243c46324e549f278819455d.tar urpmi-7ce6b8500c1e8dbf243c46324e549f278819455d.tar.gz urpmi-7ce6b8500c1e8dbf243c46324e549f278819455d.tar.bz2 urpmi-7ce6b8500c1e8dbf243c46324e549f278819455d.tar.xz urpmi-7ce6b8500c1e8dbf243c46324e549f278819455d.zip |
new algorithm for searching packages.
-rw-r--r-- | urpm.pm | 112 | ||||
-rwxr-xr-x | urpmi | 2 | ||||
-rw-r--r-- | urpmi.spec | 6 | ||||
-rwxr-xr-x | urpmi.update | 5 | ||||
-rwxr-xr-x | urpmq | 9 |
5 files changed, 89 insertions, 45 deletions
@@ -419,7 +419,7 @@ sub build_synthesis_hdlist { #- computational of base files. #- allow options : #- all -> all medium are rebuilded -#- force -> try to force rebuilding from rpms files. +#- force -> try to force rebuilding base files (1) or hdlist from rpms files (2). #- noclean -> keep header directory cleaned. sub update_media { my ($urpm, %options) = @_; #- do not trust existing hdlist and try to recompute them. @@ -453,7 +453,7 @@ sub update_media { system("cp", "-a", "$dir/../descriptions", "$urpm->{statedir}/descriptions.$medium->{name}"); #- if the source hdlist is present and we are not forcing using rpms file - if (!$options{force} && $medium->{with_hdlist} && -e "$dir/$medium->{with_hdlist}") { + if ($options{force} < 2 && $medium->{with_hdlist} && -e "$dir/$medium->{with_hdlist}") { unlink "$urpm->{cachedir}/partial/$medium->{hdlist}"; system("cp", "-a", "$dir/$medium->{with_hdlist}", "$urpm->{cachedir}/partial/$medium->{hdlist}"); @@ -506,7 +506,7 @@ sub update_media { #- try to sync (copy if needed) local copy after restored the previous one. unlink "$urpm->{cachedir}/partial/$basename"; - $options{force} || ! -e "$urpm->{statedir}/$medium->{hdlist}" or + $options{force} >= 2 || ! -e "$urpm->{statedir}/$medium->{hdlist}" or system("cp", "-a", "$urpm->{statedir}/$medium->{hdlist}", "$urpm->{cachedir}/partial/$basename"); system("wget", "-NP", "$urpm->{cachedir}/partial", "$medium->{url}/$medium->{with_hdlist}"); $? == 0 or $error = 1, $urpm->{error}(_("wget of [%s] failed (maybe wget is missing?)", @@ -603,7 +603,7 @@ sub update_media { $urpm->{modified} = 0; } - if (!$options{force} && @{$urpm->{media}} == 1 && $urpm->{media}[0]{with_hdlist}) { + if ($options{force} < 1 && @{$urpm->{media}} == 1 && $urpm->{media}[0]{with_hdlist}) { #- this is a special mode where is only one hdlist using a source hdlist, in such #- case we are searching for source depslist, provides and compss files. #- if they are not found or if force is used, an error message is printed and @@ -840,58 +840,94 @@ sub register_local_packages { #- search packages registered by their name by storing their id into packages hash. sub search_packages { my ($urpm, $packages, $names, %options) = @_; - my (%exact, %found, %foundi); + my (%exact, %exact_a, %exact_ra, %found, %foundi); foreach my $v (@$names) { #- it is a way of speedup, providing the name of a package directly help #- to find the package. #- this is necessary if providing a name list of package to upgrade. if ($urpm->{params}{info}{$v}) { - $exact{$v} = $urpm->{params}{info}{$v}; next; + $exact{$v} = $urpm->{params}{info}{$v}{id}; + next; } my $qv = quotemeta $v; - foreach (keys %{$urpm->{params}{info}}) { - my $info = $urpm->{params}{info}{$_}; - my $pack = $info->{name} .'-'. $info->{version} .'-'. $info->{release}; - $pack =~ /^$qv(?:-[^-]+)?$/ and $exact{$v} = $info, next; - $pack =~ /$qv/ and push @{$found{$v}}, $info; - $pack =~ /$qv/i and push @{$foundi{$v}}, $info; + if ($options{use_provides}) { + #- try to search through provides. + if (my $provide_v = $urpm->{params}{provides}{$v}) { + if (@{$provide_v} == 1 && $urpm->{params}{info}{$provide_v->[0]}) { + #- we assume that if the there is only one package providing the resource exactly, + #- this should be the best one that is described. + $exact{$v} = $urpm->{params}{info}{$provide_v->[0]}{id}; + next; + } + } + + foreach (keys %{$urpm->{params}{provides}}) { + #- search through provides to find if a provide match this one. + /$qv/ and push @{$found{$v}}, map { $urpm->{params}{info}{$_}{id} } @{$urpm->{params}{provides}{$_}}; + /$qv/i and push @{$found{$v}}, map { $urpm->{params}{info}{$_}{id} } @{$urpm->{params}{provides}{$_}}; + } + } + + my $id = 0; + foreach my $info (@{$urpm->{params}{depslist}}) { + my $pack_ra = "$info->{name}-$info->{version}"; + my $pack_a = "$pack_ra-$info->{release}"; + my $pack = "$pack_a.$info->{arch}"; + + if ($pack eq $v) { + $exact{$v} = $id; + next; + } elsif ($pack_a eq $v) { + push @{$exact_a{$v}}, $id; + next; + } elsif ($pack_ra eq $v) { + push @{$exact_ra{$v}}, $id; + next; + } + + $pack =~ /$qv/ and push @{$found{$v}}, $id; + $pack =~ /$qv/i and push @{$foundi{$v}}, $id; + + ++$id; } } my $result = 1; foreach (@$names) { - my $info = $exact{$_}; - if ($info) { - $packages->{$info->{id}} = undef; + if (defined $exact{$_}) { + $packages->{$exact{$_}} = undef; } else { - my $l = $found{$_} || $foundi{$_}; - if (@{$l || []} == 0) { - my ($name, $version, $release) = /(.*)-([^-]*)-([^-]*)/; - $urpm->{params}{info}{$1} or ($name, $version, $release) = /(.*)-([^-]*)/; - $urpm->{params}{info}{$1} or ($name, $version, $release) = (); - if ($name) { - my $ipkg; - foreach (0..$#{$urpm->{params}{depslist}}) { - my $pkg = $urpm->{params}{depslist}[$_]; - if ($pkg->{name} eq $name && $pkg->{version} eq $version && $pkg->{release} eq $release) { - $packages->{$_} = undef; - $ipkg = $_; - last; + #- at this level, we need to search the best package given for a given name, + #- always prefer alread found package. + my %l; + foreach (@{$exact_a{$_} || $exact_ra{$_} || $found{$_} || $foundi{$_} || []}) { + my $info = $urpm->{params}{depslist}[$_]; + push @{$l{$info->{name}}}, { id => $_, info => $info }; + } + if (values(%l) == 0) { + $urpm->{error}(_("no package named %s", $_)); + $result = 0; + } elsif (values(%l) > 1 && !$options{all}) { + $urpm->{error}(_("The following packages contain %s: %s", $_, join(' ', keys %l))); + $result = 0; + } else { + foreach (values %l) { + my $best; + foreach (@$_) { + if ($best) { + my $cmp_version = rpmtools::version_compare($_->{info}{version}, $best->{info}{version}); + if ($cmp_version > 0 || + $cmp_version == 0 && rpmtools::version_compare($_->{info}{release}, $best->{info}{release}) > 0) { + $best = $_; + } + } else { + $best = $_; } } - defined $ipkg or ($name, $version, $release) = (); - } - unless ($name) { - $urpm->{error}(_("no package named %s", $_)); $result = 0; - } - } elsif (@$l > 1 && !$options{all}) { - $urpm->{error}(_("The following packages contain %s: %s", $_, join(' ', map { $_->{name} } @$l))); $result = 0; - } else { - foreach (@$l) { - $packages->{$_->{id}} = undef; + $packages->{$best->{id}} = undef; } } } @@ -163,7 +163,7 @@ $urpm->relocate_depslist; my %packages; $urpm->search_packages(\%packages, [ ($minimal || !$urpm->{params}{info}{basesystem} ? () : ('basesystem')), @names], - all => $all) or $force or exit 1; + all => $all, use_provides => $use_provides) or $force or exit 1; #- filter to add in packages selected required packages. my $ask_choice = sub { @@ -2,7 +2,7 @@ Name: urpmi Version: 1.6 -Release: 2mdk +Release: 3mdk License: GPL Source0: %{name}.tar.bz2 Summary: User mode rpm install @@ -106,6 +106,10 @@ rm -f /var/lib/urpmi/depslist %changelog +* Mon Jun 25 2001 François Pons <fpons@mandrakesoft.com> 1.6-3mdk +- reworked algorithms to search packages, added -p options to + urpmi and urpmq. + * Thu Jun 21 2001 François Pons <fpons@mandrakesoft.com> 1.6-2mdk - finished i18n support for urpmi.*media. diff --git a/urpmi.update b/urpmi.update index 0342d96f..34151028 100755 --- a/urpmi.update +++ b/urpmi.update @@ -27,17 +27,18 @@ import urpm _; sub main { my (@toupdates, %options); + $options{force} = 0; $options{noclean} = 1; foreach (@_) { /^--?a/ and $options{all} = 1, next; /^--?c/ and $options{noclean} = 0, next; - /^--?f/ and $options{force} = 1, next; + /^--?f/ and ++$options{force}, next; /^--?noa/ and next; #- default, keeped for compability. /^-/ and die _("usage: urpmi.update [-a] <name> ... where <name> is a medium name to update. -a select all non-removable media. -c clean headers cache directory. - -f force generation of hdlist or base files. + -f force generation of base files, use another -f for hdlist files. \nunknown options '%s'\n", $_); push @toupdates, $_; } @@ -46,6 +46,7 @@ usage: -M - extend query to package dependancies and remove already installed package only if they are newer or the same. -c - choose complete method for resolving requires closure. + -p - allow search in provides to find package. -g - print groups too with name. -r - print version and release too with name. @@ -76,6 +77,7 @@ for (@ARGV) { /M/ and do { $query->{minimal} = 0; next }; /c/ and do { $query->{complete} = 1; next }; /g/ and do { $query->{group} = 1; next }; + /p/ and do { $query->{use_provides} = 1; next }; /v/ and do { $query->{verbose} = 1; next }; /r/ and do { $query->{version} = $query->{release} = 1; next }; print STDERR _("urpmq: unknown option \"-%s\", check usage with --help\n", $1); exit(1) } next }; @@ -93,24 +95,25 @@ $query->{verbose} or $urpm->{log} = sub {}; $urpm->read_depslist; $query && $query->{group} and $urpm->read_compss; +$query && $query->{use_provides} and $urpm->read_provides; if (@files) { #- read provides file which is needed only to compute incremental #- dependancies, of files provided. - $urpm->read_provides; + $query && $query->{use_provides} or $urpm->read_provides; #- build closure with local package and return list of names. push @names, $urpm->register_local_packages(@files); } #- reparse whole internal depslist to match against newer packages only. -$urpm->{params}->relocate_depslist(); +$urpm->relocate_depslist(); #- search the packages according the selection given by the user, #- basesystem is added to the list so if it need to be upgraded, all its dependancy #- will be updated too. my %packages; -$urpm->search_packages(\%packages, [ @names ]) or $query->{force} or exit 1; +$urpm->search_packages(\%packages, [ @names ], use_provides => $query->{use_provides}) or $query->{force} or exit 1; #- auto select package for upgrading the distribution. if ($query->{auto_select}) { |