diff options
author | Karl Berry <karl@freefriends.org> | 2010-10-30 00:05:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-10-30 00:05:15 +0000 |
commit | bcc0e00b0f844b2c93ecc3e6512b706d73b369d9 (patch) | |
tree | 9b3e8adbb5c7b21fc8f3c6abe12ff7613e113999 /Master/tlpkg | |
parent | 5450380e116e99e8bbfc0c08ec36ab0bba813883 (diff) |
amscls, via latex-tds (27oct10)
git-svn-id: svn://tug.org/texlive/trunk@20248 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 4 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tlpkginfo | 1 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 6 |
3 files changed, 8 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 77989c5a5c1..76a24b15e0e 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -31,7 +31,7 @@ my @TLP_working = qw( ae aeguill afthesis aguplus aiaa aichej akletter alg algorithm2e algorithmicx algorithms alnumsec alterqcm - altfont ametsoc amsaddr amsfonts amslatex-primer amsldoc-it + altfont ametsoc amsaddr amscls amsfonts amslatex-primer amsldoc-it amsmath amsrefs amstex amsthdoc-it animate anonchap antt answers ANUfinalexam anyfontsize anysize apa apacite apalike apalike2 appendix apl apprends-latex @@ -361,8 +361,6 @@ my @TLP_working = qw( my @TLP_no_check = ( "afm2pl", # not on CTAN "aleph", # binary - "amscls", # ams confused - "amstex", # ams confused "asymptote", # binary "bibtex", # binary "bibtex8", # binary diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo index 2b3b6aaa44f..877894d194d 100755 --- a/Master/tlpkg/bin/tlpkginfo +++ b/Master/tlpkg/bin/tlpkginfo @@ -317,6 +317,7 @@ sub prepare chomp (my @dirlist = `find */*/* -type d | sort -u`); for my $dir (@dirlist) { next if $dir =~ m!$pkg$!; # keep matching directories + next if $pkg eq "amscls" && $dir =~ m,bst/ams$,; # ams{alpha,plain}.bst push (@deldir, $dir); } system ("rm -rf @deldir"); # discard the rest diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 06a7dfb8e24..7939f68b6ec 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -755,6 +755,7 @@ $Master = "$mydir/../.."; ); %posthook = ( + 'amscls' => '&POSTamscls', 'amstex' => '&POSTamstex', 'apalike' => '&POSTapalike', 'babelbib' => '&POSTbabelbib', @@ -3888,6 +3889,11 @@ sub PREHOOK_wsuipa +sub POSTamscls { + print "POST$package - bibtex/bst/amscls\n"; + &SYSTEM ("$MV $DEST/bibtex/bst/ams $DEST/bibtex/bst/amscls"); +} + sub POSTamstex { print "POST$package - cleanup, base subdir\n"; die "not done -- doc format, man page, goodbye"; # but pretty close |