From e1217d925a275fa500aafc36c3cf7734dfd02fdb Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Fri, 29 Nov 2002 16:38:50 +0000 Subject: 4.1-5mdk --- urpmi.addmedia | 40 +++++++++++++++++++++++++++++----------- urpmi.spec | 9 ++++++++- 2 files changed, 37 insertions(+), 12 deletions(-) diff --git a/urpmi.addmedia b/urpmi.addmedia index edbc5a46..5355a877 100755 --- a/urpmi.addmedia +++ b/urpmi.addmedia @@ -26,7 +26,17 @@ import urpm _; sub main { my ($name, $url, $with, $relative_hdlist, %options); - my $mirrors = $ENV{URPMI_MIRRORS} || 'http://www.linux-mandrake.com/mirrorsfull.list'; + #- parse /etc/urpmi/mirror.config if present, or use default mandrake mirror. + my $mirrors = 'http://www.linux-mandrake.com/mirrorsfull.list'; + if (-e "/etc/urpmi/mirror.config") { + local (*F, $_); + open F, "/etc/urpmi/mirror.config"; + while () { + chomp; s/#.*$//; s/^\s*//; s/\s*$//; + /^url\s*=\s*(.*)/ and $mirrors = $1; + } + close F; + } # Translator: The URI types strings 'file:', 'ftp:', 'http:', # Translator: and 'removable:' must not be translated! # Translator: neither the ``with''. @@ -102,7 +112,7 @@ and [options] are from last; } #- allow not to give name immediately. - $url or ($url, $name) = ($name, ''); + $options{distrib} or $url or ($url, $name) = ($name, ''); my ($type) = $url =~ m,^([^:]*)://, or $options{distrib} or die $usage; $urpm->read_config; @@ -112,7 +122,7 @@ and [options] are from #- extended distribution support, code is directly inlined here. #- -h always set, updates should allow setting update flag. $options{probe_with_hdlist} = 1; - $options{distrib} =~ /update/ and $options{update} = 1; + $options{distrib} eq 'updates' and $options{update} = 1; #- official site by default. $options{from} ||= $mirrors; #- get default value unless already provided. @@ -144,14 +154,22 @@ and [options] are from local *F; open F, "$urpm->{cachedir}/partial/$basename"; while () { - chomp; - my ($burl, $relative_hdlist) = /^$heading$qarch:(.*?)(?:\s+with\+(.*))?$/ or next; - !$url || $burl =~ /$url/ or next; - $urpm->add_medium("$name$i", - $options{distrib} eq 'updates' ? "$burl/$options{version}/RPMS" : - $options{distrib} eq 'contrib' ? $burl."2" : $burl, - ($options{distrib} ne 'contrib' || $options{version} ne 'cooker') && $relative_hdlist, - update => $options{update}); + chomp; s/#.*$//; s/^\s*//; s/\s*$//; + my ($v, $a, $l, $burl, $relative_hdlist); + if (($v, $a, $l, $burl, $relative_hdlist) = /^$heading:([^:]*):([^:]*):([^:]*):(\S*)(?:\s+with\s+(.*))?$/) { + $v eq '*' || $v eq $options{version} or next; + $a eq '*' || $a eq $options{arch} or next; + } elsif (($a, $burl) = /^$heading([^:]*):(\S*)$/) { + $a eq $options{arch} or next; + $options{distrib} eq 'updates' and $burl = "$burl/$options{version}/RPMS"; + $options{distrib} eq 'contrib' and $burl = $burl."2"; + } else { + # it could a blank line (from a commentary) or source description. + next; + } + #- sort according to url or location if possible. + !$url || $l && $l =~ /$url/i || $burl =~ /$url/i or next; + $urpm->add_medium("$name$i", $burl, $relative_hdlist, update => $options{update}); ++$i; } close F; diff --git a/urpmi.spec b/urpmi.spec index 481c4a26..1d3a2990 100644 --- a/urpmi.spec +++ b/urpmi.spec @@ -2,7 +2,7 @@ Name: urpmi Version: 4.1 -Release: 4mdk +Release: 5mdk License: GPL Source0: %{name}.tar.bz2 Source1: %{name}.logrotate @@ -204,6 +204,13 @@ fi %changelog +* Fri Nov 29 2002 François Pons 4.1-5mdk +- changed urpmi.addmedia behaviour to use /etc/urpmi/mirror.config + and allow it to parse urpmi.setup mirror configuration as + well as Mandrake (old) mirror configuration. +- allow blank url to be given to get all mirror for a given version + and architecture. + * Fri Nov 29 2002 François Pons 4.1-4mdk - allow urpmi to work with rpm filename with all supported protocols (ftp, http, ssh, rsync). -- cgit v1.2.1