summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-12-05 18:54:38 +0000
committerFrancois Pons <fpons@mandriva.com>2001-12-05 18:54:38 +0000
commitab071d4d09253a8763fffeddcc24be13d0698da6 (patch)
tree57cbf45694ea157681fda2e1d3a8c45cf59ee470
parent3c879e7831ab56a1208e40996dbe49c3aa397df2 (diff)
downloadurpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar
urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.gz
urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.bz2
urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.tar.xz
urpmi-ab071d4d09253a8763fffeddcc24be13d0698da6.zip
2.2 with rpmtools 4.0.
-rw-r--r--urpm.pm66
-rwxr-xr-xurpmi.addmedia11
-rw-r--r--urpmi.spec10
-rwxr-xr-xurpmi.update13
4 files changed, 63 insertions, 37 deletions
diff --git a/urpm.pm b/urpm.pm
index 11fc1ac3..1bbc2095 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -203,8 +203,6 @@ sub read_config {
}
#- check the presence of hdlist file and list file if necessary.
- #- TODO?: degraded mode is possible with a list file but no hdlist, the medium
- #- is no longer updatable nor removable TODO
unless ($options{nocheck_access}) {
foreach (@{$urpm->{media}}) {
$_->{ignore} and next;
@@ -446,9 +444,9 @@ sub select_media {
sub build_synthesis_hdlist {
my ($urpm, $medium) = @_;
- #- building synthesis file using parsehdlist output, need 3.1-5mdk or above.
+ #- building synthesis file using parsehdlist output, need 3.2-1mdk or above.
unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
- if (system "parsehdlist --compact --name --provides --requires '$urpm->{statedir}/$medium->{hdlist}' | gzip >'$urpm->{statedir}/synthesis.$medium->{hdlist}'") {
+ if (system "parsehdlist --compact --info --provides --requires '$urpm->{statedir}/$medium->{hdlist}' | gzip >'$urpm->{statedir}/synthesis.$medium->{hdlist}'") {
unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
$urpm->{error}(_("unable to build synthesis file for medium \"%s\"", $medium->{name}));
return;
@@ -1007,12 +1005,13 @@ sub relocate_depslist_provides {
#- examine provides to remove non allowed provides (no id).
foreach (values %{$urpm->{params}{provides}}) {
my %list;
- foreach (@$_) {
+ foreach (keys %$_) {
if ($urpm->{params}{info}{$_} && defined $urpm->{params}{info}{$_}{id}) {
$list{$_} = undef;
}
}
- $_ = [ keys %list ];
+ $_ = {};
+ @{$_}{keys %list} = ();
}
$urpm->{log}(_("relocated %s entries in depslist", $relocated_entries));
@@ -1069,7 +1068,7 @@ sub search_packages {
if ($options{use_provides}) {
#- try to search through provides.
if (my $provide_v = $urpm->{params}{provides}{$v}) {
- if (@{$provide_v} == 1 &&
+ if (scalar(keys %$provide_v) == 1 &&
$urpm->{params}{info}{$provide_v->[0]} &&
defined $urpm->{params}{info}{$provide_v->[0]}{id}) {
#- we assume that if the there is only one package providing the resource exactly,
@@ -1084,9 +1083,9 @@ sub search_packages {
#- but manages choices correctly (as a provides may be virtual or
#- multiply defined.
/$qv/ and push @{$found{$v}}, join '|', grep { defined $_ }
- map { $urpm->{params}{info}{$_}{id} } @{$urpm->{params}{provides}{$_}};
+ map { $urpm->{params}{info}{$_}{id} } keys %{$urpm->{params}{provides}{$_}};
/$qv/i and push @{$found{$v}}, join '|', grep { defined $_ }
- map { $urpm->{params}{info}{$_}{id} } @{$urpm->{params}{provides}{$_}};
+ map { $urpm->{params}{info}{$_}{id} } keys %{$urpm->{params}{provides}{$_}};
}
}
@@ -1176,17 +1175,36 @@ sub parse_synthesis {
#- check with provides that version and release are matching else ignore safely.
#- simply ignore src rpm, which does not have any provides.
my $update_info = sub {
- my $found;
- my ($fullname, $file) = @{$info{name} || []} or return;
+ my ($found, $fullname, $serial, $size, $group, $file);
+
+ #- search important information.
+ $info{info} and ($fullname, $serial, $size, $group, $file) = @{$info{info}};
+ $fullname or $info{name} and ($fullname, $file) = @{$info{name}};
+
+ #- no fullname means no information have been found, this is really problematic here!
+ $fullname or return;
+
+ #- search an existing entry or create it.
unless ($found = $urpm->{params}{info}{$fullname}) {
#- the entry does not exists *AND* should be created (in info, names and provides hashes)
if ($fullname =~ /^(.*?)-([^-]*)-([^-]*)\.([^\-\.]*)$/) {
$found = $urpm->{params}{info}{$fullname} = $urpm->{params}{names}{$1} =
- { name => $1, version => $2, release => $3, arch => $4 };
- #- get back epoch from provides list, if it is defined and create entry too.
- foreach (@{$info{provides} || []}) {
- /(\S*)\s*==\s*(\d+:)?[^-]*-[^-]*/ && $found->{name} eq $1 && $2 > 0 and $found->{serial} = $2;
- /(\S*)/ and push @{$urpm->{params}{provides}{$1} ||= []}, $fullname;
+ { name => $1, version => $2, release => $3, arch => $4,
+ id => scalar @{$urpm->{params}{depslist}},
+ };
+
+ #- update global depslist and provides.
+ push @{$urpm->{params}{depslist}}, $found;
+ $urpm->{params}{provides}{$found->{name}}{$fullname} = undef;
+
+ #- get back epoch from provides list unless it is already known, if it is defined and create entry too.
+ if (defined $serial) {
+ $serial and $found->{serial} = $serial;
+ } else {
+ foreach (@{$info{provides} || []}) {
+ /(\S*)\s*==\s*(\d+:)?[^-]*-[^-]*/ && $found->{name} eq $1 && $2 > 0 and $found->{serial} = $2;
+ /(\S*)/ and $urpm->{params}{provides}{$1}{$fullname} = undef;
+ }
}
}
}
@@ -1194,16 +1212,20 @@ sub parse_synthesis {
#- an already existing entries has been found, so
#- add additional information (except name)
foreach my $tag (keys %info) {
- $tag ne 'name' and $found->{$tag} ||= $info{$tag};
+ $tag ne 'name' && $tag ne 'info' and $found->{$tag} ||= $info{$tag};
}
#- help remind rpm filename.
+ $size and $found->{size} ||= $size;
+ $group and $found->{group} ||= $group;
$file and $found->{file} ||= $file;
+
#- keep track of package found.
push @founds, $found;
} else {
#- fullname is incoherent or not found (and not created).
$urpm->{log}(_("unknown data associated with %s", $fullname));
}
+ $found;
};
open F, "gzip -dc '$synthesis' |";
@@ -1211,13 +1233,13 @@ sub parse_synthesis {
chomp;
my ($name, $tag, @data) = split '@';
if ($name ne $last_name) {
- $update_info->();
+ !%info || $update_info->() or $urpm->{log}(_("unable to analyse synthesis data of %s", $last_name));
$last_name = $name;
%info = ();
}
$info{$tag} = \@data;
}
- $update_info->();
+ !%info || $update_info->() or $urpm->{log}(_("unable to analyse synthesis data of %s", $last_name));
close F or $urpm->{error}(_("unable to parse correctly [%s]", $synthesis)), return;
$urpm->{log}(_("read synthesis file [%s]", $synthesis));
@@ -1396,7 +1418,7 @@ sub filter_minimal_packages_to_upgrade {
$selected{$_} = undef;
my (%pre_choices, @pre_choices, @choices, @upgradable_choices, %choices_id);
- foreach my $fullname (@{$urpm->{params}{provides}{$_}}) {
+ foreach my $fullname (keys %{$urpm->{params}{provides}{$_} || {}}) {
my $pkg = $urpm->{params}{info}{$fullname};
push @{$pre_choices{$pkg->{name}}}, $pkg;
}
@@ -1479,7 +1501,7 @@ sub deselect_unwanted_packages {
open F, $urpm->{skiplist};
while (<F>) {
chomp; s/#.*$//; s/^\s*//; s/\s*$//;
- foreach (@{$urpm->{params}{provides}{$_} || []}) {
+ foreach (keys %{$urpm->{params}{provides}{$_} || {}}) {
my $pkg = $urpm->{params}{info}{$_} or next;
$options{force} || (exists $packages->{$pkg->{id}} && defined $packages->{$pkg->{id}})
and delete $packages->{$pkg->{id}};
@@ -1739,7 +1761,7 @@ sub extract_packages_to_install {
open F, $urpm->{instlist};
while (<F>) {
chomp; s/#.*$//; s/^\s*//; s/\s*$//;
- foreach (@{$urpm->{params}{provides}{$_} || []}) {
+ foreach (keys %{$urpm->{params}{provides}{$_} || {}}) {
my $pkg = $urpm->{params}{info}{$_} or next;
exists $sources->{$pkg->{id}} and $inst{$pkg->{id}} = delete $sources->{$pkg->{id}};
}
diff --git a/urpmi.addmedia b/urpmi.addmedia
index f1cc9014..eefdae3c 100755
--- a/urpmi.addmedia
+++ b/urpmi.addmedia
@@ -35,10 +35,11 @@ where <url> is one of
removable://<path>
and [options] are from
-") . _(" -c - clean headers cache directory.
-") . _(" -f - force generation of hdlist files.
-") . _(" --wget - use wget to retrieve distant files.
-") . _(" --curl - use curl to retrieve distant files.
+") . _(" -c - clean headers cache directory.
+") . _(" -d - force complete computation of depslist.ordered file.
+") . _(" -f - force generation of hdlist files.
+") . _(" --wget - use wget to retrieve distant files.
+") . _(" --curl - use curl to retrieve distant files.
");
$options{force} = 0;
@@ -46,7 +47,7 @@ and [options] are from
$options{sync} = undef;
while ($_ = shift @_) {
/^--?c/ and $options{noclean} = 0, next;
- /^--?c/ and $options{depslist} = 1, next;
+ /^--?d/ and $options{depslist} = 1, next;
/^--?f/ and ++$options{force}, next;
/^--wget/ and $options{sync} = \&urpm::sync_wget, next;
/^--curl/ and $options{sync} = \&urpm::sync_curl, next;
diff --git a/urpmi.spec b/urpmi.spec
index bb92076d..8f868535 100644
--- a/urpmi.spec
+++ b/urpmi.spec
@@ -1,14 +1,14 @@
%define group System/Configuration/Packaging
Name: urpmi
-Version: 2.1
-Release: 7mdk
+Version: 2.2
+Release: 1mdk
License: GPL
Source0: %{name}.tar.bz2
Source1: %{name}.logrotate
Summary: User mode rpm install
Requires: eject, webfetch
-PreReq: perl-gettext, rpmtools >= 3.1-9mdk
+PreReq: perl-gettext, rpmtools >= 4.0
BuildRequires: libbzip2-devel rpm-devel
BuildRoot: %{_tmppath}/%{name}-buildroot
@@ -129,7 +129,9 @@ rm -f /var/lib/urpmi/depslist
%changelog
-
+* Wed Dec 5 2001 François Pons <fpons@mandrakesoft.com> 2.2-1mdk
+- match rpmtools-4.0.
+- updated help on-line and fixed options invocation.
- update translation (thierry)
* Thu Nov 29 2001 François Pons <fpons@mandrakesoft.com> 2.1-7mdk
diff --git a/urpmi.update b/urpmi.update
index 1deb4327..26514f7c 100755
--- a/urpmi.update
+++ b/urpmi.update
@@ -33,18 +33,19 @@ sub main {
foreach (@_) {
/^--?a/ and $options{all} = 1, next;
/^--?c/ and $options{noclean} = 0, next;
- /^--?c/ and $options{depslist} = 1, next;
+ /^--?d/ and $options{depslist} = 1, next;
/^--?f/ and ++$options{force}, next;
/^--wget/ and $options{sync} = \&urpm::sync_wget, next;
/^--curl/ and $options{sync} = \&urpm::sync_curl, next;
/^--?noa/ and next; #- default, keeped for compability.
/^-/ and die _("usage: urpmi.update [options] <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 files.
-") . _(" --wget - use wget to retrieve distant files.
-") . _(" --curl - use curl to retrieve distant files.
+") . _(" -a - select all non-removable media.
+") . _(" -c - clean headers cache directory.
+") . _(" -d - force complete computation of depslist.ordered file.
+") . _(" -f - force generation of hdlist files.
+") . _(" --wget - use wget to retrieve distant files.
+") . _(" --curl - use curl to retrieve distant files.
") . _("\nunknown options '%s'\n", $_);
push @toupdates, $_;
}