summaryrefslogtreecommitdiff
path: root/Build/tools/update-lists
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-06-09 20:09:36 +0000
committerKarl Berry <karl@freefriends.org>2008-06-09 20:09:36 +0000
commit07b1dd24a6c6ca7ac335c56b3cc3127bd7910619 (patch)
tree0d2f468e7ca03a1fe7dec6ab32d70bc8312c9635 /Build/tools/update-lists
parentd07573a8bcbd2864457642cb3a08aa940bc89565 (diff)
remove obsolete or replaced tpm-related scripts and support
git-svn-id: svn://tug.org/texlive/trunk@8622 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/update-lists')
-rwxr-xr-xBuild/tools/update-lists44
1 files changed, 0 insertions, 44 deletions
diff --git a/Build/tools/update-lists b/Build/tools/update-lists
deleted file mode 100755
index 8a4b5afae43..00000000000
--- a/Build/tools/update-lists
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-# $Id$
-# Created by Sebastian Rahtz, long ago. Public domain.
-#
-# Update the texmf/lists/* files from all the tpm's.
-
-tools=`cd \`dirname $0\` && /bin/pwd`
-W=`cd \`dirname $0\`/../../Master && /bin/pwd`
-cd $W || exit 1
-
-if test "x$1" = x-n; then
- chicken=true
-else
- chicken=false
-fi
-
-$chicken || rm -f texmf/lists/*
-
-echo "$0: doing packages from $W"
-for i in texmf-dist/tpm/*.tpm \
- texmf/tpm/hyphen*tpm \
- texmf/tpm/lib-*.tpm \
- texmf/tpm/bin-*.tpm \
- texmf-doc/tpm/* ; do
- xsltproc --stringparam ROOT $W $tools/tpm2list.xsl $i
-done
-
-echo "$0: doing collections..."
-for i in texmf/tpm/collection*.tpm; do
- xsltproc --stringparam ROOT $W $tools/collection2list.xsl $i
-done
-
-echo "$0: doing schemes..."
-for i in texmf/tpm/scheme*.tpm; do
- xsltproc --stringparam ROOT $W $tools/scheme2list.xsl $i
-done
-
-echo "$0: regenerated lists."
-$chicken && exit 0
-
-echo "$0: updating lists in repository."
-cd texmf/lists || exit 1
-svn commit -m'update-lists autoupdate'
-# xx must svn remove old lists somehow