diff options
author | Karl Berry <karl@freefriends.org> | 2008-02-05 19:45:38 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-02-05 19:45:38 +0000 |
commit | f7c83f3af0702bc48b556a62f56f9bd1d0ddce5a (patch) | |
tree | a2f40b0c884f057cef2e81ae70770158b58a8862 /Master/tlpkg | |
parent | 208b4e0cc96ff0d8307f7b59cb66d52527123029 (diff) |
move installer stuff to installer directory, update README
git-svn-id: svn://tug.org/texlive/trunk@6509 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/README | 37 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 | ||||
-rwxr-xr-x | Master/tlpkg/etc/tlpdb-install-test.pl (renamed from Master/tlpkg/tests/tlpdb-install-test.pl) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/archive2.dll (renamed from Master/tlpkg/bin/archive2.dll) | bin | 159744 -> 159744 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/bsdtar.exe (renamed from Master/tlpkg/bin/bsdtar.exe) | bin | 59392 -> 59392 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/bzip2.dll (renamed from Master/tlpkg/bin/bzip2.dll) | bin | 68608 -> 68608 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/generate-fmtutil (renamed from Master/tlpkg/bin/generate-fmtutil) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/generate-language (renamed from Master/tlpkg/bin/generate-language) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/generate-updmap (renamed from Master/tlpkg/bin/generate-updmap) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/lzmadec.i386-linux (renamed from Master/tlpkg/bin/lzmadec.i386-linux) | bin | 10608 -> 10608 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/lzmadec.win32.exe (renamed from Master/tlpkg/bin/lzmadec.win32.exe) | bin | 12288 -> 12288 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/lzmadec.x86_64-linux (renamed from Master/tlpkg/bin/lzmadec.x86_64-linux) | bin | 14728 -> 14728 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/msys-1.0.dll (renamed from Master/tlpkg/bin/msys-1.0.dll) | bin | 734024 -> 734024 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/perl.exe (renamed from Master/tlpkg/bin/perl.exe) | bin | 5632 -> 5632 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/perl58.dll (renamed from Master/tlpkg/bin/perl58.dll) | bin | 1098752 -> 1098752 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/uninstall-tl.bat (renamed from Master/tlpkg/bin/uninstall-tl.bat) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/uninstall-tl.pl (renamed from Master/tlpkg/bin/uninstall-tl.pl) | 0 | ||||
-rwxr-xr-x | Master/tlpkg/installer/wget.exe (renamed from Master/tlpkg/bin/wget.exe) | bin | 332800 -> 332800 bytes | |||
-rwxr-xr-x | Master/tlpkg/installer/zlib1.dll (renamed from Master/tlpkg/bin/zlib1.dll) | bin | 72192 -> 72192 bytes |
19 files changed, 20 insertions, 19 deletions
diff --git a/Master/tlpkg/README b/Master/tlpkg/README index 69454506810..4631c13c2e0 100644 --- a/Master/tlpkg/README +++ b/Master/tlpkg/README @@ -1,28 +1,29 @@ +Originally written by Norbert Preining, 2007. Public domain. -This directory contains the infrastructural files for TeX Live, including +This directory contains infrastructure for TeX Live, including management programs and Perl modules. -bin/ - scripts for updating TeX Live's infrastructure files +texlive.tlpdb the database, updated automatically by karl@tug cron. +texlive.pkgver just package names and version numbers, also updated by cron, + so the network-capable installer can know what needs updating. -doc/ - Documentation of the infrastructure +TeXLive/ the Perl library for TeX Live support; this is what the + infrastructure and installer use. -lib/ - shell stuff, currently only the work-in-progress shell library - for accessing the TeX Live Database +bin/ maintenance scripts for TeX Live; nothing here should be + needed by the installer or the user. -TeXLive/ - the perl modules +doc/ documentation of the infrastructure. -tlsrc/ - tlsrc file for all packages in TeX Live +etc/ archives, e.g., scripts used when switching to the new regime. -README - this file +installer/ the cross-platform Perl installer. -etc/ - stuff I used for creating/checking of the scripts, but not for - general perusal. +lib/ TL library in other languages, none complete. + +man/ man pages (generated by pod2man). + +tlperl/ small Perl for TeX Live scripts, not installed for general use. + +tlpsrc/ tlpsrc files for all packages in TeX Live. -np, 2007-06-16 diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index ef4827a87c4..58a324a2591 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -639,7 +639,7 @@ sub install_package { my @filelist = @$filelistref; - my $bindir = "$::installerdir/tlpkg/bin"; + my $bindir = "$::installerdir/tlpkg/installer"; # unix defaults my $wget = "wget"; my $lzmadec = "$bindir/lzmadec.$::_platform_"; diff --git a/Master/tlpkg/tests/tlpdb-install-test.pl b/Master/tlpkg/etc/tlpdb-install-test.pl index 6a9a27fe1f2..6a9a27fe1f2 100755 --- a/Master/tlpkg/tests/tlpdb-install-test.pl +++ b/Master/tlpkg/etc/tlpdb-install-test.pl diff --git a/Master/tlpkg/bin/archive2.dll b/Master/tlpkg/installer/archive2.dll Binary files differindex 1aaa96f9797..1aaa96f9797 100755 --- a/Master/tlpkg/bin/archive2.dll +++ b/Master/tlpkg/installer/archive2.dll diff --git a/Master/tlpkg/bin/bsdtar.exe b/Master/tlpkg/installer/bsdtar.exe Binary files differindex f3c15f0eee1..f3c15f0eee1 100755 --- a/Master/tlpkg/bin/bsdtar.exe +++ b/Master/tlpkg/installer/bsdtar.exe diff --git a/Master/tlpkg/bin/bzip2.dll b/Master/tlpkg/installer/bzip2.dll Binary files differindex f56dfac78ec..f56dfac78ec 100755 --- a/Master/tlpkg/bin/bzip2.dll +++ b/Master/tlpkg/installer/bzip2.dll diff --git a/Master/tlpkg/bin/generate-fmtutil b/Master/tlpkg/installer/generate-fmtutil index c616ec9e330..c616ec9e330 100755 --- a/Master/tlpkg/bin/generate-fmtutil +++ b/Master/tlpkg/installer/generate-fmtutil diff --git a/Master/tlpkg/bin/generate-language b/Master/tlpkg/installer/generate-language index dc82106aa69..dc82106aa69 100755 --- a/Master/tlpkg/bin/generate-language +++ b/Master/tlpkg/installer/generate-language diff --git a/Master/tlpkg/bin/generate-updmap b/Master/tlpkg/installer/generate-updmap index bd4cca20038..bd4cca20038 100755 --- a/Master/tlpkg/bin/generate-updmap +++ b/Master/tlpkg/installer/generate-updmap diff --git a/Master/tlpkg/bin/lzmadec.i386-linux b/Master/tlpkg/installer/lzmadec.i386-linux Binary files differindex 2f65a85340e..2f65a85340e 100755 --- a/Master/tlpkg/bin/lzmadec.i386-linux +++ b/Master/tlpkg/installer/lzmadec.i386-linux diff --git a/Master/tlpkg/bin/lzmadec.win32.exe b/Master/tlpkg/installer/lzmadec.win32.exe Binary files differindex f91c8eb26b5..f91c8eb26b5 100755 --- a/Master/tlpkg/bin/lzmadec.win32.exe +++ b/Master/tlpkg/installer/lzmadec.win32.exe diff --git a/Master/tlpkg/bin/lzmadec.x86_64-linux b/Master/tlpkg/installer/lzmadec.x86_64-linux Binary files differindex 884723f350c..884723f350c 100755 --- a/Master/tlpkg/bin/lzmadec.x86_64-linux +++ b/Master/tlpkg/installer/lzmadec.x86_64-linux diff --git a/Master/tlpkg/bin/msys-1.0.dll b/Master/tlpkg/installer/msys-1.0.dll Binary files differindex 4d57f49676d..4d57f49676d 100755 --- a/Master/tlpkg/bin/msys-1.0.dll +++ b/Master/tlpkg/installer/msys-1.0.dll diff --git a/Master/tlpkg/bin/perl.exe b/Master/tlpkg/installer/perl.exe Binary files differindex 30108d9a8cc..30108d9a8cc 100755 --- a/Master/tlpkg/bin/perl.exe +++ b/Master/tlpkg/installer/perl.exe diff --git a/Master/tlpkg/bin/perl58.dll b/Master/tlpkg/installer/perl58.dll Binary files differindex d783261a862..d783261a862 100755 --- a/Master/tlpkg/bin/perl58.dll +++ b/Master/tlpkg/installer/perl58.dll diff --git a/Master/tlpkg/bin/uninstall-tl.bat b/Master/tlpkg/installer/uninstall-tl.bat index ed18ef8010f..ed18ef8010f 100755 --- a/Master/tlpkg/bin/uninstall-tl.bat +++ b/Master/tlpkg/installer/uninstall-tl.bat diff --git a/Master/tlpkg/bin/uninstall-tl.pl b/Master/tlpkg/installer/uninstall-tl.pl index de443cc76ae..de443cc76ae 100755 --- a/Master/tlpkg/bin/uninstall-tl.pl +++ b/Master/tlpkg/installer/uninstall-tl.pl diff --git a/Master/tlpkg/bin/wget.exe b/Master/tlpkg/installer/wget.exe Binary files differindex ad974bfe5f8..ad974bfe5f8 100755 --- a/Master/tlpkg/bin/wget.exe +++ b/Master/tlpkg/installer/wget.exe diff --git a/Master/tlpkg/bin/zlib1.dll b/Master/tlpkg/installer/zlib1.dll Binary files differindex 076f50336d9..076f50336d9 100755 --- a/Master/tlpkg/bin/zlib1.dll +++ b/Master/tlpkg/installer/zlib1.dll |