diff options
author | Olivier Thauvin <nanardon@mandriva.org> | 2003-12-24 02:58:50 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mandriva.org> | 2003-12-24 02:58:50 +0000 |
commit | 85e5eff098c1945e7d3e20fe96ce21619a20a71e (patch) | |
tree | 1c3353ebb86d2df6ab4957bd0703bdda64380097 | |
parent | f21d8201625854cfd60e8072ebfce7d4388b6724 (diff) | |
download | urpmi-85e5eff098c1945e7d3e20fe96ce21619a20a71e.tar urpmi-85e5eff098c1945e7d3e20fe96ce21619a20a71e.tar.gz urpmi-85e5eff098c1945e7d3e20fe96ce21619a20a71e.tar.bz2 urpmi-85e5eff098c1945e7d3e20fe96ce21619a20a71e.tar.xz urpmi-85e5eff098c1945e7d3e20fe96ce21619a20a71e.zip |
- 4.48
- urpmq --list-url
- urpmq --dump-config
- urpmi.update --force-key
-rw-r--r-- | urpm.pm | 2 | ||||
-rw-r--r-- | urpmi.spec | 6 | ||||
-rwxr-xr-x | urpmi.update | 2 | ||||
-rwxr-xr-x | urpmq | 21 |
4 files changed, 27 insertions, 4 deletions
@@ -1169,6 +1169,8 @@ sub update_media { #- take care of modified medium only or all if all have to be recomputed. $medium->{ignore} and next; + $options{forcekey} and delete $medium->{'key-ids'}; + #- and create synthesis file associated if it does not already exists... -s "$urpm->{statedir}/synthesis.$medium->{hdlist}" > 32 or $medium->{modified_synthesis} = 1; @@ -1,6 +1,6 @@ %define name urpmi %define version 4.4 -%define release 47mdk +%define release 48mdk %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /mandrake/i ? "System/Configuration/Packaging" : "System Environment/Base"') @@ -228,6 +228,10 @@ $urpm->update_media(nolock => 1, nopubkey => 1); %{compat_perl_vendorlib}/urpm/parallel_ssh.pm %changelog +* Wed Dec 24 2003 Olivier Thauvin <thauvin@aerov.jussieu.fr> 4.4-48mdk +- urpmi.update: add --force-key +- urpmq: add --list-url and --dump-config + * Mon Dec 22 2003 Warly <warly@mandrakesoft.com> 4.4-47mdk - rebuild for new perlreq diff --git a/urpmi.update b/urpmi.update index 41dd0101..99fb2856 100755 --- a/urpmi.update +++ b/urpmi.update @@ -33,6 +33,7 @@ sub main { /^--?f$/ and ++$options{force}, next; /^--?z$/ and ++$options{compress}, next; /^--update$/ and $options{update} = 1, next; + /^--force-key$/ and $options{forcekey} = 1, next; /^--wget$/ and $urpm->{sync} = sub { my $options = shift @_; if (ref $options) { $options->{prefer} = 'wget' } else { $options = { dir => $options, prefer => 'wget' } } @@ -68,6 +69,7 @@ where <name> is a medium name to update. authentication (format is <user:password>). ") . N(" --update - update only update media. ") . N(" --no-md5sum - disable MD5SUM file checking. +") . N(" --force-key - force update of gpg key. ") . N(" -a - select all non-removable media. ") . N(" -c - clean headers cache directory. ") . N(" -f - force generation of hdlist files. @@ -46,6 +46,8 @@ usage: packages that leads to remove. ") . N(" --list - list available packages. ") . N(" --list-media - list available media. +") . N(" --list-url - list available media and their url. +") . N(" --dump-config - dump the config in form of urpmi.addmedia argument. ") . N(" --list-nodes - list available nodes when using --parallel. ") . N(" --list-aliases - list available parallel aliases. ") . N(" --src - next package is a source package (same as -s). @@ -99,6 +101,8 @@ while (defined($_ = shift @ARGV)) { /^--keep$/ and do { $query->{keep} = 1; next }; /^--list$/ and do { $query->{list} = 1; next }; /^--list-media$/ and do { $query->{list_media} = 1; next }; + /^--list-url$/ and do { $query->{list_url} = 1; next }; + /^--dump-config$/ and do { $query->{dump_config} = 1; next }; /^--list-nodes$/ and do { $query->{list_nodes} = 1; next }; /^--list-aliases$/ and do { $query->{list_aliases} = 1; next }; /^--src$/ and do { $query->{src} = 1; next }; @@ -163,7 +167,7 @@ while (defined($_ = shift @ARGV)) { $query->{verbose} or $urpm->{log} = sub {}; #- improve speed if using any list_... options. -$query->{nodepslist} = $query->{list_aliases} || $query->{list_nodes} || $query->{list_media}; +$query->{nodepslist} = $query->{list_aliases} || $query->{list_nodes} || $query->{list_media} || $query->{dump_config} || $query->{list_url}; if ($query->{env}) { print STDERR N("using specific environment on %s\n", $query->{env}); @@ -206,11 +210,22 @@ if ($query->{list_aliases}) { print "$_\n"; } exit 0; -} elsif ($query->{list_media}) { +} elsif ($query->{list_media} || $query->{list_url}) { foreach (@{$urpm->{media}}) { - print "$_->{name}\n"; + print "$_->{name}" . ($query->{list_url} ? " $_->{url}" : "") . "\n"; } exit 0; +} elsif ($query->{dump_config}) { + foreach (@{$urpm->{media}}) { + $_->{update} and print "--update "; + $_->{virtual} and print "--virtual "; + $_->{synthesis} and print "--synthesis "; + print "$_->{name} "; + print "$_->{url} "; + print $_->{with_hdlist} ? "with $_->{with_hdlist}" : ""; + print "\n"; + } + exit 0; } elsif ($query->{list}) { #- if list has been activated, select all... @{$state->{selected}}{0 .. $#{$urpm->{depslist}}} = (); |