blob: 13c4125c33928a6ff1fd8caf74877e01ec7b9007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#
# release.sh
# copied from luatexja project and adapted
PROJECT=jfontmaps
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 -)
cd $TEMP
rm -rf $PROJECT-$VER-orig
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: jfontmaps"
echo " SUMMARY: Font maps and configuration tools for Japanese fonts"
echo " DIRECTORY: language/japanese/jfontmaps"
echo " LICENSE: free/other-free"
echo " FILE: $DIR/$PROJECT-$VER.tar.gz"
|