summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
Diffstat (limited to 'Build')
-rw-r--r--Build/source/README2
-rw-r--r--Build/source/texk/tests/TeXLive/TLConfig.pm6
-rw-r--r--Build/source/texk/tests/TeXLive/TLUtils.pm8
3 files changed, 8 insertions, 8 deletions
diff --git a/Build/source/README b/Build/source/README
index da34d93a15a..a48b9d3a690 100644
--- a/Build/source/README
+++ b/Build/source/README
@@ -47,7 +47,7 @@ i386-openbsd, amd64-openbsd:
e.g., see CONFIGURE_ARGS in the Makefile in
http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/print/texlive/base/
-i386-solaris, x86_64-solaris, sparc-solaris:
+i386-solaris, x86_64-solaris:
Solaris 10, gcc 5.5. See doc/README.solaris.
i386-cygwin, x86_64-cygwin: gcc-4.8.2, cygwin-1.7.29.
diff --git a/Build/source/texk/tests/TeXLive/TLConfig.pm b/Build/source/texk/tests/TeXLive/TLConfig.pm
index 3775c5b6f67..498a6c2b11e 100644
--- a/Build/source/texk/tests/TeXLive/TLConfig.pm
+++ b/Build/source/texk/tests/TeXLive/TLConfig.pm
@@ -5,7 +5,7 @@
package TeXLive::TLConfig;
-my $svnrev = '$Revision: 48727 $';
+my $svnrev = '$Revision: 50190 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -55,7 +55,7 @@ BEGIN {
# the year of our release, will be used in the location of the
# network packages, and in menu names, and other places.
-$ReleaseYear = 2018;
+$ReleaseYear = 2019;
# users can upgrade from this year to the current year; might be the
# same as the release year, or any number of releases earlier.
@@ -126,7 +126,7 @@ our $DefaultCompressorFormat = "xz";
our %Compressors = (
"lz4" => {
"decompress_args" => ["-dcf"],
- "compress_args" => ["-zfmq", "--rm"],
+ "compress_args" => ["-zfmq"],
"extension" => "lz4",
"priority" => 10,
},
diff --git a/Build/source/texk/tests/TeXLive/TLUtils.pm b/Build/source/texk/tests/TeXLive/TLUtils.pm
index c7cce80f505..494ee70601c 100644
--- a/Build/source/texk/tests/TeXLive/TLUtils.pm
+++ b/Build/source/texk/tests/TeXLive/TLUtils.pm
@@ -5,7 +5,7 @@
package TeXLive::TLUtils;
-my $svnrev = '$Revision: 50107 $';
+my $svnrev = '$Revision: 50202 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -321,7 +321,7 @@ sub platform_name {
# We don't use uname numbers here.)
#
# this changes each year, per above:
- my $mactex_darwin = 10; # lowest minor rev supported by x86_64-darwin.
+ my $mactex_darwin = 12; # lowest minor rev supported by x86_64-darwin.
#
# Most robust approach is apparently to check sw_vers (os version,
# returns "10.x" values), and sysctl (processor hardware).
@@ -397,8 +397,8 @@ sub platform_desc {
'universal-darwin' => 'MacOSX universal binaries',
'win32' => 'Windows',
'x86_64-cygwin' => 'Cygwin on x86_64',
- 'x86_64-darwin' => 'MacOSX current (10.10-) on x86_64',
- 'x86_64-darwinlegacy' => 'MacOSX legacy (10.6-10.9) on x86_64',
+ 'x86_64-darwin' => 'MacOSX current (10.12-) on x86_64',
+ 'x86_64-darwinlegacy' => 'MacOSX legacy (10.6-) on x86_64',
'x86_64-linux' => 'GNU/Linux on x86_64',
'x86_64-linuxmusl' => 'GNU/Linux on x86_64 with musl',
'x86_64-solaris' => 'Solaris on x86_64',