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
|
#!/bin/bash -e
VERSION="3.7.0"
NAME="zimpl-$VERSION"
echo ">>> Packaging $NAME."
# remove old tarball
rm -f $NAME.tgz
# compile a fresh documentation
echo ">>> Compiling documentation."
make doc > /dev/null 2>&1
# create tarball
echo ">>> Creating tarball."
tar --transform "s|^|${NAME}/|" -czhf $NAME.tgz \
--exclude="*CVS*" \
--exclude="*cvs*" \
--exclude="*~" \
--exclude="*.o" \
--exclude="*.d" \
--exclude="*TODO" \
--exclude="lint.out" \
--exclude=".\#*" \
--exclude="make/local/*" \
--exclude="*.output" \
--exclude="*OLD*" \
LICENSE README CHANGELOG \
Makefile Makefile.nmake make src doc/zimpl.pdf \
doc/zimpl.man check \
example/chvatal_diet.zpl example/facility_location.zpl \
example/queens[12345].zpl example/steinerbaum.zpl \
example/tsp.zpl example/tsp.dat \
CMakeLists.txt zimpl-config.cmake.in \
cmake/Modules/FindGMP.cmake cmake/Modules/FindPCRE.cmake
# check version numbers
echo ">>> Checking version numbers in Makefile, Makefile.nmake, doc/zimpl.tex (2x), doc/docu.c, CMakeLists.txt, src/zimpl/mme.h and scripts/makedist.sh. (Should be $VERSION)"
# find all version numbers
VERSIONS=""
VERSIONS="$VERSIONS\n$(grep "^VERSION" Makefile)"
VERSIONS="$VERSIONS\n$(grep "^VERSION" Makefile.nmake)"
VERSIONS="$VERSIONS\n$(grep " Version" doc/zimpl.tex |grep -v License)"
VERSIONS="$VERSIONS\n$(grep "@version" doc/docu.c)"
VERSIONS="$VERSIONS\n$(grep " VERSION" CMakeLists.txt |head -n 1)"
VERSIONS="$VERSIONS\n$(grep "ZIMPL_VERSION" src/zimpl/mme.h)"
# boil the formerly found versionnumbers down to a short format
VERSIONNUMBERS=$(echo "$VERSIONS" | grep -o "[0-9]*\.[0-9.]*" | sed 's/\.//g')
# check if the boiled down numbers coincide with the one defined above
VERSIONNUMBER=$(echo "$VERSION" | sed 's/\.//g')
while read -r line; do
if [ "${VERSIONNUMBER}" != "${line}" ]; then
echo "${VERSIONNUMBER} and ${line} do not coincide!" > /dev/stderr
if [ -z "${ZIMPL_MAKEDIST_IGNOREVERSIONNUMBERCHECK}" ] ; then
echo "Aborting. Set ZIMPL_MAKEDIST_IGNOREVERSIONNUMBERCHECK=1 to ignore." > /dev/stderr
exit 1
fi
fi
done <<< "${VERSIONNUMBERS}";
echo ">>> Successfully packaged ${NAME}."
|