summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-09-02 08:53:02 +0000
committerFrancois Pons <fpons@mandriva.com>2002-09-02 08:53:02 +0000
commitf8afae44bc946d450ac68fcc29ca7049824a3b53 (patch)
tree8b04fe473c260b8ce03cea085d9e18d873dad662 /perl-install/install_any.pm
parent5541d44bd2653ce90035ff6dfe6c8af48509bf83 (diff)
downloaddrakx-f8afae44bc946d450ac68fcc29ca7049824a3b53.tar
drakx-f8afae44bc946d450ac68fcc29ca7049824a3b53.tar.gz
drakx-f8afae44bc946d450ac68fcc29ca7049824a3b53.tar.bz2
drakx-f8afae44bc946d450ac68fcc29ca7049824a3b53.tar.xz
drakx-f8afae44bc946d450ac68fcc29ca7049824a3b53.zip
fix list building not to use parsehdlist.
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm19
1 files changed, 7 insertions, 12 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 2af8d3e4c..38327f8bf 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -576,7 +576,7 @@ sub hdInstallPath() {
}
sub install_urpmi {
- my ($prefix, $method, $mediums) = @_;
+ my ($prefix, $method, $packages, $mediums) = @_;
#- rare case where urpmi cannot be installed (no hd install path).
$method eq 'disk' && !hdInstallPath() and return;
@@ -595,18 +595,13 @@ sub install_urpmi {
http => $ENV{URLPREFIX},
cdrom => "removable://mnt/cdrom" }}{$method}) . "/$_->{rpmsdir}";
- local *FILES; open FILES, "$ENV{LD_LOADER} parsehdlist /tmp/$_->{hdlist} |";
- print LIST "$dir/$_\n" foreach chomp_(<FILES>);
- close FILES or log::l("parsehdlist failed"), return;
- close LIST;
-
- #- build synthesis file if there are still not existing (ie not copied from mirror).
- if (-s "$prefix/var/lib/urpmi/synthesis.hdlist.$name.cz" <= 32) {
- unlink "$prefix/var/lib/urpmi/synthesis.hdlist.$name.cz";
- run_program::rooted($prefix, "parsehdlist", ">", "/var/lib/urpmi/synthesis.hdlist.$name",
- "--synthesis", "/var/lib/urpmi/hdlist.$name.cz");
- run_program::rooted($prefix, "gzip", "-S", ".cz", "/var/lib/urpmi/synthesis.hdlist.$name");
+ #- build list file using internal data, synthesis file should exists.
+ #- WARNING this method of build only works because synthesis (or hdlist)
+ #- has been read.
+ foreach my $pkg (@{$packages->{depslist}}[$_->{start} .. $_->{end}]) {
+ print LIST "$dir/".$_->filename."\n";
}
+ close LIST;
my ($qname, $qdir) = ($name, $dir);
$qname =~ s/(\s)/\\$1/g; $qdir =~ s/(\s)/\\$1/g;