diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-04 17:38:10 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-06 10:16:18 +0200 |
commit | ad3ae8cc582438000b3b8589b3629df98da49c9d (patch) | |
tree | 0ba123128c5200db71579271d7c848e320d20742 | |
parent | c8187549845afb9201686e3117c0d16cb7a41f26 (diff) | |
download | urpmi-ad3ae8cc582438000b3b8589b3629df98da49c9d.tar urpmi-ad3ae8cc582438000b3b8589b3629df98da49c9d.tar.gz urpmi-ad3ae8cc582438000b3b8589b3629df98da49c9d.tar.bz2 urpmi-ad3ae8cc582438000b3b8589b3629df98da49c9d.tar.xz urpmi-ad3ae8cc582438000b3b8589b3629df98da49c9d.zip |
Stop truncating disk names when prompting for a CD
.. or for a CD/USB key
See mga#26564 comment 9:
https://bugs.mageia.org/show_bug.cgi?id=26564#c9
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | urpm/cdrom.pm | 4 | ||||
-rw-r--r-- | urpm/util.pm | 2 |
3 files changed, 3 insertions, 4 deletions
@@ -1,4 +1,5 @@ - small Kwalitee cleanups +- stop truncating disk names when prompting for a CD/USB key - cpan_testers: o fix bundled genhdlist2 wrongly defaulting to zstd diff --git a/urpm/cdrom.pm b/urpm/cdrom.pm index 0396620b..16e255f7 100644 --- a/urpm/cdrom.pm +++ b/urpm/cdrom.pm @@ -4,7 +4,7 @@ package urpm::cdrom; use strict; use urpm::msg; use urpm::sys; -use urpm::util qw(basename copy_and_own difference2 remove_internal_name); +use urpm::util qw(basename copy_and_own difference2); use urpm::get_pkgs; use urpm::removable; use urpm 'file_from_local_medium'; @@ -174,7 +174,7 @@ sub _mount_cdrom { _may_eject_cdrom($urpm); - $ask_for_medium->(remove_internal_name($medium->{name})) + $ask_for_medium->($medium->{name}) or $urpm->{fatal}(4, N("medium \"%s\" is not available", $medium->{name})); } } diff --git a/urpm/util.pm b/urpm/util.pm index 7079e6ed..60a449d8 100644 --- a/urpm/util.pm +++ b/urpm/util.pm @@ -28,7 +28,6 @@ our @EXPORT = qw(add2hash_ put_in_hash quotespace reduce_pathname - remove_internal_name same_size_and_mtime uefi_type uniq @@ -44,7 +43,6 @@ sub max { my $n = shift; $_ > $n and $n = $_ foreach @_; $n } #- quoting/unquoting a string that may be containing space chars. sub quotespace { my $x = $_[0] || ''; $x =~ s/(\s)/\\$1/g; $x } sub unquotespace { my $x = $_[0] || ''; $x =~ s/\\(\s)/$1/g; $x } -sub remove_internal_name { my $x = $_[0] || ''; $x =~ s/\(\S+\)$/$1/g; $x } sub dirname { local $_ = shift; s|[^/]*/*\s*$||; s|(.)/*$|$1|; $_ || '.' } sub basename { local $_ = shift; s|/*\s*$||; s|.*/||; $_ } |