texlive[43967] Build/source/texk/texlive/linked_scripts:

commits+karl at tug.org commits+karl at tug.org
Sat Apr 22 00:57:19 CEST 2017


Revision: 43967
          http://tug.org/svn/texlive?view=revision&revision=43967
Author:   karl
Date:     2017-04-22 00:57:19 +0200 (Sat, 22 Apr 2017)
Log Message:
-----------
fmtutil-user.sh, updmap-user.sh: add to build

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
    trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
    trunk/Build/source/texk/texlive/linked_scripts/scripts.lst

Added Paths:
-----------
    trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil-user.sh
    trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap-user.sh

Modified: trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/Makefile.am	2017-04-21 22:51:43 UTC (rev 43966)
+++ trunk/Build/source/texk/texlive/linked_scripts/Makefile.am	2017-04-21 22:57:19 UTC (rev 43967)
@@ -187,10 +187,12 @@
 	texdoc/texdoc.tlu \
 	texfot/texfot.pl \
 	texlive/fmtutil-sys.sh \
+	texlive/fmtutil-user.sh \
 	texlive/fmtutil.pl \
 	texlive/rungs.tlu \
 	texlive/tlmgr.pl \
 	texlive/updmap-sys.sh \
+	texlive/updmap-user.sh \
 	texlive/updmap.pl \
 	texliveonfly/texliveonfly.py \
 	texloganalyser/texloganalyser \

Modified: trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/Makefile.in	2017-04-21 22:51:43 UTC (rev 43966)
+++ trunk/Build/source/texk/texlive/linked_scripts/Makefile.in	2017-04-21 22:57:19 UTC (rev 43967)
@@ -402,10 +402,12 @@
 	texdoc/texdoc.tlu \
 	texfot/texfot.pl \
 	texlive/fmtutil-sys.sh \
+	texlive/fmtutil-user.sh \
 	texlive/fmtutil.pl \
 	texlive/rungs.tlu \
 	texlive/tlmgr.pl \
 	texlive/updmap-sys.sh \
+	texlive/updmap-user.sh \
 	texlive/updmap.pl \
 	texliveonfly/texliveonfly.py \
 	texloganalyser/texloganalyser \

Modified: trunk/Build/source/texk/texlive/linked_scripts/scripts.lst
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/scripts.lst	2017-04-21 22:51:43 UTC (rev 43966)
+++ trunk/Build/source/texk/texlive/linked_scripts/scripts.lst	2017-04-21 22:57:19 UTC (rev 43967)
@@ -132,10 +132,12 @@
 texdoc/texdoc.tlu
 texfot/texfot.pl
 texlive/fmtutil-sys.sh
+texlive/fmtutil-user.sh
 texlive/fmtutil.pl
 texlive/rungs.tlu
 texlive/tlmgr.pl
 texlive/updmap-sys.sh
+texlive/updmap-user.sh
 texlive/updmap.pl
 texliveonfly/texliveonfly.py
 texloganalyser/texloganalyser

Added: trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil-user.sh
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil-user.sh	                        (rev 0)
+++ trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil-user.sh	2017-04-21 22:57:19 UTC (rev 43967)
@@ -0,0 +1,25 @@
+#!/bin/sh
+# $Id$
+# fmtutil-user - arrange for fmtutil to affect user directories.
+# Maintained in Master/texmf-dist/scripts/texlive/
+# Public domain.  Originally written by Thomas Esser.
+
+test -f /bin/ksh && test -z "$RUNNING_KSH" \
+  && { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \
+  && { RUNNING_KSH=true; export RUNNING_KSH; exec /bin/ksh $0 ${1+"$@"}; }
+unset RUNNING_KSH
+
+test -f /bin/bsh && test -z "$RUNNING_BSH" \
+  && { UNAMES=`uname -s`; test "x$UNAMES" = xAIX; } 2>/dev/null \
+  && { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; }
+unset RUNNING_BSH
+
+# preferentially use subprograms from our own directory.
+mydir=`echo "$0" | sed 's,/[^/]*$,,'`
+mydir=`cd "$mydir" && pwd`
+PATH="$mydir:$PATH"; export PATH
+
+# hack around a bug in zsh:
+test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
+
+exec fmtutil --user ${1+"$@"}


Property changes on: trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil-user.sh
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap-user.sh
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap-user.sh	                        (rev 0)
+++ trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap-user.sh	2017-04-21 22:57:19 UTC (rev 43967)
@@ -0,0 +1,25 @@
+#!/bin/sh
+# $Id$
+# updmap-user - arrange for updmap to affect user directories.
+# Maintained in Master/texmf-dist/scripts/texlive/
+# Public domain.  Originally written by Thomas Esser.
+
+test -f /bin/ksh && test -z "$RUNNING_KSH" \
+  && { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \
+  && { RUNNING_KSH=true; export RUNNING_KSH; exec /bin/ksh $0 ${1+"$@"}; }
+unset RUNNING_KSH
+
+test -f /bin/bsh && test -z "$RUNNING_BSH" \
+  && { UNAMES=`uname -s`; test "x$UNAMES" = xAIX; } 2>/dev/null \
+  && { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; }
+unset RUNNING_BSH
+
+# preferentially use subprograms from our own directory.
+mydir=`echo "$0" | sed 's,/[^/]*$,,'`
+mydir=`cd "$mydir" && pwd`
+PATH="$mydir:$PATH"; export PATH
+
+# hack around a bug in zsh:
+test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
+
+exec updmap --user ${1+"$@"}


Property changes on: trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap-user.sh
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


More information about the tex-live-commits mailing list