diff options
author | Karl Berry <karl@freefriends.org> | 2022-01-28 22:36:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-01-28 22:36:18 +0000 |
commit | 8e0222695a489184e3cc92e2206db971a5ac48d7 (patch) | |
tree | 99a87c1d1a3890dcb28b20d17ae8d9087dae5abf /Master/tlpkg/libexec | |
parent | 80c6e1a9d95b03212dfaf529e0266286828573e0 (diff) |
texlogfilter (28jan22)
git-svn-id: svn://tug.org/texlive/trunk@61780 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 10490a7dc14..9e44b563a39 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1575,6 +1575,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'stix' => '&PREHOOK_stix', 'texdraw' => '&PREHOOK_texdraw', 'texfot' => '&PREHOOK_texfot', + 'texlogfilter' => '&PREHOOK_texlogfilter', 'tkz-graph' => '&PREHOOK_flatten1', 'tlcockpit' => '&PREHOOK_tlcockpit', 'tudscr' => '&PREHOOK_tudscr', @@ -3529,6 +3530,7 @@ $standardttf = '\.ttf|\.TTC'; 'texfot' => 'texfot\.pl$', 'texliveonfly' => '\.py$', 'texloganalyser' => 'texloganalyser$', + 'texlogfilter' => 'texlogfilter$', 'texlogsieve' => 'texlogsieve$', 'texosquery' => 'texosquery(|-jre[5-9])\.sh$', 'texplate' => 'texplate\.sh$', @@ -3609,9 +3611,10 @@ $standardttf = '\.ttf|\.TTC'; 'srcredact' => '\.1$', 'sty2dtx' => '\.1$', 'texdiff' => 'texdiff.1', + 'texdirflatten' => 'texdirflatten.1', 'texdoc' => '\.1$', 'texfot' => '\.1$', - 'texdirflatten' => 'texdirflatten.1', + 'texlogfilter' => '\.1$', 'texlogsieve' => '\.1$', 'tikztosvg' => '\.1$', 'tlcockpit' => '\.man$', @@ -6077,6 +6080,11 @@ sub PREHOOK_texfot { &SYSTEM ("$RM $package.pdf"); } +sub PREHOOK_texlogfilter { + print "PREHOOK_$package - make .1 with pod2man\n"; + &prehook_pod2man ("Julien Labbe", "texlogfilter"); +} + sub PREHOOK_tlcockpit { print "PREHOOK_$package - flatten only jar/ and scripts/\n"; &SYSTEM ("$MV jar/* ."); |