diff options
author | Norbert Preining <preining@logic.at> | 2008-07-08 13:01:20 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-08 13:01:20 +0000 |
commit | aa119be73d73727e173789d45ee2a40bfe0e62c6 (patch) | |
tree | a470469e15442848b63bf162d3afb80305fbf69c /Master/tlpkg/TeXLive/TLConfig.pm | |
parent | 556c8fb15a545d032fe1bb0054304c96ae6ec282 (diff) |
install-tl (and tlmgr and and):
- use -location as installation source selection tool
- remove -media
- remove various functions from TLUtils.pm
. remove NetArchive/DiskArchive distinction, only TLUtils::Archive remains
and that is "archive"
git-svn-id: svn://tug.org/texlive/trunk@9361 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 41b31fcccb6..67f260a00f3 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -21,12 +21,10 @@ BEGIN { $InfraLocation $DatabaseName $BlockSize - $NetArchive - $DiskArchive + $Archive $TeXLiveServerURL $TeXLiveServerPath $TeXLiveURL - $TeXLiveAlternativeURL $WinSpecialUpdatePackagesRegexp ); @EXPORT = @EXPORT_OK; @@ -55,14 +53,11 @@ our $BlockSize = 4096; # the way we package things on the web our $DefaultContainerExtension = "tar.lzma"; -our $NetArchive = "tlpkg"; -our $DiskArchive = "archive"; +our $Archive = "archive"; our $TeXLiveServerURL = "http://mirror.ctan.org"; our $TeXLiveServerPath = "systems/texlive/tlnet/tldev"; our $TeXLiveURL = "$TeXLiveServerURL/$TeXLiveServerPath"; -our $TeXLiveAlternativeURL; # idea that didn't pan out - our $WinSpecialUpdatePackagesRegexp = '^(texlive\.infra|luatex|bin-tlperl\.win32$|bin-texlive|bin-kpathsea)'; @@ -123,8 +118,7 @@ C<tlpkg>. The assumed block size, currently 4k. -=item C<$TeXLive::TLConfig::NetArchive> -=item C<$TeXLive::TLConfig::DiskArchive> +=item C<$TeXLive::TLConfig::Archive> =item C<$TeXLive::TLConfig::TeXLiveURL> These values specify where to find packages. |