texlive[47778] Master/tlpkg/TeXLive/TLConfig.pm: support
commits+preining at tug.org
commits+preining at tug.org
Sun May 20 09:16:42 CEST 2018
Revision: 47778
http://tug.org/svn/texlive?view=revision&revision=47778
Author: preining
Date: 2018-05-20 09:16:42 +0200 (Sun, 20 May 2018)
Log Message:
-----------
support TEXLIVE_COMPRESSOR=gzip
Modified Paths:
--------------
trunk/Master/tlpkg/TeXLive/TLConfig.pm
Modified: trunk/Master/tlpkg/TeXLive/TLConfig.pm
===================================================================
--- trunk/Master/tlpkg/TeXLive/TLConfig.pm 2018-05-20 06:46:02 UTC (rev 47777)
+++ trunk/Master/tlpkg/TeXLive/TLConfig.pm 2018-05-20 07:16:42 UTC (rev 47778)
@@ -113,13 +113,13 @@
# the way we package things on the web
our $DefaultContainerFormat = "xz";
our $DefaultContainerExtension = "tar.$DefaultContainerFormat";
-our @AcceptedCompressors = qw/xz lz4/;
-our $AcceptedCompressorsRegexp = "(xz|lz4)";
-our %CompressorProgram = ( 'xz' => 'xz', 'lz4' => 'lz4' );
-our %CompressorExtension = ( 'xz' => 'xz', 'lz4' => 'lz4' );
-our %CompressorArgs = ( 'xz' => ['-zf'], 'lz4' => ['-zf', '--rm', '-q']);
-our %DecompressorProgram = ( 'xz' => 'xz', 'lz4' => 'lz4' );
-our %DecompressorArgs = ( 'xz' => ['-dcf'], 'lz4' => ['-dcf']);
+our @AcceptedCompressors = qw/xz lz4 gzip/;
+our $AcceptedCompressorsRegexp = "(xz|lz4|gzip)";
+our %CompressorProgram = ( 'xz' => 'xz', 'gzip' => 'gzip', 'lz4' => 'lz4');
+our %CompressorExtension = ( 'xz' => 'xz', 'gzip' => 'gz', 'lz4' => 'lz4');
+our %CompressorArgs = ( 'xz' => ['-zf'], 'gzip' => [ '-f' ], 'lz4' => ['-zf', '--rm', '-q']);
+our %DecompressorProgram = ( 'xz' => 'xz', 'gzip' => 'gzip', 'lz4' => 'lz4');
+our %DecompressorArgs = ( 'xz' => ['-dcf'], 'gzip' => ['-dcf'], 'lz4' => ['-dcf']);
# archive (not user) settings.
# these can be overridden by putting them into 00texlive.config.tlpsrc
More information about the tex-live-commits
mailing list