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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/bin/bash
# Copyright (C) 2012, 2013, 2014 Johan Mattsson
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
rep="$(pwd)"
repname="$(basename $(pwd))"
mkdir -p build
cd build
rm -rf export
mkdir -p export
cd export
version=$(cat ../../scripts/version.py | grep "VERSION = '" | grep -v "SO_VERSION" | sed -e "s:VERSION = '::" | sed "s:'.*::g")
if ! git diff --exit-code > /dev/null; then
echo "Uncommitted changes, commit before creating the release."
exit 1
fi
git tag -s v$version -m "Version $version"
if [ $? -ne 0 ] ; then
echo "Can't create release tag"
exit 1
fi
echo "Creating a release for version $version"
if [ $# -ne 0 -a $# -ne 2 ] ; then
echo "Usage: $0 branch version"
exit 1
fi
rm -rf birdfont-$version
if [ "$1" = "" ] ; then
echo "No branch specified, exporting master."
git clone --depth 1 file://$rep
else
git clone --depth 1 -b $1 file://$rep
fi
mv $repname birdfont-$version
rm -rf birdfont-$version/.git
rm -rf birdfont-$version/.gitignore
rm -rf birdfont-$version/.travis.yml
cd birdfont-$version
python3 ./scripts/complete_translations.py -t 93 -i
rm -rf ./scripts/__pycache__
cd ..
tar -cf birdfont-$version.tar birdfont-$version
xz -z birdfont-$version.tar
rm -rf ../birdfont-$version.tar.xz
mv birdfont-$version.tar.xz ../
# build it to make sure that everything was checked in
cd birdfont-$version && \
./configure && \
./scripts/linux_build.py && \
gpg --output ../../birdfont-$version.tar.xz.sig --detach-sig ../../birdfont-$version.tar.xz && \
cd .. && \
rm -rf ../export/birdfont-$version
|