diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | urpmq | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- urpmq: + o display epoch when using -i (mga#25735) - cpan_testers: o actually needs perl >= 5.10 for //= operator o fix failing scriptlets test with rpm < 4.13.0 @@ -437,6 +437,7 @@ if ($options{list_aliases}) { } if ($options{info}) { printf "%-12s: %s\n", "Name", $pkg->name; + printf "%-12s: %s\n", "Epoch", $pkg->epoch if $pkg->epoch; printf "%-12s: %s\n", "Version", $pkg->version; printf "%-12s: %s\n", "Release", $pkg->release; printf "%-12s: %s\n", "Group", $pkg->group; |