summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-11-23 20:58:14 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-11-24 01:55:51 +0100
commitcd9a40219089d7738f8b820c0b8209eeac3e3a48 (patch)
tree9d3fc0256e52956ed4741dd6c9dde9dab53502bd
parent22c8a374186b68db43c6a761d12e29a8a978cf22 (diff)
downloadurpmi-cd9a40219089d7738f8b820c0b8209eeac3e3a48.tar
urpmi-cd9a40219089d7738f8b820c0b8209eeac3e3a48.tar.gz
urpmi-cd9a40219089d7738f8b820c0b8209eeac3e3a48.tar.bz2
urpmi-cd9a40219089d7738f8b820c0b8209eeac3e3a48.tar.xz
urpmi-cd9a40219089d7738f8b820c0b8209eeac3e3a48.zip
Sort found pkgs list for reproductable logs
-rw-r--r--Changes4
-rwxr-xr-xurpmi2
2 files changed, 5 insertions, 1 deletions
diff --git a/Changes b/Changes
index 5e294ce3..a9686f4b 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,10 @@
- gurpmi2:
o ensure download error report fits on screen
- Make it work with no feature qw(indirect) (aka perl7)
+- urpmi:
+ o make logs more reproductable
+- urpmi.addmedia:
+ o add --ignorearch option
- small Kwalitee cleanups
- stop truncating disk names when prompting for a CD/USB key
- cpan_testers:
diff --git a/urpmi b/urpmi
index de72fdc6..7d282d9e 100755
--- a/urpmi
+++ b/urpmi
@@ -390,7 +390,7 @@ if (@names) {
) || $force or exit 1;
if (%requested) {
- $urpm->{log}("found package(s): " . join(" ", map { scalar $urpm->{depslist}[$_]->fullname }
+ $urpm->{log}("found package(s): " . join(" ", sort map { scalar $urpm->{depslist}[$_]->fullname }
map { split /\|/ } keys %requested));
}
}