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
|
#!/bin/bash
rep="$(pwd)"
mkdir -p build
cd build
mkdir -p export
cd export
version=$(cat ../../scripts/version.py | grep "XMLBIRD_VERSION = '" | sed -e "s:XMLBIRD_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 -a v$version -m "Version $version"
if [ $? -ne 0 ] ; then
echo "Can't create release tag"
exit 1
fi
echo "Creating a release fo version $version"
rm -rf libxmlbird-$version
git clone --depth 1 --no-hardlinks --local $rep
mv xmlbird libxmlbird-$version
rm -rf libxmlbird-$version/.git
rm -rf libxmlbird-$version/.gitignore
rm -rf libxmlbird-$version/.travis.yml
tar -cf libxmlbird-$version.tar libxmlbird-$version
xz -z libxmlbird-$version.tar
rm -rf ../libxmlbird-$version.tar.xz
mv libxmlbird-$version.tar.xz ../
# build it to make sure that everything was checked in
cd libxmlbird-$version && \
./configure && \
./build.py && \
gpg --output ../../libxmlbird-$version.tar.xz.sig --detach-sig ../../libxmlbird-$version.tar.xz && \
cd .. && \
rm -rf ../export/libxmlbird-$version
|