summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/ptex-fontmaps/tools/release.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/ptex-fontmaps/tools/release.sh')
-rwxr-xr-xMaster/texmf-dist/source/ptex-fontmaps/tools/release.sh57
1 files changed, 0 insertions, 57 deletions
diff --git a/Master/texmf-dist/source/ptex-fontmaps/tools/release.sh b/Master/texmf-dist/source/ptex-fontmaps/tools/release.sh
deleted file mode 100755
index 60fe0b4f5ee..00000000000
--- a/Master/texmf-dist/source/ptex-fontmaps/tools/release.sh
+++ /dev/null
@@ -1,57 +0,0 @@
-#
-# release.sh
-# copied from luatexja project and adapted
-
-PROJECT=ptex-fontmaps
-DIR=`pwd`/..
-VER=${VER:-`date +%Y%m%d.0`}
-
-TEMP=/tmp
-
-echo "Making Release $VER. Ctrl-C to cancel."
-read REPLY
-if test -d "$TEMP/$PROJECT-$VER"; then
- echo "Warning: the directory '$TEMP/$PROJECT-$VER' is found:"
- echo
- ls $TEMP/$PROJECT-$VER
- echo
- echo -n "I'm going to remove this directory. Continue? yes/No"
- echo
- read REPLY <&2
- case $REPLY in
- y*|Y*) rm -rf $TEMP/$PROJECT-$VER;;
- *) echo "Aborted."; exit 1;;
- esac
-fi
-echo
-git commit -m "Release $VER" --allow-empty
-git archive --format=tar --prefix=$PROJECT-$VER/ HEAD | (cd $TEMP && tar xf -)
-git --no-pager log --date=short --format='%ad %aN <%ae>%n%n%x09* %s%d [%h]%n' > $TEMP/$PROJECT-$VER/ChangeLog
-cat ChangeLog.pre-git >> $TEMP/$PROJECT-$VER/ChangeLog
-cd $TEMP
-rm -rf $PROJECT-$VER-orig
-#
-# remove tl-update stuff that is only here temporarily
-rm -rf $PROJECT-$VER/tl-updates
-cp -r $PROJECT-$VER $PROJECT-$VER-orig
-cd $PROJECT-$VER
-rm -f .gitignore
-for i in README script/kanji-fontmap-creator.pl script/kanji-config-updmap.pl ; do
- perl -pi.bak -e "s/\\\$VER\\\$/$VER/g" $i
- rm -f ${i}.bak
-done
-cd ..
-diff -urN $PROJECT-$VER-orig $PROJECT-$VER
-tar zcf $DIR/$PROJECT-$VER.tar.gz $PROJECT-$VER
-echo
-echo You should execute
-echo
-echo " git push && git tag $VER && git push origin $VER"
-echo
-echo Informations for submitting CTAN:
-echo " CONTRIBUTION: ptex-fontmaps"
-echo " SUMMARY: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex"
-echo " DIRECTORY: language/japanese/ptex-fontmaps"
-echo " LICENSE: free/other-free"
-echo " FILE: $DIR/$PROJECT-$VER.tar.gz"
-