texlive[47636] trunk: tl-update-auto

commits+karl at tug.org commits+karl at tug.org
Mon May 7 02:23:33 CEST 2018


Revision: 47636
          http://tug.org/svn/texlive?view=revision&revision=47636
Author:   karl
Date:     2018-05-07 02:23:33 +0200 (Mon, 07 May 2018)
Log Message:
-----------
tl-update-auto

Modified Paths:
--------------
    trunk/Build/source/build-aux/config.sub
    trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub
    trunk/Build/source/libs/icu/icu-src/source/config.sub
    trunk/Build/source/utils/asymptote/config.sub
    trunk/Master/doc.html

Modified: trunk/Build/source/build-aux/config.sub
===================================================================
--- trunk/Build/source/build-aux/config.sub	2018-05-07 00:18:04 UTC (rev 47635)
+++ trunk/Build/source/build-aux/config.sub	2018-05-07 00:23:33 UTC (rev 47636)
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-05-03'
+timestamp='2018-05-05'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -110,33 +110,48 @@
     exit 1;;
 esac
 
-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
-# Here we must recognize all the valid KERNEL-OS combinations.
-maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
-case $maybe_os in
-	nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
-	linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
-	knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
-	kopensolaris*-gnu* | cloudabi*-eabi* | \
-	storm-chaos* | os2-emx* | rtmk-nova*)
-	os=-$maybe_os
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
-	;;
-    android-linux)
-	os=-linux-android
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
-	;;
-    *)
-	basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
-	case $1 in
-	    *-*)
-		os=`echo "$1" | sed 's/.*-/-/'`
+# Spilt fields of configuration type
+IFS="-" read field1 field2 field3 field4 <<EOF
+$1
+EOF
+
+# Separate into logical components for further validation
+case $1 in
+	*-*-*-*)
+		basic_machine=$field1-$field2
+		os=-$field3-$field4
 		;;
-	    *)
+	*-*-*)
+		# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
+		# parts
+		maybe_os=$field2-$field3
+		case $maybe_os in
+			nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
+			| linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
+			| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
+			| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
+			| storm-chaos* | os2-emx* | rtmk-nova*)
+				basic_machine=$field1
+				os=-$maybe_os
+				;;
+			android-linux)
+				basic_machine=$field1-unknown
+				os=-linux-android
+				;;
+			*)
+				basic_machine=$field1-$field2
+				os=-$field3
+				;;
+		esac
+		;;
+	*-*)
+		basic_machine=$field1
+		os=-$field2
+		;;
+	*)
+		basic_machine=$1
 		os=
 		;;
-	esac
-	;;
 esac
 
 ### Let's recognize common machines as not being operating systems so

Modified: trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub
===================================================================
--- trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub	2018-05-07 00:18:04 UTC (rev 47635)
+++ trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub	2018-05-07 00:23:33 UTC (rev 47636)
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-05-03'
+timestamp='2018-05-05'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -110,33 +110,48 @@
     exit 1;;
 esac
 
-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
-# Here we must recognize all the valid KERNEL-OS combinations.
-maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
-case $maybe_os in
-	nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
-	linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
-	knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
-	kopensolaris*-gnu* | cloudabi*-eabi* | \
-	storm-chaos* | os2-emx* | rtmk-nova*)
-	os=-$maybe_os
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
-	;;
-    android-linux)
-	os=-linux-android
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
-	;;
-    *)
-	basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
-	case $1 in
-	    *-*)
-		os=`echo "$1" | sed 's/.*-/-/'`
+# Spilt fields of configuration type
+IFS="-" read field1 field2 field3 field4 <<EOF
+$1
+EOF
+
+# Separate into logical components for further validation
+case $1 in
+	*-*-*-*)
+		basic_machine=$field1-$field2
+		os=-$field3-$field4
 		;;
-	    *)
+	*-*-*)
+		# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
+		# parts
+		maybe_os=$field2-$field3
+		case $maybe_os in
+			nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
+			| linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
+			| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
+			| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
+			| storm-chaos* | os2-emx* | rtmk-nova*)
+				basic_machine=$field1
+				os=-$maybe_os
+				;;
+			android-linux)
+				basic_machine=$field1-unknown
+				os=-linux-android
+				;;
+			*)
+				basic_machine=$field1-$field2
+				os=-$field3
+				;;
+		esac
+		;;
+	*-*)
+		basic_machine=$field1
+		os=-$field2
+		;;
+	*)
+		basic_machine=$1
 		os=
 		;;
-	esac
-	;;
 esac
 
 ### Let's recognize common machines as not being operating systems so

Modified: trunk/Build/source/libs/icu/icu-src/source/config.sub
===================================================================
--- trunk/Build/source/libs/icu/icu-src/source/config.sub	2018-05-07 00:18:04 UTC (rev 47635)
+++ trunk/Build/source/libs/icu/icu-src/source/config.sub	2018-05-07 00:23:33 UTC (rev 47636)
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-05-03'
+timestamp='2018-05-05'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -110,33 +110,48 @@
     exit 1;;
 esac
 
-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
-# Here we must recognize all the valid KERNEL-OS combinations.
-maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
-case $maybe_os in
-	nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
-	linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
-	knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
-	kopensolaris*-gnu* | cloudabi*-eabi* | \
-	storm-chaos* | os2-emx* | rtmk-nova*)
-	os=-$maybe_os
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
-	;;
-    android-linux)
-	os=-linux-android
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
-	;;
-    *)
-	basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
-	case $1 in
-	    *-*)
-		os=`echo "$1" | sed 's/.*-/-/'`
+# Spilt fields of configuration type
+IFS="-" read field1 field2 field3 field4 <<EOF
+$1
+EOF
+
+# Separate into logical components for further validation
+case $1 in
+	*-*-*-*)
+		basic_machine=$field1-$field2
+		os=-$field3-$field4
 		;;
-	    *)
+	*-*-*)
+		# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
+		# parts
+		maybe_os=$field2-$field3
+		case $maybe_os in
+			nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
+			| linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
+			| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
+			| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
+			| storm-chaos* | os2-emx* | rtmk-nova*)
+				basic_machine=$field1
+				os=-$maybe_os
+				;;
+			android-linux)
+				basic_machine=$field1-unknown
+				os=-linux-android
+				;;
+			*)
+				basic_machine=$field1-$field2
+				os=-$field3
+				;;
+		esac
+		;;
+	*-*)
+		basic_machine=$field1
+		os=-$field2
+		;;
+	*)
+		basic_machine=$1
 		os=
 		;;
-	esac
-	;;
 esac
 
 ### Let's recognize common machines as not being operating systems so

Modified: trunk/Build/source/utils/asymptote/config.sub
===================================================================
--- trunk/Build/source/utils/asymptote/config.sub	2018-05-07 00:18:04 UTC (rev 47635)
+++ trunk/Build/source/utils/asymptote/config.sub	2018-05-07 00:23:33 UTC (rev 47636)
@@ -2,7 +2,7 @@
 # Configuration validation subroutine script.
 #   Copyright 1992-2018 Free Software Foundation, Inc.
 
-timestamp='2018-05-03'
+timestamp='2018-05-05'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -110,33 +110,48 @@
     exit 1;;
 esac
 
-# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
-# Here we must recognize all the valid KERNEL-OS combinations.
-maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
-case $maybe_os in
-	nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
-	linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
-	knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
-	kopensolaris*-gnu* | cloudabi*-eabi* | \
-	storm-chaos* | os2-emx* | rtmk-nova*)
-	os=-$maybe_os
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
-	;;
-    android-linux)
-	os=-linux-android
-	basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
-	;;
-    *)
-	basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
-	case $1 in
-	    *-*)
-		os=`echo "$1" | sed 's/.*-/-/'`
+# Spilt fields of configuration type
+IFS="-" read field1 field2 field3 field4 <<EOF
+$1
+EOF
+
+# Separate into logical components for further validation
+case $1 in
+	*-*-*-*)
+		basic_machine=$field1-$field2
+		os=-$field3-$field4
 		;;
-	    *)
+	*-*-*)
+		# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
+		# parts
+		maybe_os=$field2-$field3
+		case $maybe_os in
+			nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
+			| linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
+			| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
+			| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
+			| storm-chaos* | os2-emx* | rtmk-nova*)
+				basic_machine=$field1
+				os=-$maybe_os
+				;;
+			android-linux)
+				basic_machine=$field1-unknown
+				os=-linux-android
+				;;
+			*)
+				basic_machine=$field1-$field2
+				os=-$field3
+				;;
+		esac
+		;;
+	*-*)
+		basic_machine=$field1
+		os=-$field2
+		;;
+	*)
+		basic_machine=$1
 		os=
 		;;
-	esac
-	;;
 esac
 
 ### Let's recognize common machines as not being operating systems so

Modified: trunk/Master/doc.html
===================================================================
--- trunk/Master/doc.html	2018-05-07 00:18:04 UTC (rev 47635)
+++ trunk/Master/doc.html	2018-05-07 00:23:33 UTC (rev 47636)
@@ -4065,6 +4065,13 @@
 <a href="texmf-dist/doc/latex/cprotect/cprotect.pdf">cprotect.pdf</a>.
 </small></li>
 
+<li><b><a href="texmf-dist/doc/xelatex/cqubeamer">cqubeamer</a></b>:<small>
+LaTeX Beamer Template for Chongqing University
+<a href="texmf-dist/doc/xelatex/cqubeamer/cqubeamer.pdf">cqubeamer.pdf</a>,
+<a href="texmf-dist/doc/xelatex/cqubeamer/logo/cqulogo.pdf">cqulogo.pdf</a>,
+<a href="texmf-dist/doc/xelatex/cqubeamer/logo/cquname.pdf">cquname.pdf</a>.
+</small></li>
+
 <li><b><a href="texmf-dist/doc/latex/cquthesis">cquthesis</a></b>:<small>
 LaTeX Thesis Template for Chongqing University
 <a href="texmf-dist/doc/latex/cquthesis/cquthesis.pdf">cquthesis.pdf</a>,
@@ -4356,7 +4363,7 @@
 
 <h2 id="letter-D">D</h2>
 
-<ol start="652">
+<ol start="653">
 
 <li><b><a href="texmf-dist/doc/fonts/dad">dad</a></b>:<small>
 Simple typesetting system for mixed Arabic/Latin documents
@@ -5207,7 +5214,7 @@
 
 <h2 id="letter-E">E</h2>
 
-<ol start="797">
+<ol start="798">
 
 <li><b><a href="texmf-dist/doc/generic/e-french">e-french</a></b>:<small>
 Comprehensive LaTeX support for French-language typesetting
@@ -6066,7 +6073,7 @@
 
 <h2 id="letter-F">F</h2>
 
-<ol start="939">
+<ol start="940">
 
 <li><b><a href="texmf-dist/doc/latex/facsimile">facsimile</a></b>:<small>
 Document class for preparing faxes
@@ -6955,7 +6962,7 @@
 
 <h2 id="letter-G">G</h2>
 
-<ol start="1082">
+<ol start="1083">
 
 <li><b><a href="texmf-dist/doc/latex/g-brief">g-brief</a></b>:<small>
 Letter document class
@@ -7711,7 +7718,7 @@
 
 <h2 id="letter-H">H</h2>
 
-<ol start="1193">
+<ol start="1194">
 
 <li><b><a href="texmf-dist/doc/latex/h2020proposal/manual">h2020proposal</a></b>:<small>
 LaTeX class and template for EU H2020 RIA proposal
@@ -8075,7 +8082,7 @@
 
 <h2 id="letter-I">I</h2>
 
-<ol start="1251">
+<ol start="1252">
 
 <li><b><a href="texmf-dist/doc/latex/ibycus-babel">ibycus-babel</a></b>:<small>
 Use the Ibycus 4 Greek font with Babel
@@ -8461,7 +8468,7 @@
 
 <h2 id="letter-J">J</h2>
 
-<ol start="1319">
+<ol start="1320">
 
 <li><b><a href="texmf-dist/doc/fonts/jablantile">jablantile</a></b>:<small>
 Metafont version of tiles in the style of Slavik Jablan
@@ -8609,7 +8616,7 @@
 
 <h2 id="letter-K">K</h2>
 
-<ol start="1339">
+<ol start="1340">
 
 <li><b><a href="texmf-dist/doc/latex/kantlipsum">kantlipsum</a></b>:<small>
 Generate sentences in Kant's style
@@ -8912,7 +8919,7 @@
 
 <h2 id="letter-L">L</h2>
 
-<ol start="1374">
+<ol start="1375">
 
 <li><b><a href="texmf-dist/doc/latex/l2picfaq">l2picfaq</a></b>:<small>
 LaTeX pictures "how-to" (German)
@@ -10261,7 +10268,7 @@
 
 <h2 id="letter-M">M</h2>
 
-<ol start="1575">
+<ol start="1576">
 
 <li><b><a href="texmf-dist/doc/generic/m-tx">m-tx</a></b>:<small>
 A preprocessor for pmx
@@ -11468,7 +11475,7 @@
 
 <h2 id="letter-N">N</h2>
 
-<ol start="1770">
+<ol start="1771">
 
 <li><b><a href="texmf-dist/doc/xelatex/na-box">na-box</a></b>:<small>
 Arabic-aware version of pas-cours package
@@ -11935,7 +11942,7 @@
 
 <h2 id="letter-O">O</h2>
 
-<ol start="1845">
+<ol start="1846">
 
 <li><b><a href="texmf-dist/doc/latex/oberdiek">oberdiek</a></b>:<small>
 A bundle of packages submitted by Heiko Oberdiek
@@ -12254,7 +12261,7 @@
 
 <h2 id="letter-P">P</h2>
 
-<ol start="1883">
+<ol start="1884">
 
 <li><b><a href="texmf-dist/doc/latex/padcount">padcount</a></b>:<small>
 Pad numbers with arbitrary characters
@@ -14035,7 +14042,7 @@
 
 <h2 id="letter-Q">Q</h2>
 
-<ol start="2168">
+<ol start="2169">
 
 <li><b><a href="texmf-dist/doc/latex/qcircuit">qcircuit</a></b>:<small>
 Macros to generate quantum ciruits
@@ -14110,7 +14117,7 @@
 
 <h2 id="letter-R">R</h2>
 
-<ol start="2180">
+<ol start="2181">
 
 <li><b><a href="texmf-dist/doc/latex/raleway">raleway</a></b>:<small>
 Use Raleway with TeX(-alike) systems
@@ -14556,7 +14563,7 @@
 
 <h2 id="letter-S">S</h2>
 
-<ol start="2246">
+<ol start="2247">
 
 <li><b><a href="texmf-dist/doc/latex/sa-tikz">sa-tikz</a></b>:<small>
 TikZ library to draw switching architectures
@@ -15878,7 +15885,7 @@
 
 <h2 id="letter-T">T</h2>
 
-<ol start="2455">
+<ol start="2456">
 
 <li><b><a href="texmf-dist/doc/latex/t-angles">t-angles</a></b>:<small>
 Draw tangles, trees, Hopf algebra operations and other pictures
@@ -17611,7 +17618,7 @@
 
 <h2 id="letter-U">U</h2>
 
-<ol start="2690">
+<ol start="2691">
 
 <li><b><a href="texmf-dist/doc/latex/uaclasses">uaclasses</a></b>:<small>
 University of Arizona thesis and dissertation format
@@ -17965,7 +17972,7 @@
 
 <h2 id="letter-V">V</h2>
 
-<ol start="2749">
+<ol start="2750">
 
 <li><b><a href="texmf-dist/doc/bibtex/vancouver">vancouver</a></b>:<small>
 Bibliographic style file for Biomedical Journals
@@ -18169,7 +18176,7 @@
 
 <h2 id="letter-W">W</h2>
 
-<ol start="2783">
+<ol start="2784">
 
 <li><b><a href="texmf-dist/doc/fonts/wadalab">wadalab</a></b>:<small>
 Wadalab (Japanese) font packages
@@ -18323,7 +18330,7 @@
 
 <h2 id="letter-X">X</h2>
 
-<ol start="2802">
+<ol start="2803">
 
 <li><b><a href="texmf-dist/doc/latex/xargs">xargs</a></b>:<small>
 Define commands with many optional arguments
@@ -18764,7 +18771,7 @@
 
 <h2 id="letter-Y">Y</h2>
 
-<ol start="2863">
+<ol start="2864">
 
 <li><b><a href="texmf-dist/doc/latex/yafoot">yafoot</a></b>:<small>
 A bundle of miscellaneous footnote packages
@@ -18833,7 +18840,7 @@
 
 <h2 id="letter-Z">Z</h2>
 
-<ol start="2874">
+<ol start="2875">
 
 <li><b><a href="texmf-dist/doc/latex/zed-csp">zed-csp</a></b>:<small>
 Typesetting Z and CSP format specifications



More information about the tex-live-commits mailing list