From 23626b7057ce159c158784d3159e09385ca8c2ab Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Fri, 14 Nov 2014 00:18:08 +0000 Subject: present platforms in OS on ARCH order git-svn-id: svn://tug.org/texlive/trunk@35578 c570f23f-e606-0410-a88d-b1316a301751 --- Master/install-tl | 2 +- Master/tlpkg/TeXLive/TLUtils.pm | 64 ++++++++++++++++----------- Master/tlpkg/installer/install-menu-perltk.pl | 2 +- Master/tlpkg/installer/install-menu-text.pl | 9 ++-- 4 files changed, 44 insertions(+), 33 deletions(-) diff --git a/Master/install-tl b/Master/install-tl index 78849cfd479..31ae2249b91 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -46,7 +46,7 @@ use Cwd 'abs_path'; use Getopt::Long qw(:config no_autoabbrev); use Pod::Usage; -use TeXLive::TLUtils qw(platform platform_desc +use TeXLive::TLUtils qw(platform platform_desc sort_archs which getenv win32 unix info log debug tlwarn ddebug tldie get_system_tmpdir member process_logging_options rmtree mkdirhier make_var_skeleton make_local_skeleton install_package copy diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index dbea8effd88..2b77add8f67 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -191,10 +191,11 @@ BEGIN { &mktexupd &nulldev &get_full_line + &sort_archs ); @EXPORT = qw(setup_programs download_file process_logging_options tldie tlwarn info log debug ddebug dddebug debug_hash - win32 xchdir xsystem run_cmd); + win32 xchdir xsystem run_cmd sort_archs); } use Cwd; @@ -327,34 +328,34 @@ sub platform_desc { my ($platform) = @_; my %platform_name = ( - 'alpha-linux' => 'DEC Alpha with GNU/Linux', - 'amd64-freebsd' => 'x86_64 with FreeBSD', - 'amd64-kfreebsd' => 'x86_64 with GNU/kFreeBSD', - 'amd64-netbsd' => 'x86_64 with NetBSD', - 'armel-linux' => 'ARM with GNU/Linux', - 'armhf-linux' => 'ARMhf with GNU/Linux', + 'alpha-linux' => 'GNU/Linux on DEC Alpha', + 'amd64-freebsd' => 'FreeBSD on x86_64', + 'amd64-kfreebsd' => 'GNU/kFreeBSD on x86_64', + 'amd64-netbsd' => 'NetBSD on x86_64', + 'armel-linux' => 'GNU/Linux on ARM', + 'armhf-linux' => 'GNU/Linux on ARMhf', 'hppa-hpux' => 'HP-UX', - 'i386-cygwin' => 'Intel x86 with Cygwin', - 'i386-darwin' => 'Intel x86 with MacOSX/Darwin', - 'i386-freebsd' => 'Intel x86 with FreeBSD', - 'i386-kfreebsd' => 'Intel x86 with GNU/kFreeBSD', - 'i386-openbsd' => 'Intel x86 with OpenBSD', - 'i386-netbsd' => 'Intel x86 with NetBSD', - 'i386-linux' => 'Intel x86 with GNU/Linux', - 'i386-solaris' => 'Intel x86 with Solaris', + 'i386-cygwin' => 'Cygwin on Intel x86', + 'i386-darwin' => 'MacOSX/Darwin on Intel x86', + 'i386-freebsd' => 'FreeBSD on Intel x86', + 'i386-kfreebsd' => 'GNU/kFreeBSD on Intel x86', + 'i386-openbsd' => 'OpenBSD on Intel x86', + 'i386-netbsd' => 'NetBSD on Intel x86', + 'i386-linux' => 'GNU/Linux on Intel x86', + 'i386-solaris' => 'Solaris on Intel x86', 'mips-irix' => 'SGI IRIX', - 'mipsel-linux' => 'MIPSel with GNU/Linux', - 'powerpc-aix' => 'PowerPC with AIX', - 'powerpc-darwin' => 'PowerPC with MacOSX/Darwin', - 'powerpc-linux' => 'PowerPC with GNU/Linux', - 'sparc-linux' => 'Sparc with GNU/Linux', - 'sparc-solaris' => 'Sparc with Solaris', - 'universal-darwin' => 'universal binaries for MacOSX/Darwin', + 'mipsel-linux' => 'GNU/Linux on MIPSel', + 'powerpc-aix' => 'AIX on PowerPC', + 'powerpc-darwin' => 'MacOSX/Darwin on PowerPC', + 'powerpc-linux' => 'GNU/Linux on PowerPC', + 'sparc-linux' => 'GNU/Linux on Sparc', + 'sparc-solaris' => 'Solaris on Sparc', + 'universal-darwin' => 'MacOSX/Darwin universal binaries', 'win32' => 'Windows', - 'x86_64-cygwin' => 'x86_64 with Cygwin', - 'x86_64-darwin' => 'x86_64 with MacOSX/Darwin', - 'x86_64-linux' => 'x86_64 with GNU/Linux', - 'x86_64-solaris' => 'x86_64 with Solaris', + 'x86_64-cygwin' => 'Cygwin on x86_64', + 'x86_64-darwin' => 'MacOSX/Darwin on x86_64', + 'x86_64-linux' => 'GNU/Linux on x86_64', + 'x86_64-solaris' => 'Solaris on x86_64', ); # the inconsistency between amd64-freebsd and x86_64-linux is @@ -2070,7 +2071,8 @@ sub add_remove_symlinks { if (-w $sys_man && -d "$Master/texmf-dist/doc/man") { debug("$mode symlinks for man pages in $sys_man\n"); my $foo = `(cd "$Master/texmf-dist/doc/man" && echo *)`; - chomp (my @mans = split (' ', $foo)); + my @mans = split (' ', $foo); + chomp (@mans); foreach my $m (@mans) { my $mandir = "$Master/texmf-dist/doc/man/$m"; next unless -d $mandir; @@ -3920,6 +3922,14 @@ sub report_tlpdb_differences { } } +sub sort_archs ($$) { + my $aa = $_[0]; + my $bb = $_[1]; + $aa =~ s/^(.*)-(.*)$/$2-$1/; + $bb =~ s/^(.*)-(.*)$/$2-$1/; + $aa cmp $bb ; +} + ############################################# # # Taken from Text::ParseWords diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index bf82453da32..50efab9ba22 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -950,7 +950,7 @@ sub menu_select_binsystems { $sw->Label(-text => __("Select arch-os"))->pack(-padx => "2m", -pady => "2m"); $f2 = $sw->Frame; my $f2l = $f2->Frame; - foreach my $sys (sort @diskarchs) { + foreach my $sys (sort TeXLive::TLUtils::sort_archs @diskarchs) { $f2l->Checkbutton(-variable => \$vars{"binary_$sys"}, -command => sub { check_on_removal($sw, $sys); }, -text => platform_desc($sys))->pack(-anchor => 'w'); diff --git a/Master/tlpkg/installer/install-menu-text.pl b/Master/tlpkg/installer/install-menu-text.pl index 88da0e2ecbe..bd0fdaa098c 100755 --- a/Master/tlpkg/installer/install-menu-text.pl +++ b/Master/tlpkg/installer/install-menu-text.pl @@ -268,13 +268,14 @@ sub binary_menu { push @binaries, $1; } } - @binaries=sort(@binaries); + + @binaries=sort TeXLive::TLUtils::sort_archs @binaries; foreach my $binary (@binaries) { - printf " %s %s %-16s %s\n", $keys[$index], + printf " %s %s %s (%s)\n", $keys[$index], button($vars{"binary_$binary"}), - "$binary", - platform_desc($binary); + platform_desc($binary), + "$binary"; $keyval{"$keys[$index]"} = "binary_$binary"; ++$index; } -- cgit v1.2.3