Dr. Werner Fink 2023-03-27 09:41:56 +00:00 committed by Git OBS Bridge
parent ff74b64509
commit b3e7437a5c
28 changed files with 1742 additions and 584 deletions

BIN
collection-bibtexextra.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-binextra.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-context.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-fontsextra.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-games.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-humanities.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langchinese.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langcjk.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langenglish.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langeuropean.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langfrench.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langgreek.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-langjapanese.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-latex.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-latexextra.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-latexrecommended.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-luatex.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-mathscience.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-metapost.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-music.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-pictures.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-plaingeneric.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-pstricks.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-publishers.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
collection-xetex.tar.xz (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Mar 20 08:38:07 UTC 2023 - Dr. Werner Fink <werner@suse.de>
- Update to final TeXLive 2023
-------------------------------------------------------------------
Thu Mar 9 13:45:37 UTC 2023 - Dr. Werner Fink <werner@suse.de>
- Update to pretest TeXLive 2023
-------------------------------------------------------------------
Thu Aug 18 09:15:10 UTC 2022 - Dr. Werner Fink <werner@suse.de>

File diff suppressed because it is too large Load Diff

View File

@ -468,6 +468,42 @@ has_formats()
return 1
}
#
# ConTeXt data bases
#
if test -x /usr/bin/mtxrun ; then
test $VERBOSE = true && { echo -en "\r[ ]Generate file database."; let nl++; }
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
/usr/bin/mtxrun --generate < /dev/null 1>&4 2>&4
let rc+=$?
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
/usr/bin/mtxrun --script fonts --reload < /dev/null 1>&4 2>&4
let rc+=$?
if test -x /usr/bin/luatools ; then
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
LUAINPUTS="$(kpsewhich --var-value=LUAINPUTS)" \
/usr/bin/luatools --generate < /dev/null 1>&4 2>&4
let rc+=$?
fi
if test -x /usr/bin/luaotfload-tool ; then
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
LUAINPUTS="$(kpsewhich --var-value=LUAINPUTS)" \
/usr/bin/luaotfload-tool --update --prefer-texmf --formats=+afm --log=stdout < /dev/null 1>&4 2>&4
let rc+=$?
fi
fi
((nl == 0)) || { echo; let nl=0; }
#
# Go further
#
@ -477,6 +513,20 @@ for run in /var/run/texlive/run-fmtutil.* /var/run/texlive/run-fmtutil ; do
option=""
test $VERBOSE = true || option="--quiet"
case "${run#*fmtutil.}" in
context)
test $VERBOSE = true && { echo -en "\r[ ](Re)fresh ConTeXt formats."; let nl++; }
for fmt in cont-cs cont-de cont-en cont-fr cont-gb cont-it cont-nl cont-pe cont-ro
do
test -x /usr/bin/mtxrun || break
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
/usr/bin/mtxrun $fmt --make < /dev/null 1>&4 2>&4
let rc+=$?
((nl == 0)) || { echo; let nl=0; }
done
;;
language)
if test -n "${cnf_ldat}" ; then
set -- $(md5sum < ${cnf_ldat})
@ -506,6 +556,17 @@ for run in /var/run/texlive/run-fmtutil.* /var/run/texlive/run-fmtutil ; do
fmtutil-sys ${option:+$option} --byhyphen ${cnf_llua} --no-strict < /dev/null 1>&4 2>&4
let rc+=$?
((nl == 0)) || { echo; let nl=0; }
elif test -x /usr/bin/mtxrun > /dev/null 2>&2 ; then
test $VERBOSE = true && { echo -en "\r[ ]Handle language.dat.lua setups."; let nl++; }
for fmt in cont-cs cont-de cont-en cont-fr cont-gb cont-it cont-nl cont-pe cont-ro
do
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
/usr/bin/mtxrun $fmt --make < /dev/null 1>&4 2>&4
let rc+=$?
((nl == 0)) || { echo; let nl=0; }
done
fi
fi
((rc != 0)) || rm -f /var/run/texlive/run-fmtutil.language
@ -589,31 +650,6 @@ for run in /var/run/texlive/sync-updmap* ; do
done
((nl == 0)) || { echo; let nl=0; }
if test -x /usr/bin/mtxrun ; then
test $VERBOSE = true && { echo -en "\r[ ]Generate file database."; let nl++; }
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
/usr/bin/mtxrun --generate < /dev/null 1>&4 2>&4
let rc+=$?
if test -x /usr/bin/luatools ; then
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
LUAINPUTS="$(kpsewhich --var-value=LUAINPUTS)" \
/usr/bin/luatools --generate < /dev/null 1>&4 2>&4
let rc+=$?
fi
if test -x /usr/bin/luaotfload-tool ; then
TEXMF=${TEXMFDIST} \
TEXMFCACHE=${TEXMFVAR} \
TEXMFCNF=${TEXMFCNFFILE%/*} \
LUAINPUTS="$(kpsewhich --var-value=LUAINPUTS)" \
/usr/bin/luaotfload-tool --update --prefer-texmf --formats=+afm --log=stdout < /dev/null 1>&4 2>&4
fi
fi
((nl == 0)) || { echo; let nl=0; }
#
# If texmf.cnf has changed it may contain changed memory sizes
# of various programs.