texlive[47938] Master/tlpkg/TeXLive/TLConfig.pm: switch back to lz4,

commits+preining at tug.org commits+preining at tug.org
Wed Jun 6 03:35:11 CEST 2018


Revision: 47938
          http://tug.org/svn/texlive?view=revision&revision=47938
Author:   preining
Date:     2018-06-06 03:35:10 +0200 (Wed, 06 Jun 2018)
Log Message:
-----------
switch back to lz4, pass -m to lz4 on compression

Modified Paths:
--------------
    trunk/Master/tlpkg/TeXLive/TLConfig.pm

Modified: trunk/Master/tlpkg/TeXLive/TLConfig.pm
===================================================================
--- trunk/Master/tlpkg/TeXLive/TLConfig.pm	2018-06-06 00:19:01 UTC (rev 47937)
+++ trunk/Master/tlpkg/TeXLive/TLConfig.pm	2018-06-06 01:35:10 UTC (rev 47938)
@@ -131,11 +131,11 @@
 our $DefaultCompressorFormat = "xz";
 our $DefaultContainerExtension = "tar.$DefaultCompressorFormat";
 # mind that the order here is important as gives also the preference!
-our @AcceptedCompressors = qw/xz gzip lz4/;
+our @AcceptedCompressors = qw/lz4 gzip xz/;
 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 %CompressorArgs      = ( 'xz' => ['-zf'],  'gzip' => [ '-f' ], 'lz4' => ['-zfm', '--rm', '-q']);
 our %DecompressorProgram = ( 'xz' => 'xz',     'gzip' => 'gzip',   'lz4' => 'lz4');
 our %DecompressorArgs    = ( 'xz' => ['-dcf'], 'gzip' => ['-dcf'], 'lz4' => ['-dcf']);
 



More information about the tex-live-commits mailing list