diff options
author | Norbert Preining <preining@logic.at> | 2018-05-23 02:32:29 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-05-23 02:32:29 +0000 |
commit | cc2f0463e08cdfb7e55b1b57b1c9b55c7af010b3 (patch) | |
tree | 35dcedbe2f8a135edae293dbb4746da64f04aaf0 | |
parent | 192a295280da343cff8dd0fb7f89a843d96c8368 (diff) |
rename DefaultContainerFormat to DefaultCompressorFormat
git-svn-id: svn://tug.org/texlive/trunk@47802 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 8 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index ab57a2b66ac..c697418f103 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -22,7 +22,7 @@ BEGIN { $MetaCategoriesRegexp $CategoriesRegexp $DefaultCategory - $DefaultContainerFormat + $DefaultCompressorFormat $DefaultContainerExtension @AcceptedCompressors $AcceptedCompressorsRegexp @@ -111,8 +111,8 @@ if ($^O =~ /^MSWin/i) { } # the way we package things on the web -our $DefaultContainerFormat = "xz"; -our $DefaultContainerExtension = "tar.$DefaultContainerFormat"; +our $DefaultCompressorFormat = "xz"; +our $DefaultContainerExtension = "tar.$DefaultCompressorFormat"; our @AcceptedCompressors = qw/xz lz4 gzip/; our $AcceptedCompressorsRegexp = "(xz|lz4|gzip)"; our %CompressorProgram = ( 'xz' => 'xz', 'gzip' => 'gzip', 'lz4' => 'lz4'); @@ -128,7 +128,7 @@ our %DecompressorArgs = ( 'xz' => ['-dcf'], 'gzip' => ['-dcf'], 'lz4' => ['-d our %TLPDBConfigs = ( "container_split_src_files" => 1, "container_split_doc_files" => 1, - "container_format" => $DefaultContainerFormat, + "container_format" => $DefaultCompressorFormat, "minrelease" => $MinRelease, "release" => $ReleaseYear, "frozen" => 0, diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index 9ba592e4115..99050e34dd7 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -92,7 +92,7 @@ C<TeXLive::TLPDB> -- A database of TeX Live Packages use TeXLive::TLConfig qw($CategoriesRegexp $DefaultCategory $InfraLocation $DatabaseName $MetaCategoriesRegexp $Archive - $DefaultContainerFormat $DefaultContainerExtension + $DefaultCompressorFormat $DefaultContainerExtension @AcceptedCompressors $AcceptedCompressorsRegexp %CompressorProgram %CompressorExtension %CompressorArgs %DecompressorProgram %DecompressorArgs %TLPDBOptions %TLPDBSettings $ChecksumExtension |