hstr/dist/ubuntu-make-all-distros.sh

26 lines
624 B
Bash
Raw Normal View History

#!/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
export HHBZRMSG="History management and color themes fixes."
2015-11-26 04:29:44 +08:00
export VERSION=1.19.
export MINOR=1
2015-11-24 03:58:05 +08:00
# precise quantal saucy precise utopic / trusty vivid wily
for DISTRO in trusty vivid wily
do
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
MINOR=`expr $MINOR + 1`
done
# eof