mirror of https://github.com/patacrep/patacrep.git
Engine for LaTeX songbooks
http://www.patacrep.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
#Author: Romain Goffe
|
||
|
#Date: 13/10/2011
|
||
|
#Description: Build all the pdf on www.patacrep.com, increase their
|
||
|
#version and commit/tag the result
|
||
|
|
||
|
export GREP_OPTIONS=""
|
||
|
|
||
|
#volume-3.sb
|
||
|
./utils/volume-3.sh
|
||
|
#english.sb
|
||
|
./utils/langbooks.sh english
|
||
|
#french.sb
|
||
|
./utils/langbooks.sh french
|
||
|
|
||
|
#increase version
|
||
|
RELEASE_TYPE=$1
|
||
|
VERSION=`grep "\"version\"" ./templates/patacrep.tmpl | sed -e 's/.*\"\([0-9]\+\)\.\([0-9]\+\)\.\?\([0-9]\+\)\?.*/export MAIN=\1\nexport MAJOR=\2\nexport MINOR=\3\n/'`
|
||
|
$VERSION
|
||
|
|
||
|
if [ $# -eq 1 ]
|
||
|
then
|
||
|
echo "current version : $MAIN.$MAJOR.$MINOR"
|
||
|
if [ $RELEASE_TYPE = "major" ];
|
||
|
then
|
||
|
MAJOR=$(($MAJOR+1))
|
||
|
MINOR=0
|
||
|
elif [ $RELEASE_TYPE = "minor" ];
|
||
|
then
|
||
|
MINOR=$(($MINOR+1))
|
||
|
else
|
||
|
echo "error: unrecognised release type"
|
||
|
fi;
|
||
|
echo "new version : $MAIN.$MAJOR.$MINOR"
|
||
|
#update version field in sb files
|
||
|
sed -i "s/\"[0-9].[0-9].[0-9]\"/\"$MAIN.$MAJOR.$MINOR\"/" templates/patacrep.tmpl
|
||
|
sed -i "s/\"[0-9].[0-9].[0-9]\"/\"$MAIN.$MAJOR.$MINOR\"/" templates/ancient.tmpl
|
||
|
sed -i "s/\"[0-9].[0-9].[0-9]\"/\"$MAIN.$MAJOR.$MINOR\"/" templates/patacrep-en.tmpl
|
||
|
else
|
||
|
echo "keeping release version"
|
||
|
fi;
|
||
|
|
||
|
|
||
|
#apply verification tools
|
||
|
#echo "emacs batch indentation in progress ..."
|
||
|
#./utils/indent.sh 2> /dev/null
|
||
|
#echo "emacs batch indentation done !"
|
||
|
./utils/rules.py
|
||
|
./utils/typo.sh ./songs/*/*.sg
|
||
|
./utils/resize-cover.sh
|
||
|
|
||
|
#build all songbooks
|
||
|
rm -f *.d
|
||
|
make cleanall
|
||
|
make naheulbeuk.pdf
|
||
|
make volume-1.pdf
|
||
|
make volume-2.pdf
|
||
|
make volume-3.pdf
|
||
|
make english.pdf
|
||
|
make french.pdf
|
||
|
make songbook.pdf
|
||
|
|
||
|
#clean
|
||
|
make clean
|
||
|
|
||
|
./utils/tarball.sh
|
||
|
|
||
|
git status
|
||
|
|
||
|
if [ $# -eq 1 ];
|
||
|
then
|
||
|
#git add templates/patacrep-en.tmpl templates/patacrep.tmpl
|
||
|
git commit -a -m "patacrep release version $MAIN.$MAJOR.$MINOR"
|
||
|
git tag "patacrep_$MAIN.$MAJOR.$MINOR"
|
||
|
fi
|
||
|
|
||
|
export GREP_OPTIONS="--exclude-dir=\*/.svn/\* --exclude=\*~ --binary-files=without-match --line-number"
|