texlive[52440] trunk: doc,sync

commits+karl at tug.org commits+karl at tug.org
Sat Oct 19 18:04:07 CEST 2019


Revision: 52440
          http://tug.org/svn/texlive?view=revision&revision=52440
Author:   karl
Date:     2019-10-19 18:04:06 +0200 (Sat, 19 Oct 2019)
Log Message:
-----------
doc,sync

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl
    trunk/Master/texmf-dist/scripts/texlive/NEWS
    trunk/Master/tlpkg/bin/c2l
    trunk/Master/tlpkg/bin/tl-update-asy

Modified: trunk/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl	2019-10-18 23:56:57 UTC (rev 52439)
+++ trunk/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl	2019-10-19 16:04:06 UTC (rev 52440)
@@ -2105,7 +2105,8 @@
   incr inx
   menu .mn.opt.paper
   foreach p [list A4 letter] {
-    .mn.opt.paper add command -label $p -command "set_paper $p"
+    .mn.opt.paper add command -label $p -command \
+        "set_paper [string tolower $p]"
   }
 
   if {[llength $::langs] > 1} {

Modified: trunk/Master/texmf-dist/scripts/texlive/NEWS
===================================================================
--- trunk/Master/texmf-dist/scripts/texlive/NEWS	2019-10-18 23:56:57 UTC (rev 52439)
+++ trunk/Master/texmf-dist/scripts/texlive/NEWS	2019-10-19 16:04:06 UTC (rev 52440)
@@ -1,8 +1,10 @@
 (This file public domain.  Originally written by Norbert Preining and
 Karl Berry, 2010.)
 
-<li>check-runfiles ignore latex-.*-dev packages.
+<li>tlmgr check runfiles: ignore latex-.*-dev packages.
+<li>reduce download retries for curl and wget from 10 to 4.
 
+
 <p><b>tlmgr 51555 (released 5jul19):</b>
 <li>runscript.tlu: use vbscript for GUI error boxes, so tlshell can be
 its own self-contained package, entirely separate from texlive.infra.

Modified: trunk/Master/tlpkg/bin/c2l
===================================================================
--- trunk/Master/tlpkg/bin/c2l	2019-10-18 23:56:57 UTC (rev 52439)
+++ trunk/Master/tlpkg/bin/c2l	2019-10-19 16:04:06 UTC (rev 52440)
@@ -28,8 +28,7 @@
     $arg = "i386-cygwin";
   } elsif ($arg eq "dar32") {
     $arg = "i386-darwin";
-  } elsif ($arg eq "darwin" || $arg eq "dar"
-           || $arg eq "mac" || $arg eq "mactex") {
+  } elsif ($arg eq "darwin" || $arg eq "dar" || $arg eq "mac") {
     $arg = "x86_64-darwin";
   } elsif ($arg eq "darleg") {
     $arg = "x86_64-darwinlegacy";

Modified: trunk/Master/tlpkg/bin/tl-update-asy
===================================================================
--- trunk/Master/tlpkg/bin/tl-update-asy	2019-10-18 23:56:57 UTC (rev 52439)
+++ trunk/Master/tlpkg/bin/tl-update-asy	2019-10-19 16:04:06 UTC (rev 52440)
@@ -22,7 +22,7 @@
   \cp -arf /home/ftp/tex-archive/graphics/asymptote/ .
 
   cd asymptote
-  ver=`awk -F\" '{print $2}' revision.cc`  # the newly-released version
+  ver=`awk -F\" '{print $2}' revision.cc | sed 1q` # the newly-released version
   echo $ver
 
   # show list of new files to add:
@@ -29,9 +29,9 @@
   svn status | sed -n 's/^\?//p' | fgrep -v binaries
   svn add `!!`
   
-  # show list of files to remove (keep free)
+  # show list of files to remove (keep gc-7.6.2 until new is working):
   diff -qr . /home/ftp/tex-archive/graphics/asymptote/ \
-  | egrep -v ' differ' | egrep -v '\.svn'
+  | egrep -v ' differ' | egrep -v '\.svn|gc-7.6.2'
   svn rm ...
 
   # final check and commit:
@@ -45,7 +45,7 @@
   # Despite all the dire warnings above, this part actually can be run
   # as a script, because it's so often necessary to redo.
   set -e
-  PATH=/usr/bin:/bin:/sbin; export PATH # system gcc for sake of shared libs
+  PATH=/usr/bin:/usr/sbin; export PATH # system gcc for sake of shared libs
   #PATH=/usr/local/bin:$PATH		# need new gs to pass tests, but ok
   PATH=$lb:$PATH			# get our kpsewhich
   svn=/usr/local/bin/svn                # so we need our svn explicitly
@@ -63,13 +63,10 @@
   fi
   rm -rf config.cache config.h config.log config.status errors.temp
   rm -rf /tmp/ainst autom4te.cache
-  # these configure options represent what is intended to be supported
-  # in the x86_64-linux build.
-  ASYMPTOTE_EPSDRIVER=epswrite; export ASYMPTOTE_EPSDRIVER
   ./configure --prefix=/tmp/ainst \
     --with-latex=/tmp/ainst/latex --with-context=/tmp/ainst/context \
     --disable-fftw --disable-gl --disable-gsl \
-    --enable-texlive-build CFLAGS=-g CXXFLAGS="-std=c++11 -DNOHASH" #-ansi
+    --enable-texlive-build CFLAGS=-g CXXFLAGS=-std=c++11 #-ansi
   make
   make check
   make install-prebuilt



More information about the tex-live-commits mailing list