texlive[52441] Master/tlpkg/bin/tl-forceupdate-tlnet:

commits+karl at tug.org commits+karl at tug.org
Sat Oct 19 18:06:43 CEST 2019


Revision: 52441
          http://tug.org/svn/texlive?view=revision&revision=52441
Author:   karl
Date:     2019-10-19 18:06:42 +0200 (Sat, 19 Oct 2019)
Log Message:
-----------
tl-forceupdate-tlnet stale, from 2011; if needed in the future, an option to tl-update-tlnet can do the same

Removed Paths:
-------------
    trunk/Master/tlpkg/bin/tl-forceupdate-tlnet

Deleted: trunk/Master/tlpkg/bin/tl-forceupdate-tlnet
===================================================================
--- trunk/Master/tlpkg/bin/tl-forceupdate-tlnet	2019-10-19 16:04:06 UTC (rev 52440)
+++ trunk/Master/tlpkg/bin/tl-forceupdate-tlnet	2019-10-19 16:06:42 UTC (rev 52441)
@@ -1,74 +0,0 @@
-#!/bin/sh -e
-# Copyright 2011 Norbert Preining
-# This file is licensed under the GNU General Public License version 2
-# or any later version.
-# 
-# Update a TeX Live tlnet area, with testing.
-
-vc_id='$Id$'
-unset CDPATH
-unset LS_COLORS
-
-yyyy=2011
-
-chicken=false
-critical=
-pretest=false
-recreate=
-tlweb=/home/ftp/texlive/tlnet
-verbose=
-
-while test $# -gt 0; do
-  case $1 in
-  --critical)          critical=--all;;
-  --master)            shift; Master=$1;;
-  --pretest)           tlweb=/home/ftp/texlive/tlpretest;;
-  --recreate)          recreate=--recreate;;
-  -v|-vv|-vvv)	       verbose=$1;;
-  --help)              echo "ustl. sorry."; exit 0;;
-  --version)           echo "$vc_id"; exit 0;;
-  --*) echo "$0: unrecognized option \`$1'." >&2
-       exit 1;;
-  *) tlweb=$1;;
-  esac
-  shift
-done
-
-if test -z "$Master"; then
-  mydir=`dirname $0`
-  Master=`cd $mydir/../.. && pwd`
-fi
-
-if test ! -r "$tlweb/tlpkg/texlive.tlpdb"; then
-  cat <<END_NO_TLPDB >&2
-$0: fatal: no file $tlweb/tlpkg/texlive.tlpdb.
-$0: If you are setting up a new release, touch the file,
-$0: and then use --critical --recreate.
-$0: (Or otherwise set up the tlnet hierarchy manually.)
-$0: Goodbye.
-END_NO_TLPDB
-  # and typically we will fail because there are new messages
-  # in the installer.  move the trial dir by hand to avoid
-  # time-consuming full recreate more than once.
-  exit 1
-fi
-
-echo "$0: Using tlweb=$tlweb"         # top level network directory, mirrored
-
-# 

-# Update packages in our working dir.
-echo "$0: Updating $tlweb..."
-cd $tlweb
-echo "$0: Running tl-update-containers..."
-$Master/tlpkg/bin/tl-update-containers \
-  $verbose -location $tlweb $critical $recreate
-
-# It is scary, but I guess we should update the installer package every
-# day, partly for the sake of doc.html and partly so it actually gets
-# tested.  Hopefully we don't break the Perl modules very often.
-echo "$0: Running tl-update-install-pkg..."
-$Master/tlpkg/bin/tl-update-install-pkg -o $tlweb
-
-echo "$0: Done."
-
-exit 0



More information about the tex-live-commits mailing list