diff options
author | Karl Berry <karl@freefriends.org> | 2023-02-26 22:10:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-02-26 22:10:41 +0000 |
commit | 4f9cc3ca3991fea9396b4219951d9317e820cab8 (patch) | |
tree | 2c88ab04e3b15bb1832d573189ca269d1bd5c32f /Master/tlpkg | |
parent | a836aa89aaff61055928dbf4ba0ea3ef8f15bc51 (diff) |
initial attempts at supporting lmtx, which is not available on all platforms
git-svn-id: svn://tug.org/texlive/trunk@66204 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 2 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 4 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/context.tlpsrc | 16 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/graphics.tlpsrc | 1 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/stubs.tlpsrc | 1 |
5 files changed, 13 insertions, 11 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 0bf24333a3c..4301c416821 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -257,7 +257,7 @@ our %TLPDBSettings = ( our $WindowsMainMenuName = "TeX Live $ReleaseYear"; # Comma-separated list of engines which do not exist on all platforms. -our $PartialEngineSupport = "luajithbtex,luajittex,mfluajit"; +our $PartialEngineSupport = "luametatex,luajithbtex,luajittex,mfluajit"; # Flags for error handling across the scripts and modules # all fine diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index dab1ade3e6a..bb48891709e 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -499,7 +499,7 @@ sub make_tlpobj { } # now @todoarchs contains only those archs for which we want # to match the pattern - foreach my $arch (@todoarchs) { + foreach my $arch (sort @todoarchs) { # get only those files matching the pattern my @archfiles = $tltree->get_matching_files('bin',$finalp, $pkgname, $arch); if (!@archfiles) { @@ -536,7 +536,7 @@ sub make_tlpobj { } # now @todoarchs contains only those archs for which we want # to match the pattern - foreach my $arch (@todoarchs) { + foreach my $arch (sort @todoarchs) { # get only those files matching the pattern my @archfiles = $tltree->get_matching_files('bin', $finalp, $pkgname, $arch); if (!@archfiles) { diff --git a/Master/tlpkg/tlpsrc/context.tlpsrc b/Master/tlpkg/tlpsrc/context.tlpsrc index be0366c0108..043d14c949d 100644 --- a/Master/tlpkg/tlpsrc/context.tlpsrc +++ b/Master/tlpkg/tlpsrc/context.tlpsrc @@ -30,7 +30,6 @@ runpattern +d texmf-dist/tex/generic/context # See longdesc in mptopdf.tlpsrc runpattern +!d texmf-dist/tex/context/base/mkii runpattern +!f texmf-dist/scripts/context/perl/mptopdf.pl -runpattern +!f texmf-dist/scripts/context/stubs/mswin/mptopdf.exe runpattern +!f texmf-dist/tex/generic/context/mptopdf/mptopdf.tex docpattern +!f texmf-dist/doc/context/scripts/mkii/mptopdf.man #depend mptopdf - not anymore @@ -49,8 +48,13 @@ docpattern +f texmf-dist/doc/man/man1/context.* docpattern +f texmf-dist/doc/man/man1/mtx-* docpattern +f texmf-dist/doc/man/man1/mtxrun.* # -binpattern f bin/${ARCH}/context -binpattern f bin/${ARCH}/context.lua -binpattern f bin/${ARCH}/luametatex -binpattern f bin/${ARCH}/mtxrun -binpattern f bin/${ARCH}/mtxrun.lua +# Not all platforms provide this. +tlpsetvar no_lmtx_platforms \ + amd64-netbsd,i386-netbsd,i386-solaris,universal-darwin,\ +x86_64-cygwin,x86_64-darwinlegacy,x86_64-solaris +# +binpattern f/!${no_lmtx_platforms} bin/${ARCH}/context +binpattern f/!${no_lmtx_platforms} bin/${ARCH}/context.lua +binpattern f/!${no_lmtx_platforms} bin/${ARCH}/luametatex +binpattern f/!${no_lmtx_platforms} bin/${ARCH}/mtxrun +binpattern f/!${no_lmtx_platforms} bin/${ARCH}/mtxrun.lua diff --git a/Master/tlpkg/tlpsrc/graphics.tlpsrc b/Master/tlpkg/tlpsrc/graphics.tlpsrc index 98e8bc22f82..08dbc0adee7 100644 --- a/Master/tlpkg/tlpsrc/graphics.tlpsrc +++ b/Master/tlpkg/tlpsrc/graphics.tlpsrc @@ -1,6 +1,5 @@ catalogue latex-graphics # -runpattern +!d texmf-dist/scripts/context/ruby/graphics runpattern +!d texmf-dist/tex/latex-dev/graphics docpattern +!d texmf-dist/doc/latex-dev/graphics srcpattern +!d texmf-dist/source/latex-dev/graphics diff --git a/Master/tlpkg/tlpsrc/stubs.tlpsrc b/Master/tlpkg/tlpsrc/stubs.tlpsrc index 6576070254b..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/stubs.tlpsrc +++ b/Master/tlpkg/tlpsrc/stubs.tlpsrc @@ -1 +0,0 @@ -runpattern +!d texmf-dist/scripts/context/stubs |