summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2011-12-18 12:03:23 +0000
committerThierry Vignaud <tv@mageia.org>2011-12-18 12:03:23 +0000
commit7420d029bf74d41168a8072ccedc70e6b5b377af (patch)
tree4b5b3d2b5e7d5bdd75760f53ae50d40c44c94057
parentaab68369c51dca797bc98008753ac044de075798 (diff)
downloadurpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar
urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.gz
urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.bz2
urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.tar.xz
urpmi-7420d029bf74d41168a8072ccedc70e6b5b377af.zip
disable dudf support (we've nothing server side)
-rw-r--r--NEWS1
-rw-r--r--urpm/args.pm2
-rwxr-xr-xurpmi4
3 files changed, 4 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 1a82928b..5496d3fc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- urpmi
o do not compute orphan packages when handling priority upgrades
+ o disable dudf support (we've nothing server side)
Version 6.42 - 05 November 2011
diff --git a/urpm/args.pm b/urpm/args.pm
index 12d4fee3..5fe00aea 100644
--- a/urpm/args.pm
+++ b/urpm/args.pm
@@ -365,7 +365,7 @@ my %options_spec = (
eval
{
- require urpm::dudf;
+ #require urpm::dudf;
$options_spec{'urpmi'}{'force-dudf'} = \$::force_dudf;
};
diff --git a/urpmi b/urpmi
index 2dee31bc..69d84ea0 100755
--- a/urpmi
+++ b/urpmi
@@ -190,8 +190,8 @@ my $urpm = urpm->new_parse_cmdline or exit(1);
my $dudf;
eval {
- require urpm::dudf;
- $dudf = new urpm::dudf(\$urpm, $command_line, $force_dudf);
+ #require urpm::dudf;
+ #$dudf = new urpm::dudf(\$urpm, $command_line, $force_dudf);
};
if (@ARGV && $auto_select) {