diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-10 17:35:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-10 17:35:47 +0000 |
commit | 95e623d3dd4dbf12e391a2ef1413547358e0e353 (patch) | |
tree | f7986d73ac5bc9eebc21f234e2bae99760f24824 /urpmf | |
parent | 89d972c118016249e9e1b40c32748a6b56fc454c (diff) | |
download | urpmi-95e623d3dd4dbf12e391a2ef1413547358e0e353.tar urpmi-95e623d3dd4dbf12e391a2ef1413547358e0e353.tar.gz urpmi-95e623d3dd4dbf12e391a2ef1413547358e0e353.tar.bz2 urpmi-95e623d3dd4dbf12e391a2ef1413547358e0e353.tar.xz urpmi-95e623d3dd4dbf12e391a2ef1413547358e0e353.zip |
move the list of known tags out of urpm/args.pm into urpmf,
and remove duplicated list (nb: conf_files has been added to command-line, but
this won't hurt afaik)
Diffstat (limited to 'urpmf')
-rwxr-xr-x | urpmf | 47 |
1 files changed, 34 insertions, 13 deletions
@@ -87,6 +87,39 @@ usage: urpmf [options] pattern-expression exit(1); } +my %tags_per_media_info = ( + + synthesis => [ qw( + arch + conflicts + epoch + filename + group + obsoletes + provides + requires + size + suggests + summary + ) ], + + hdlist => [ qw( + buildhost + buildtime + conf_files + description + distribution + files + license + packager + sourcerpm + url + vendor + ) ], +); + +urpm::args::add_urpmf_cmdline_tags(map { @$_ } values %tags_per_media_info); + #- default options. our $env; # bug report directory our $excludemedia = ''; @@ -196,19 +229,7 @@ if ($env) { } my $_lock = urpm::lock::urpmi_db($urpm, '', nofatal => 1, wait => $options{wait_lock}); -my $need_xml = grep { $usedtags{$_} } qw( - buildhost - buildtime - conf_files - description - distribution - files - license - packager - sourcerpm - url - vendor -); +my $need_xml = grep { $usedtags{$_} } @{$tags_per_media_info{hdlist}}; urpm::media::configure($urpm, nocheck_access => 1, no_skiplist => 1, |