diff options
author | Karl Berry <karl@freefriends.org> | 2014-12-02 16:58:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-12-02 16:58:58 +0000 |
commit | cefa8c2a1ee0c21624530a06e0d59af8e16e4a92 (patch) | |
tree | 571eb49267c1c45366493147dc68f449a14deeee /Master/tlpkg/libexec | |
parent | 4745714e751cdaaaf25911db917ea20b34c072ef (diff) |
startex in tlpkg-ctan-check
git-svn-id: svn://tug.org/texlive/trunk@35718 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 22acbb31d23..bd39e5af50a 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -948,7 +948,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'springer', "die 'skipping, licenses not checked'", 'sprite', "die 'skipping, noinfo license'", 'ssqquote', "die 'skipping, nonfree license'", - 'startex', "die 'skipping, own format, sorry'", +# 'startex', "die 'skipping, own format, sorry'", 'statrep', "die 'skipping, only for nonfree sas'", 'staves', "&MAKEflatten", 'stmaryrd', "&MAKEflatten", @@ -1194,7 +1194,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'lilyglyphs' => '&POSTlilyglyphs', 'listbib' => '&POSTlistbib', 'lithuanian' => '&POSTlithuanian', - 'lollipop' => '&POSTlollipop', + 'lollipop' => '&POSTotherformat', 'luaotfload' => '&POST_do_man', 'luatexja' => '&POSTluatexja', 'm-tx' => '&POST_do_man', @@ -1216,6 +1216,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'pxbase' => '&POSTpxbase', 'pxchfon' => '&POSTpxchfon', 'splitindex' => '&POST_do_man', + 'startex' => '&POSTotherformat', 'tap', => '&POSTtap', 'texdraw', => '&POSTtexdraw', 'tex-ps', => '&POSTtex_ps', @@ -1313,6 +1314,7 @@ $standarddest = "texmf-dist"; 'ruhyphen', 'generic', 'shapepar', 'generic', 'spelling', 'luatex', + 'startex', 'startex', 'systeme', 'generic', 'tabto-generic', 'generic', 'tap', 'generic', @@ -1604,7 +1606,7 @@ $standardtex='\.(.bx|cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$'; 'smartdiagram','code\.tex|' . $standardtex, 'splitindex', 'splitindex\.tex|' . $standardtex, 'spotcolor', 'spotcolor.*\.tex|' . $standardtex, - 'startex', '\.tex', + 'startex', '\.(tex|stx|lan)$', 'subfig', '\.sty|[^c]\.cfg', # not ltxdoc.cfg, would be system-wide 'subfigure', '\.sty|[^c]\.cfg', # not ltxdoc.cfg, would be system-wide 'syntax', 'syntax\.tex', @@ -2703,6 +2705,7 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' 'piechartmp' => 'piechartmp.pdf', # no source 'ptptex' => '(overcite|cite|wrapfig).sty', # duplicated 'sapthesis' => '.*-ML.*\.pdf', # univ logos + 'startex' => 'epsf.tex', # stale copy 'stubs' => 'stubs.pdf', # no source 'susy' => 'susy.pdf', # no source 'swimgraf' => 'swimgraf.pdf', # no source @@ -5569,11 +5572,6 @@ sub POSTlithuanian { &SYSTEM ("$MV $DEST/doc/latex/lithuanian/l7xenc.dfu $DEST/tex/latex/lithuanian/"); } -sub POSTlollipop { - print "POST$package - move macros up a level\n"; - &SYSTEM ("$MV $DEST/tex/$package/$package/* $DEST/tex/$package/"); -} - sub POSTluatexja { print "POST$package - runins, move directories\n"; &xchdir ("src"); @@ -5638,6 +5636,11 @@ sub POSTnumericplots { &SYSTEM ("$MV latex $DEST/tex/latex/$package"); } +sub POSTotherformat { + print "POST$package - move macros up a level\n"; + &SYSTEM ("$MV $DEST/tex/$package/$package/* $DEST/tex/$package/"); +} + sub POSTpas_vc { print "POST$package - mv latex subdir, doc files\n"; &SYSTEM ("$MV latex $DEST/tex/latex/$package"); |