diff options
author | Karl Berry <karl@freefriends.org> | 2013-09-22 23:14:09 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-09-22 23:14:09 +0000 |
commit | 5010482fdc18cbbc983853b6161acba5dd0a010b (patch) | |
tree | 0736a0d5f6a4d003d0502e93a7a627a10b96609c /Master/tlpkg/bin | |
parent | 1bee58c35e492959f2b99b422d9660a50b3c6df9 (diff) |
tap (long delayed sync from ctan)
git-svn-id: svn://tug.org/texlive/trunk@31731 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 4 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 9602887dbe1..c32b5ee8d1a 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -439,7 +439,7 @@ my @TLP_working = qw( tabriz-thesis tabto-generic tabto-ltx tabu tabularborder tabularcalc tabularew tabulars-e tabulary tabvar tagging talk tamefloats - tamethebeast tapir tcldoc tcolorbox tdclock tdsfrmath + tamethebeast tap tapir tcldoc tcolorbox tdclock tdsfrmath technics ted templates-fenn templates-sommer tengwarscript tensor termcal termlist teubner tex-ewd tex-font-errors-cheatsheet tex-gyre tex-gyre-math @@ -447,7 +447,7 @@ my @TLP_working = qw( texapi texbytopic texcount texdef texdiff texdirflatten texilikechaps texilikecover texliveonfly texloganalyser texlogos texmate texments - texpower texshade texsis + texpower texshade textcase textfit textglos textgreek textmerg textopo textpath textpos tfrupee thalie theoremref thesis-titlepage-fhac thinsp thmbox thmtools threadcol threeddice threeparttable threeparttablex diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index 41589798d29..73a3c032bc7 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -355,10 +355,15 @@ sub copy_to_tmpdir { system ("cp -p '$src' '$pkgdir/'") if $src; - # special cases + # there's no real ctan dir for these packages, just zips. + my $zip = ""; if ($pkgname eq "cc-pl") { - # there's no real ctan dir for this package, just a zip - system ("cd $pkgdir && unzip -q cc-pl.zip && rm cc-pl.zip"); + $zip = "cc-pl.zip" + } elsif ($pkgname eq "tap") { + $zip = "tap077.zip" + } + if ($zip) { + system ("cd $pkgdir && unzip -q $zip && rm $zip"); } return $pkgdir; |