diff options
author | Karl Berry <karl@freefriends.org> | 2016-02-03 23:23:04 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-02-03 23:23:04 +0000 |
commit | cf96ca13c66cc873f51f3f580dc438d013b31241 (patch) | |
tree | 5e10bdf65b841bbcf04fcc73bccf57fed8aa7fea /Master/tlpkg/bin/tlpkginfo | |
parent | 5bde818d4507934bd514e3a8a2cba02b718928c3 (diff) |
babel (2feb16)
git-svn-id: svn://tug.org/texlive/trunk@39571 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpkginfo')
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index bf949518d18..808c0b8e5ad 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -70,8 +70,8 @@ sub ctaninfo { # erroneous or problematic tds files (when new, tell CTAN and author) $erroneous_tds = join ("|", - qw(alertmessage countriesofeurope dad ebproof engpron gost hacm imtekda - mathdesign tufte-latex xassoccnt), + qw(alertmessage babel countriesofeurope dad ebproof engpron gost + hacm imtekda mathdesign tufte-latex xassoccnt), ); # Heiko's tds files (don't propagate through CTAN fast enough). @@ -348,7 +348,7 @@ sub catalogue_find_ctan_path { # # Create a tmpdir with the tds-ready tree for PKG unpacked, if it exists, # else return the normal ctan dir for PKG. Return undef if no package -# or can't find the ctan directory. +# or can't find any ctan directory. # sub prepare { my ($pkg) = @_; @@ -369,6 +369,7 @@ sub prepare { # will be ignored below if it doesn't exist. # ...and except for context, and plenty more... + # We really need to get the install path out of the Catalogue entry. } elsif ($pkg eq "context") { $tds_path = "/home/ftp/mirror/www.pragma-ade.com/context/current/cont-tmf.zip"; @@ -378,9 +379,6 @@ sub prepare { $tds_path = "$CTAN/systems/enctex/enctex.tar.gz"; } elsif ($pkg eq "fibeamer") { - # we need to parse the Catalogue .xml for the <install> path, - # but hack around it since this is the only (?) one - # that doesn't fit the pattern. $tds_path = "$CTAN/install/macros/latex/contrib/$pkg.tds.zip"; } elsif ($pkg eq "hfoldsty") { @@ -389,6 +387,10 @@ sub prepare { } elsif ($pkg eq "latex") { $tds_path = "$CTAN/install/macros/latex/latex-base.tds.zip"; +# except the babel.tds.zip is useless at present +# } elsif ($pkg eq "babel") { +# $tds_path = "$CTAN/install/macros/latex/required/babel.tds.zip"; + } elsif ($pkg eq "pgf") { $tds_path = "$CTAN/install/graphics/pgf/base/pgf.tds.zip"; |