diff options
author | Karl Berry <karl@freefriends.org> | 2020-04-24 21:04:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-04-24 21:04:37 +0000 |
commit | b5cfe0628998f7a30d60ece2bc23d785102d6bc3 (patch) | |
tree | 849fe45c6f99d04016620ddcce01484cf2c43ed0 /Master/tlpkg/libexec | |
parent | f579cd3953cc1f63f679445666d047843c1482eb (diff) |
picture (24apr20)
git-svn-id: svn://tug.org/texlive/trunk@54867 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 1e9b49fd1d2..032a98174e6 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -2822,6 +2822,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'pageslts' => 'tex -translate-file=empty.tcx', # no 8-bit 'papermas' => 'tex', 'pauldoc' => 'latex', # requires interaction + 'picture' => 'etex', 'placeat' => 'luatex', 'poemscol' => 'latex', # requires interaction 'polski' => 'latex', # requires interaction @@ -3347,7 +3348,6 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' 'accfonts' => $standardclean . '|dvips.enc', # dup enc 'acmconf' => $standardclean . '|flushend.sty', # dup with sttools 'apalike' => "apalike2.bst", # does not belong - 'askinclude' => $standardclean . '|askinclude\.(drv|ins)', # made from dtx 'axodraw2' => 'axohelp.exe', # done with binaries 'bardiag' => "example/.*(aux|log)", # junk on CTAN 'bibleref' => $standardclean . '|sample.tex|sample-.*', # derived uploaded @@ -3879,6 +3879,12 @@ sub runins { if (! grep (/$package\.ins$/, @filenames) && -r "$package.ins") { #&runjob ("yes | sed 10q | $env_mktex $insrunner $package.ins"); &runjob ("$invoke_insrunner $package.ins"); + # and this will normally create .drv and .ins files, + # which don't need to be distributed. + $specialclean{$package} + = $standardclean . "|$package\.(drv|ins)\$" # made from dtx + if ! exists $specialclean{$package}; + warn "set specialclean{$package} = $specialclean{$package}\n"; } } |