diff options
Diffstat (limited to 'Build/source/texk/tests/TeXLive/TLConfig.pm')
-rw-r--r-- | Build/source/texk/tests/TeXLive/TLConfig.pm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Build/source/texk/tests/TeXLive/TLConfig.pm b/Build/source/texk/tests/TeXLive/TLConfig.pm index 64a13f30333..c75aceab3ce 100644 --- a/Build/source/texk/tests/TeXLive/TLConfig.pm +++ b/Build/source/texk/tests/TeXLive/TLConfig.pm @@ -1,12 +1,12 @@ # TeXLive::TLConfig.pm - module exporting configuration values -# Copyright 2007-2022 Norbert Preining +# Copyright 2007-2023 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. use strict; use warnings; package TeXLive::TLConfig; -my $svnrev = '$Revision: 63068 $'; +my $svnrev = '$Revision: 66204 $'; my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown"; sub module_revision { return $_modulerevision; } @@ -61,7 +61,7 @@ BEGIN { # the year of our release, will be used in the location of the # network packages, and in menu names, and other places. -our $ReleaseYear = 2022; +our $ReleaseYear = 2023; # users can upgrade from this year to the current year; might be the # same as the release year, or any number of releases earlier. @@ -118,8 +118,8 @@ our $RelocPrefix = "RELOC"; our @CriticalPackagesList = qw/texlive.infra/; our $CriticalPackagesRegexp = '^(texlive\.infra)'; if ($^O =~ /^MSWin/i) { - push (@CriticalPackagesList, "tlperl.win32"); - $CriticalPackagesRegexp = '^(texlive\.infra|tlperl\.win32$)'; + push (@CriticalPackagesList, "tlperl.windows"); + $CriticalPackagesRegexp = '^(texlive\.infra|tlperl\.windows$)'; } @@ -213,10 +213,10 @@ our %TLPDBOptions = ( "Generate formats at installation or update" ], "desktop_integration" => [ "b", 1, "desktop_integration", - "Create Start menu shortcuts (w32)" ], + "Create Start menu shortcuts (Windows)" ], "file_assocs" => [ "n:0..2", 1, "fileassocs", - "Change file associations (w32)" ], + "Change file associations (Windows)" ], "generate_updmap" => [ "b", 0, "generate_updmap", "Run tlmgr generate updmap after maps have changed" ], @@ -243,7 +243,7 @@ our %TLPDBOptions = ( "Destination for symlinks for man pages" ], "w32_multi_user" => [ "b", 1, "multiuser", - "Install for all users (w32)" ], + "Install for all users (Windows)" ], ); @@ -256,7 +256,7 @@ our %TLPDBSettings = ( our $WindowsMainMenuName = "TeX Live $ReleaseYear"; # Comma-separated list of engines which do not exist on all platforms. -our $PartialEngineSupport = "luajithbtex,luajittex,mfluajit"; +our $PartialEngineSupport = "luametatex,luajithbtex,luajittex,mfluajit"; # Flags for error handling across the scripts and modules # all fine @@ -366,7 +366,7 @@ C<systems/texlive/tlnet/>. =item C<@TeXLive::TLConfig::CriticalPackagesRegexp> A list of all those packages which we do not update regularly since they -are too central, currently texlive.infra and (for Windows) tlperl.win32. +are too central, currently texlive.infra and (for Windows) tlperl.windows. =item C<@TeXLive::TLConfig::InstallExtraRequiredPackages> |