From f19aca94051e57f271fafe712514e5af119e7254 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Mon, 11 Mar 2002 14:11:05 +0000 Subject: 3.3-22mdk (added missing support for --wget/--curl to urpmq) --- urpmi.spec | 5 ++++- urpmq | 8 +++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/urpmi.spec b/urpmi.spec index a627f500..7d29c8e1 100644 --- a/urpmi.spec +++ b/urpmi.spec @@ -2,7 +2,7 @@ Name: urpmi Version: 3.3 -Release: 21mdk +Release: 22mdk License: GPL Source0: %{name}.tar.bz2 Source1: %{name}.logrotate @@ -144,6 +144,9 @@ fi %changelog +* Mon Mar 11 2002 François Pons 3.3-22mdk +- added --wget/--curl support to urpmq (needed by rpmdrake). + * Thu Mar 7 2002 François Pons 3.3-21mdk - fix --wget and --curl for urpmi.addmedia. diff --git a/urpmq b/urpmq index 94505fc5..533e8dfb 100755 --- a/urpmq +++ b/urpmq @@ -63,6 +63,9 @@ usage: exit(0); } +#- params contains informations to parse installed system. +my $urpm = new urpm; + #- parse arguments list. my @nextargv; for (@ARGV) { @@ -77,6 +80,8 @@ for (@ARGV) { /^--sources$/ and do { $query->{sources} = 1; next }; /^--force$/ and do { $query->{force} = 1; next }; /^--root$/ and do { push @nextargv, \$query->{root}; next }; + /^--wget$/ and do { $urpm->{sync} = \&urpm::sync_wget; next }; + /^--curl$/ and do { $urpm->{sync} = \&urpm::sync_curl; next }; /^-(.*)$/ and do { foreach (split //, $1) { /[\?h]/ and do { usage; next }; /d/ and do { $query->{deps} = 1; next }; @@ -105,9 +110,6 @@ for (@ARGV) { $query->{src} = 0; #- reset switch for next package. } -#- params contains informations to parse installed system. -my $urpm = new urpm; - #- remove verbose if not asked. $query->{verbose} or $urpm->{log} = sub {}; -- cgit v1.2.1