Managed to fix Debian change log signature line + fixed changelog file name.

This commit is contained in:
Martin Dvorak 2015-09-17 07:30:08 +02:00
parent 109af2e764
commit dfddecccd1
2 changed files with 9 additions and 5 deletions

View file

@ -1,5 +1,5 @@
2015-05-09 Martin Dvorak <martin.dvorak@mindforger.com>
* Released v1.17 - History Management and Color Profiles
* This release brings improvements and stabilization
of the history management along with terminal

View file

@ -5,14 +5,18 @@ export SCRIPTHOME=`pwd`
. ./debian-env.sh
function createChangelog() {
# crazily strict Debian tool:
# - signature line MUST have one whitespace prefix
# - signature line MUST have double space between email and timestamp
# - traling lines must have exactly one space
export MYTS=`date "+%a, %d %b %Y %H:%M:%S"`
echo "Changelog timestamp: ${MYTS}"
echo -e "hstr (${HHFULLVERSION}) ${UBUNTUVERSION}; urgency=low" > $1
echo -e "\n" >> $1
echo " " >> $1
echo -e " * ${HHBZRMSG}" >> $1
echo -e "\n" >> $1
echo -e " -- Martin Dvorak (Dvorka) <martin.dvorak@mindforger.com> ${MYTS} +0100" >> $1
echo -e "\n" >> $1
echo " " >> $1
echo " -- Martin Dvorak <martin.dvorak@mindforger.com> ${MYTS} +0100" >> $1
}
function createTarball() {