diff options
author | Karl Berry <karl@freefriends.org> | 2010-03-08 01:09:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-03-08 01:09:46 +0000 |
commit | a81aa67c15e2785142204eef54b3ddcaf9ab29d3 (patch) | |
tree | 734f1a0009d89b43debebf4e32c4438f06c4e516 /Master/tlpkg/bin | |
parent | 16d4328eddf7525d22a0e8b113432a9ed343935b (diff) |
ltabptch doc update (7mar10)
git-svn-id: svn://tug.org/texlive/trunk@17371 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index feeb02aa1f0..a777971ad7c 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -139,7 +139,7 @@ my @TLP_working = qw( gfsartemisia gfsbodoni gfscomplutum gfsdidot gfsneohellenic gfsporson gfssolomos ginpenc gloss glossaries gmdoc gmdoc-enhance gmeometric - gmiflink gmutils gmverb gmverse gnu-freefont gnuplottex gost + gmiflink gmutils gmverb gmverse gnuplottex gost graphics graphics-pln graphicx-psmin greek-inputenc greekdates greenpoint grfpaste grid gridset grverb gu guitar guitlogo @@ -315,11 +315,14 @@ my @TLP_working = qw( ); # these packages we do not expect to check: -my @TLP_no_check = qw( - afm2pl # not on CTAN - aleph # binary - fontname # tl-update-auto - gnu-freefont # hefferon test case +my @TLP_no_check = ( + "afm2pl", # not on CTAN + "aleph", # binary + "bibtex", # binary + "bibtex8", # binary + "fontname", # tl-update-auto + "gnu-freefont", # only packed on CTAN + "synctex", # binary ); exit (&main ()); @@ -338,9 +341,13 @@ sub main } if ($ARGV[0] eq "--list-not-treated") { - print "TeX Live packages not in $0:\n"; for my $b (&normal_tlps ()) { - print "$b\n" if ! grep ($b eq $_, @TLP_working, @TLP_no_check) + my @not_checked = (); + if (! grep ($b eq $_, @TLP_working, @TLP_no_check)) { + push (@not_checked, $b); + } + print "" . (@not_checked+0) . " TeX Live packages not checked against CTAN:\n"; + print "@not_checked\n"; } @ARGV = (); # no normal checks |