texlive[62436] trunk: build hitex.fmt and hilatex.fmt, using

commits+karl at tug.org commits+karl at tug.org
Sat Mar 5 18:45:17 CET 2022


Revision: 62436
          http://tug.org/svn/texlive?view=revision&revision=62436
Author:   karl
Date:     2022-03-05 18:45:17 +0100 (Sat, 05 Mar 2022)
Log Message:
-----------
build hitex.fmt and hilatex.fmt, using hi*page.tex

Modified Paths:
--------------
    trunk/Build/source/texk/kpathsea/ChangeLog
    trunk/Build/source/texk/kpathsea/texmf.cnf
    trunk/Build/source/texk/web2c/hitexdir/doc/Makefile
    trunk/Build/source/texk/web2c/hitexdir/tex/hiltxpage.tex
    trunk/Build/source/texk/web2c/hitexdir/tex/hiplainpage.tex
    trunk/Build/source/texk/web2c/hitexdir/tex/ifhint.tex
    trunk/Master/texmf-dist/web2c/texmf.cnf
    trunk/Master/tlpkg/tlpsrc/hitex.tlpsrc

Added Paths:
-----------
    trunk/Build/source/texk/web2c/hitexdir/tex/Makefile
    trunk/Build/source/texk/web2c/hitexdir/tex/hilatex.ini
    trunk/Build/source/texk/web2c/hitexdir/tex/hitex.ini
    trunk/Master/texmf-dist/tex/hitex/
    trunk/Master/texmf-dist/tex/hitex/base/
    trunk/Master/texmf-dist/tex/hitex/base/hilatex.ini
    trunk/Master/texmf-dist/tex/hitex/base/hiltxpage.tex
    trunk/Master/texmf-dist/tex/hitex/base/hiplainpage.tex
    trunk/Master/texmf-dist/tex/hitex/base/hitex.ini
    trunk/Master/texmf-dist/tex/hitex/base/ifhint.tex

Removed Paths:
-------------
    trunk/Build/source/texk/web2c/hitexdir/tex/README

Modified: trunk/Build/source/texk/kpathsea/ChangeLog
===================================================================
--- trunk/Build/source/texk/kpathsea/ChangeLog	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/kpathsea/ChangeLog	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,3 +1,7 @@
+2022-03-05  Karl Berry  <karl at freefriends.org>
+
+	* texmf.cnf (TEXINPUTS.hi*tex): new entries.
+
 2022-02-27  Karl Berry  <karl at tug.org>
 
 	* texmf.cnf (nest_size): 500 -> 1000.

Modified: trunk/Build/source/texk/kpathsea/texmf.cnf
===================================================================
--- trunk/Build/source/texk/kpathsea/texmf.cnf	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/kpathsea/texmf.cnf	2022-03-05 17:45:17 UTC (rev 62436)
@@ -281,7 +281,12 @@
 % OpTeX.
 TEXINPUTS.optex         = $TEXMFDOTDIR;$TEXMF/tex/{optex,plain,generic,}//
 
-% jadetex.
+% HiTeX.
+TEXINPUTS.hilatex       = $TEXMFDOTDIR;$TEXMF/tex/{hilatex,latex,hitex,generic,}//
+TEXINPUTS.hilatex-dev   = $TEXMFDOTDIR;$TEXMF/tex/{latex-dev,hilatex,latex,hitex,generic,}//
+TEXINPUTS.hitex         = $TEXMFDOTDIR;$TEXMF/tex/{hitex,plain,generic,latex,}//
+
+% JadeTeX.
 TEXINPUTS.jadetex       = $TEXMFDOTDIR;$TEXMF/tex/{jadetex,latex,generic,latex,}//
 TEXINPUTS.pdfjadetex    = $TEXMFDOTDIR;$TEXMF/tex/{jadetex,latex,generic,latex,}//
 

Modified: trunk/Build/source/texk/web2c/hitexdir/doc/Makefile
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/doc/Makefile	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/web2c/hitexdir/doc/Makefile	2022-03-05 17:45:17 UTC (rev 62436)
@@ -3,7 +3,7 @@
 # This is not run as part of the build, just a convenience used by hand
 # from the Build/source/... directory.
 
-INSTALL_DATA = cp -pf
+INSTALL_DATA = cp -pfv
 
 texmf_dist = ../../../../../../Master/texmf-dist
 hitex_makeindex_dir = $(texmf_dist)/makeindex/hitex/hint.ist
@@ -13,4 +13,4 @@
 	$(INSTALL_DATA) hint.ist $(hitex_makeindex_dir)
 	for f in hiformat.hnt hiformat.pdf hint.sty \
 	         hitexman.hnt hitexman.pdf hitexman.tex; do \
-	  $(INSTALL_DATA) $$f $(hitex_doc_dir) || exit 1; done
+	  $(INSTALL_DATA) $$f $(hitex_doc_dir)/ || exit 1; done

Added: trunk/Build/source/texk/web2c/hitexdir/tex/Makefile
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/Makefile	                        (rev 0)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/Makefile	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,21 @@
+# $Id$
+# Standalone Makefile for hitex/tex. Public domain.
+# This is not run as part of the build, just a convenience used by hand
+# from the Build/source/... directory.
+
+INSTALL_DATA = cp -pfv
+
+texmf_dist = ../../../../../../Master/texmf-dist
+hitex_doc_dir = $(texmf_dist)/tex/hitex/base
+#
+install:
+	for f in hilatex.ini hiltxpage.tex hiplainpage.tex \
+	         hitex.ini ifhint.tex; do \
+	  $(INSTALL_DATA) $$f $(hitex_doc_dir)/ || exit 1; done
+
+fmt: hitex.fmt
+hitex.fmt: hitex.ini
+	hitex -ini -etex -ltx $<
+
+clean:
+	rm -f *.fmt *.log *.aux *.hint *.hnt


Property changes on: trunk/Build/source/texk/web2c/hitexdir/tex/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Deleted: trunk/Build/source/texk/web2c/hitexdir/tex/README
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/README	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/README	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,2 +0,0 @@
-q$Id$
-TeX input files for HiTeX. Eventually will end up in the Master/ runtime tree.

Added: trunk/Build/source/texk/web2c/hitexdir/tex/hilatex.ini
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/hilatex.ini	                        (rev 0)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/hilatex.ini	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,10 @@
+% $Id$
+% Karl Berry, 2022. Public domain.
+\scrollmode
+\let\dumpprimitiveforhilatex\dump % regain control after latex.ltx
+\let\dump\relax
+\input latex.ltx
+\input ifhint.tex
+\input hiltxpage.tex
+\dumpprimitiveforhilatex
+\endinput


Property changes on: trunk/Build/source/texk/web2c/hitexdir/tex/hilatex.ini
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Modified: trunk/Build/source/texk/web2c/hitexdir/tex/hiltxpage.tex
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/hiltxpage.tex	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/hiltxpage.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,3 +1,28 @@
+% Copyright 2017-2022 Martin Ruckert, Hochschule Muenchen, Lothstrasse 64, 80336 Muenchen
+%
+% Permission is hereby granted, free of charge, to any person obtaining a copy
+% of this software and associated documentation files (the "Software"), to deal
+% in the Software without restriction, including without limitation the rights
+% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+% copies of the Software, and to permit persons to whom the Software is
+% furnished to do so, subject to the following conditions:
+%
+% The above copyright notice and this permission notice shall be
+% included in all copies or substantial portions of the Software.
+%
+% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+% COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
+% OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+% THE SOFTWARE.
+%
+% Except as contained in this notice, the name of the copyright holders shall
+% not be used in advertising or otherwise to promote the sale, use or other
+% dealings in this Software without prior written authorization from the
+% copyright holders.
+
 \ifhint
 \textwidth=\hsize
 \textheight=\vsize

Modified: trunk/Build/source/texk/web2c/hitexdir/tex/hiplainpage.tex
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/hiplainpage.tex	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/hiplainpage.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,3 +1,28 @@
+% Copyright 2017-2022 Martin Ruckert, Hochschule Muenchen, Lothstrasse 64, 80336 Muenchen
+%
+% Permission is hereby granted, free of charge, to any person obtaining a copy
+% of this software and associated documentation files (the "Software"), to deal
+% in the Software without restriction, including without limitation the rights
+% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+% copies of the Software, and to permit persons to whom the Software is
+% furnished to do so, subject to the following conditions:
+%
+% The above copyright notice and this permission notice shall be
+% included in all copies or substantial portions of the Software.
+%
+% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+% COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
+% OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+% THE SOFTWARE.
+%
+% Except as contained in this notice, the name of the copyright holders shall
+% not be used in advertising or otherwise to promote the sale, use or other
+% dealings in this Software without prior written authorization from the
+% copyright holders.
+
 \ifhint
   \dimen0=1.25\hsize
   \advance\dimen0 by -9pt

Added: trunk/Build/source/texk/web2c/hitexdir/tex/hitex.ini
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/hitex.ini	                        (rev 0)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/hitex.ini	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,8 @@
+% $Id$
+% Karl Berry, 2022. Public domain.
+%\input plain.tex
+\input etex.src
+\input ifhint.tex
+\input hiplainpage.tex
+\dump
+\endinput


Property changes on: trunk/Build/source/texk/web2c/hitexdir/tex/hitex.ini
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Modified: trunk/Build/source/texk/web2c/hitexdir/tex/ifhint.tex
===================================================================
--- trunk/Build/source/texk/web2c/hitexdir/tex/ifhint.tex	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Build/source/texk/web2c/hitexdir/tex/ifhint.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,3 +1,5 @@
+% Public domain. Originally written by Martin Ruckert.
+
 \newif\ifhint
 % How to test for the HiTeX engine
 \expandafter\ifx\csname HINTversion\endcsname\relax

Added: trunk/Master/texmf-dist/tex/hitex/base/hilatex.ini
===================================================================
--- trunk/Master/texmf-dist/tex/hitex/base/hilatex.ini	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/hitex/base/hilatex.ini	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,10 @@
+% $Id$
+% Karl Berry, 2022. Public domain.
+\scrollmode
+\let\dumpprimitiveforhilatex\dump % regain control after latex.ltx
+\let\dump\relax
+\input latex.ltx
+\input ifhint.tex
+\input hiltxpage.tex
+\dumpprimitiveforhilatex
+\endinput


Property changes on: trunk/Master/texmf-dist/tex/hitex/base/hilatex.ini
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/hitex/base/hiltxpage.tex
===================================================================
--- trunk/Master/texmf-dist/tex/hitex/base/hiltxpage.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/hitex/base/hiltxpage.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,78 @@
+% Copyright 2017-2022 Martin Ruckert, Hochschule Muenchen, Lothstrasse 64, 80336 Muenchen
+%
+% Permission is hereby granted, free of charge, to any person obtaining a copy
+% of this software and associated documentation files (the "Software"), to deal
+% in the Software without restriction, including without limitation the rights
+% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+% copies of the Software, and to permit persons to whom the Software is
+% furnished to do so, subject to the following conditions:
+%
+% The above copyright notice and this permission notice shall be
+% included in all copies or substantial portions of the Software.
+%
+% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+% COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
+% OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+% THE SOFTWARE.
+%
+% Except as contained in this notice, the name of the copyright holders shall
+% not be used in advertising or otherwise to promote the sale, use or other
+% dealings in this Software without prior written authorization from the
+% copyright holders.
+
+\ifhint
+\textwidth=\hsize
+\textheight=\vsize
+\newinsert\topins
+\skip\topins=0pt % no space added when a topinsert is present
+\count\topins=1000 % magnification factor (1 to 1)
+\dimen\topins=\maxdimen % no limit per page
+\def\topinsert{\bgroup\setbox0\vbox\bgroup}
+\def\endinsert{\egroup
+  \insert\topins{%
+  \penalty100\splittopskip0pt\floatingpenalty0\box0\nobreak\bigskip\egroup}}
+\dimen0=1.25\hsize
+\advance\dimen0 by -9pt
+\dimen1=1.25\vsize
+\advance\dimen1 by -9pt
+\HINTsetpage1 = basic 
+  priority 10
+  width  \dimen0
+  height \dimen1 
+{%
+    \maxdepth=4pt
+    \topskip=10pt
+    \HINTstream\topins %topinsert
+    \HINTstream0 %main text
+    \HINTstream\footins   
+  \HINTsetstream\topins = %topinsert 
+    prefered 0
+  {% 
+    \HINTafter = {}
+  }
+  \HINTsetstream\footins =%footnotes
+    prefered 255
+    ratio 0
+  {%
+    \hsize=300pt
+    \count\footins=1000 % the magnification factor
+    \skip\footins=\bigskipamount % the extra space needed
+    \dimen\footins=\vsize % maximum height on the page
+    \HINTbefore = 
+     {\vskip\skip\footins
+     \footnoterule}
+    \HINTafter = {}
+  }
+}% end page template
+\fi
+
+% the footins had this:
+%    \before = 
+%     {\vskip 0pt plus 1filll\vskip 9pt plus 4pt minus 2pt
+%      \kern -3pt
+%      \hrule width 5em
+%      \kern 2.6pt}
+%  }


Property changes on: trunk/Master/texmf-dist/tex/hitex/base/hiltxpage.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/hitex/base/hiplainpage.tex
===================================================================
--- trunk/Master/texmf-dist/tex/hitex/base/hiplainpage.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/hitex/base/hiplainpage.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,60 @@
+% Copyright 2017-2022 Martin Ruckert, Hochschule Muenchen, Lothstrasse 64, 80336 Muenchen
+%
+% Permission is hereby granted, free of charge, to any person obtaining a copy
+% of this software and associated documentation files (the "Software"), to deal
+% in the Software without restriction, including without limitation the rights
+% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+% copies of the Software, and to permit persons to whom the Software is
+% furnished to do so, subject to the following conditions:
+%
+% The above copyright notice and this permission notice shall be
+% included in all copies or substantial portions of the Software.
+%
+% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+% COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+% WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
+% OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+% THE SOFTWARE.
+%
+% Except as contained in this notice, the name of the copyright holders shall
+% not be used in advertising or otherwise to promote the sale, use or other
+% dealings in this Software without prior written authorization from the
+% copyright holders.
+
+\ifhint
+  \dimen0=1.25\hsize
+  \advance\dimen0 by -9pt
+  \dimen1=1.25\vsize
+  \advance\dimen1 by -9pt
+\HINTsetpage1 = basic 
+  priority 10
+  width  \dimen0
+  height \dimen1 
+{%
+    \maxdepth=4pt
+    \topskip=10pt
+    \HINTstream\topins %topinsert
+    \HINTstream0 %main text
+    \HINTstream\footins   
+  \HINTsetstream\topins = %topinsert 
+    prefered 0
+  {% 
+    \HINTafter = {}
+  }
+  \HINTsetstream\footins =%footnotes
+    prefered 255
+    ratio 0
+  {%
+    \hsize=300pt
+    \count\footins=1000 % the magnification factor
+    \skip\footins=\bigskipamount % the extra space needed
+    \dimen\footins=\vsize % maximum height on the page
+    \HINTbefore = 
+     {\vskip\skip\footins
+     \footnoterule}
+    \HINTafter = {}
+  }
+}% end page template
+\fi


Property changes on: trunk/Master/texmf-dist/tex/hitex/base/hiplainpage.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/hitex/base/hitex.ini
===================================================================
--- trunk/Master/texmf-dist/tex/hitex/base/hitex.ini	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/hitex/base/hitex.ini	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,8 @@
+% $Id$
+% Karl Berry, 2022. Public domain.
+%\input plain.tex
+\input etex.src
+\input ifhint.tex
+\input hiplainpage.tex
+\dump
+\endinput


Property changes on: trunk/Master/texmf-dist/tex/hitex/base/hitex.ini
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/hitex/base/ifhint.tex
===================================================================
--- trunk/Master/texmf-dist/tex/hitex/base/ifhint.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/hitex/base/ifhint.tex	2022-03-05 17:45:17 UTC (rev 62436)
@@ -0,0 +1,9 @@
+% Public domain. Originally written by Martin Ruckert.
+
+\newif\ifhint
+% How to test for the HiTeX engine
+\expandafter\ifx\csname HINTversion\endcsname\relax
+  \hintfalse
+\else
+  \hinttrue
+\fi


Property changes on: trunk/Master/texmf-dist/tex/hitex/base/ifhint.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/web2c/texmf.cnf
===================================================================
--- trunk/Master/texmf-dist/web2c/texmf.cnf	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Master/texmf-dist/web2c/texmf.cnf	2022-03-05 17:45:17 UTC (rev 62436)
@@ -281,7 +281,12 @@
 % OpTeX.
 TEXINPUTS.optex         = $TEXMFDOTDIR;$TEXMF/tex/{optex,plain,generic,}//
 
-% jadetex.
+% HiTeX.
+TEXINPUTS.hilatex       = $TEXMFDOTDIR;$TEXMF/tex/{hilatex,latex,hitex,generic,}//
+TEXINPUTS.hilatex-dev   = $TEXMFDOTDIR;$TEXMF/tex/{latex-dev,hilatex,latex,hitex,generic,}//
+TEXINPUTS.hitex         = $TEXMFDOTDIR;$TEXMF/tex/{hitex,plain,generic,latex,}//
+
+% JadeTeX.
 TEXINPUTS.jadetex       = $TEXMFDOTDIR;$TEXMF/tex/{jadetex,latex,generic,latex,}//
 TEXINPUTS.pdfjadetex    = $TEXMFDOTDIR;$TEXMF/tex/{jadetex,latex,generic,latex,}//
 

Modified: trunk/Master/tlpkg/tlpsrc/hitex.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/hitex.tlpsrc	2022-03-05 17:36:22 UTC (rev 62435)
+++ trunk/Master/tlpkg/tlpsrc/hitex.tlpsrc	2022-03-05 17:45:17 UTC (rev 62436)
@@ -1,9 +1,22 @@
+category TLCore
+
+tlpsetvar fmtcomm cm,hyphen-base
+#
+execute AddFormat name=hitex engine=hitex patterns=language.def \
+  options="-etex -ltx hitex.ini" \
+  fmttriggers=${fmtcomm},etex,plain
+#
+execute AddFormat name=hilatex engine=hitex patterns=language.dat \
+  options="-etex -ltx hilatex.ini" \
+  fmttriggers=${global_latex_deps}
+
 binpattern f bin/${ARCH}/hishrink
 binpattern f bin/${ARCH}/histretch
 binpattern f bin/${ARCH}/hitex
 
+runpattern d texmf-dist/tex/hitex/base
+
 docpattern d texmf-dist/doc/hitex/base
-#
 docpattern f texmf-dist/doc/man/man1/hishrink.*
 docpattern f texmf-dist/doc/man/man1/histretch.*
 docpattern f texmf-dist/doc/man/man1/hitex.*



More information about the tex-live-commits mailing list.