summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) {