2014-04-18 20:03:41 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-02-27 16:03:17 +08:00
|
|
|
# Launchpad release checklist:
|
|
|
|
# - update version in source code (hstr.c)
|
|
|
|
# - update version in configure.ac
|
|
|
|
# - update release message in this file
|
|
|
|
# - update version in this file
|
|
|
|
# - check target Ubuntu distributions in this file
|
|
|
|
# - check minor version in this file
|
|
|
|
# - run this script from ~/p/hstr/launchpad
|
|
|
|
|
2016-04-27 14:13:30 +08:00
|
|
|
if [ -e "../.git" ]
|
|
|
|
then
|
|
|
|
echo "This script MUST NOT be run from Git repository - run it e.g. from ~/p/hstr/launchpad instead"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
export HHBZRMSG="Top and bottom prompt."
|
2018-05-07 01:31:41 +08:00
|
|
|
export VERSION=1.25.
|
|
|
|
export MINOR=1
|
2014-04-18 20:03:41 +08:00
|
|
|
|
2018-04-27 22:57:39 +08:00
|
|
|
# precise quantal saucy precise utopic vivid wily yakkety zesty / trusty xenial artful bionic
|
2018-05-07 01:31:41 +08:00
|
|
|
for DISTRO in trusty xenial artful bionic
|
2014-04-18 20:03:41 +08:00
|
|
|
do
|
|
|
|
|
|
|
|
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
|
2014-09-13 03:50:13 +08:00
|
|
|
MINOR=`expr $MINOR + 1`
|
2014-04-18 20:03:41 +08:00
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
# eof
|