texlive[49484] trunk: tl-update-auto

commits+karl at tug.org commits+karl at tug.org
Sun Dec 23 02:23:19 CET 2018


Revision: 49484
          http://tug.org/svn/texlive?view=revision&revision=49484
Author:   karl
Date:     2018-12-23 02:23:19 +0100 (Sun, 23 Dec 2018)
Log Message:
-----------
tl-update-auto

Modified Paths:
--------------
    trunk/Build/source/build-aux/config.guess
    trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess
    trunk/Build/source/libs/icu/icu-src/source/config.guess
    trunk/Build/source/utils/asymptote/config.guess
    trunk/Master/doc.html
    trunk/Master/tlpkg/installer/config.guess
    trunk/Master/tlpkg/installer/ctan-mirrors.pl

Modified: trunk/Build/source/build-aux/config.guess
===================================================================
--- trunk/Build/source/build-aux/config.guess	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Build/source/build-aux/config.guess	2018-12-23 01:23:19 UTC (rev 49484)
@@ -391,15 +391,20 @@
 	echo i386-pc-auroraux"$UNAME_RELEASE"
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-	case `isainfo -b` in
-	    32)
-		echo i386-pc-solaris2"$UNAME_REL"
-		;;
-	    64)
-		echo x86_64-pc-solaris2"$UNAME_REL"
-		;;
-	esac
+	set_cc_for_build
+	SUN_ARCH=i386
+	# If there is a compiler, see if it is configured for 64-bit objects.
+	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+	# This test works for both compilers.
+	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		SUN_ARCH=x86_64
+	    fi
+	fi
+	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
 	exit ;;
     sun4*:SunOS:6*:*)
 	# According to config.sub, this is the proper way to canonicalize

Modified: trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess
===================================================================
--- trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess	2018-12-23 01:23:19 UTC (rev 49484)
@@ -391,15 +391,20 @@
 	echo i386-pc-auroraux"$UNAME_RELEASE"
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-	case `isainfo -b` in
-	    32)
-		echo i386-pc-solaris2"$UNAME_REL"
-		;;
-	    64)
-		echo x86_64-pc-solaris2"$UNAME_REL"
-		;;
-	esac
+	set_cc_for_build
+	SUN_ARCH=i386
+	# If there is a compiler, see if it is configured for 64-bit objects.
+	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+	# This test works for both compilers.
+	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		SUN_ARCH=x86_64
+	    fi
+	fi
+	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
 	exit ;;
     sun4*:SunOS:6*:*)
 	# According to config.sub, this is the proper way to canonicalize

Modified: trunk/Build/source/libs/icu/icu-src/source/config.guess
===================================================================
--- trunk/Build/source/libs/icu/icu-src/source/config.guess	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Build/source/libs/icu/icu-src/source/config.guess	2018-12-23 01:23:19 UTC (rev 49484)
@@ -391,15 +391,20 @@
 	echo i386-pc-auroraux"$UNAME_RELEASE"
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-	case `isainfo -b` in
-	    32)
-		echo i386-pc-solaris2"$UNAME_REL"
-		;;
-	    64)
-		echo x86_64-pc-solaris2"$UNAME_REL"
-		;;
-	esac
+	set_cc_for_build
+	SUN_ARCH=i386
+	# If there is a compiler, see if it is configured for 64-bit objects.
+	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+	# This test works for both compilers.
+	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		SUN_ARCH=x86_64
+	    fi
+	fi
+	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
 	exit ;;
     sun4*:SunOS:6*:*)
 	# According to config.sub, this is the proper way to canonicalize

Modified: trunk/Build/source/utils/asymptote/config.guess
===================================================================
--- trunk/Build/source/utils/asymptote/config.guess	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Build/source/utils/asymptote/config.guess	2018-12-23 01:23:19 UTC (rev 49484)
@@ -391,15 +391,20 @@
 	echo i386-pc-auroraux"$UNAME_RELEASE"
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-	case `isainfo -b` in
-	    32)
-		echo i386-pc-solaris2"$UNAME_REL"
-		;;
-	    64)
-		echo x86_64-pc-solaris2"$UNAME_REL"
-		;;
-	esac
+	set_cc_for_build
+	SUN_ARCH=i386
+	# If there is a compiler, see if it is configured for 64-bit objects.
+	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+	# This test works for both compilers.
+	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		SUN_ARCH=x86_64
+	    fi
+	fi
+	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
 	exit ;;
     sun4*:SunOS:6*:*)
 	# According to config.sub, this is the proper way to canonicalize

Modified: trunk/Master/doc.html
===================================================================
--- trunk/Master/doc.html	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Master/doc.html	2018-12-23 01:23:19 UTC (rev 49484)
@@ -4159,6 +4159,11 @@
 <a href="texmf-dist/doc/fonts/crimson/crimson-samples.pdf">crimson-samples.pdf</a>.
 </small></li>
 
+<li><b><a href="texmf-dist/doc/fonts/crimsonpro">crimsonpro</a></b>:<small>
+CrimsonPro fonts with LaTeX support
+<a href="texmf-dist/doc/fonts/crimsonpro/crimsonpro-samples.pdf">crimsonpro-samples.pdf</a>.
+</small></li>
+
 <li><b><a href="texmf-dist/doc/latex/crop">crop</a></b>:<small>
 Support for cropmarks
 <a href="texmf-dist/doc/latex/crop/crop.pdf">crop.pdf</a>.
@@ -4439,7 +4444,7 @@
 
 <h2 id="letter-D">D</h2>
 
-<ol start="666">
+<ol start="667">
 
 <li><b><a href="texmf-dist/doc/fonts/dad">dad</a></b>:<small>
 Simple typesetting system for mixed Arabic/Latin documents
@@ -5300,7 +5305,7 @@
 
 <h2 id="letter-E">E</h2>
 
-<ol start="813">
+<ol start="814">
 
 <li><b><a href="texmf-dist/doc/generic/e-french">e-french</a></b>:<small>
 Comprehensive LaTeX support for French-language typesetting
@@ -6196,7 +6201,7 @@
 
 <h2 id="letter-F">F</h2>
 
-<ol start="960">
+<ol start="961">
 
 <li><b><a href="texmf-dist/doc/latex/facsimile">facsimile</a></b>:<small>
 Document class for preparing faxes
@@ -7100,7 +7105,7 @@
 
 <h2 id="letter-G">G</h2>
 
-<ol start="1106">
+<ol start="1107">
 
 <li><b><a href="texmf-dist/doc/latex/g-brief">g-brief</a></b>:<small>
 Letter document class
@@ -7875,7 +7880,7 @@
 
 <h2 id="letter-H">H</h2>
 
-<ol start="1220">
+<ol start="1221">
 
 <li><b><a href="texmf-dist/doc/latex/h2020proposal/manual">h2020proposal</a></b>:<small>
 LaTeX class and template for EU H2020 RIA proposal
@@ -8245,7 +8250,7 @@
 
 <h2 id="letter-I">I</h2>
 
-<ol start="1279">
+<ol start="1280">
 
 <li><b><a href="texmf-dist/doc/latex/ibycus-babel">ibycus-babel</a></b>:<small>
 Use the Ibycus 4 Greek font with Babel
@@ -8659,7 +8664,7 @@
 
 <h2 id="letter-J">J</h2>
 
-<ol start="1349">
+<ol start="1350">
 
 <li><b><a href="texmf-dist/doc/fonts/jablantile">jablantile</a></b>:<small>
 Metafont version of tiles in the style of Slavik Jablan
@@ -8827,7 +8832,7 @@
 
 <h2 id="letter-K">K</h2>
 
-<ol start="1371">
+<ol start="1372">
 
 <li><b><a href="texmf-dist/doc/latex/kalendarium">kalendarium</a></b>:<small>
 Print dates according to the classical Latin calendar
@@ -9254,7 +9259,7 @@
 
 <h2 id="letter-L">L</h2>
 
-<ol start="1409">
+<ol start="1410">
 
 <li><b><a href="texmf-dist/doc/latex/l2picfaq">l2picfaq</a></b>:<small>
 LaTeX pictures "how-to" (German)
@@ -10646,7 +10651,7 @@
 
 <h2 id="letter-M">M</h2>
 
-<ol start="1616">
+<ol start="1617">
 
 <li><b><a href="texmf-dist/doc/generic/m-tx">m-tx</a></b>:<small>
 A preprocessor for pmx
@@ -11884,7 +11889,7 @@
 
 <h2 id="letter-N">N</h2>
 
-<ol start="1816">
+<ol start="1817">
 
 <li><b><a href="texmf-dist/doc/xelatex/na-box">na-box</a></b>:<small>
 Arabic-aware version of pas-cours package
@@ -12352,7 +12357,7 @@
 
 <h2 id="letter-O">O</h2>
 
-<ol start="1891">
+<ol start="1892">
 
 <li><b><a href="texmf-dist/doc/latex/oberdiek">oberdiek</a></b>:<small>
 A bundle of packages submitted by Heiko Oberdiek
@@ -12678,7 +12683,7 @@
 
 <h2 id="letter-P">P</h2>
 
-<ol start="1930">
+<ol start="1931">
 
 <li><b><a href="texmf-dist/doc/latex/padcount">padcount</a></b>:<small>
 Pad numbers with arbitrary characters
@@ -14542,7 +14547,7 @@
 
 <h2 id="letter-Q">Q</h2>
 
-<ol start="2228">
+<ol start="2229">
 
 <li><b><a href="texmf-dist/doc/latex/qcircuit">qcircuit</a></b>:<small>
 Macros to generate quantum ciruits
@@ -14622,7 +14627,7 @@
 
 <h2 id="letter-R">R</h2>
 
-<ol start="2241">
+<ol start="2242">
 
 <li><b><a href="texmf-dist/doc/latex/raleway">raleway</a></b>:<small>
 Use Raleway with TeX(-alike) systems
@@ -15079,7 +15084,7 @@
 
 <h2 id="letter-S">S</h2>
 
-<ol start="2309">
+<ol start="2310">
 
 <li><b><a href="texmf-dist/doc/latex/sa-tikz">sa-tikz</a></b>:<small>
 TikZ library to draw switching architectures
@@ -16425,7 +16430,7 @@
 
 <h2 id="letter-T">T</h2>
 
-<ol start="2522">
+<ol start="2523">
 
 <li><b><a href="texmf-dist/doc/latex/t-angles">t-angles</a></b>:<small>
 Draw tangles, trees, Hopf algebra operations and other pictures
@@ -18242,7 +18247,7 @@
 
 <h2 id="letter-U">U</h2>
 
-<ol start="2769">
+<ol start="2770">
 
 <li><b><a href="texmf-dist/doc/latex/uaclasses">uaclasses</a></b>:<small>
 University of Arizona thesis and dissertation format
@@ -18609,7 +18614,7 @@
 
 <h2 id="letter-V">V</h2>
 
-<ol start="2830">
+<ol start="2831">
 
 <li><b><a href="texmf-dist/doc/bibtex/vancouver">vancouver</a></b>:<small>
 Bibliographic style file for Biomedical Journals
@@ -18813,7 +18818,7 @@
 
 <h2 id="letter-W">W</h2>
 
-<ol start="2864">
+<ol start="2865">
 
 <li><b><a href="texmf-dist/doc/fonts/wadalab">wadalab</a></b>:<small>
 Wadalab (Japanese) font packages
@@ -18978,7 +18983,7 @@
 
 <h2 id="letter-X">X</h2>
 
-<ol start="2885">
+<ol start="2886">
 
 <li><b><a href="texmf-dist/doc/latex/xargs">xargs</a></b>:<small>
 Define commands with many optional arguments
@@ -19440,7 +19445,7 @@
 
 <h2 id="letter-Y">Y</h2>
 
-<ol start="2948">
+<ol start="2949">
 
 <li><b><a href="texmf-dist/doc/latex/yafoot">yafoot</a></b>:<small>
 A bundle of miscellaneous footnote packages
@@ -19509,7 +19514,7 @@
 
 <h2 id="letter-Z">Z</h2>
 
-<ol start="2959">
+<ol start="2960">
 
 <li><b><a href="texmf-dist/doc/latex/zed-csp">zed-csp</a></b>:<small>
 Typesetting Z and CSP format specifications

Modified: trunk/Master/tlpkg/installer/config.guess
===================================================================
--- trunk/Master/tlpkg/installer/config.guess	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Master/tlpkg/installer/config.guess	2018-12-23 01:23:19 UTC (rev 49484)
@@ -391,15 +391,20 @@
 	echo i386-pc-auroraux"$UNAME_RELEASE"
 	exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-	UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-	case `isainfo -b` in
-	    32)
-		echo i386-pc-solaris2"$UNAME_REL"
-		;;
-	    64)
-		echo x86_64-pc-solaris2"$UNAME_REL"
-		;;
-	esac
+	set_cc_for_build
+	SUN_ARCH=i386
+	# If there is a compiler, see if it is configured for 64-bit objects.
+	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+	# This test works for both compilers.
+	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		SUN_ARCH=x86_64
+	    fi
+	fi
+	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
 	exit ;;
     sun4*:SunOS:6*:*)
 	# According to config.sub, this is the proper way to canonicalize

Modified: trunk/Master/tlpkg/installer/ctan-mirrors.pl
===================================================================
--- trunk/Master/tlpkg/installer/ctan-mirrors.pl	2018-12-23 01:18:05 UTC (rev 49483)
+++ trunk/Master/tlpkg/installer/ctan-mirrors.pl	2018-12-23 01:23:19 UTC (rev 49484)
@@ -4,7 +4,6 @@
       'http://ctan.epst-tlemcen.dz/tex-archive/' => 1
     },
     'South Africa' => {
-      'http://ctan.mirror.ac.za/' => 1,
       'http://ftp.leg.uct.ac.za/pub/packages/ctan/' => 1,
       'http://ftp.sun.ac.za/ftp/CTAN/' => 1,
       'http://mirror.ufs.ac.za/ctan/' => 1
@@ -32,7 +31,6 @@
       'http://repo.iut.ac.ir/tex-archive/' => 1
     },
     'Japan' => {
-      'ftp://ftp.kddilabs.jp/CTAN/' => 1,
       'ftp://ftp.u-aizu.ac.jp/pub/tex/CTAN/' => 1,
       'http://ftp.jaist.ac.jp/pub/CTAN/' => 1,
       'http://ftp.yz.yamagata-u.ac.jp/pub/CTAN/' => 1
@@ -113,7 +111,6 @@
       'http://piotrkosoft.net/pub/mirrors/CTAN/' => 1
     },
     'Portugal' => {
-      'ftp://ftp.di.uminho.pt/pub/ctan/' => 1,
       'ftp://ftp.ist.utl.pt/pub/ctan/' => 1,
       'http://mirrors.up.pt/pub/CTAN/' => 1
     },



More information about the tex-live-commits mailing list