summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check4
-rwxr-xr-xMaster/tlpkg/bin/tlpkginfo11
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;