mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-10 17:18:35 +08:00
Managed to fix Debian change log signature line + fixed changelog file name.
This commit is contained in:
parent
109af2e764
commit
dfddecccd1
2 changed files with 9 additions and 5 deletions
|
@ -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
|
12
dist/2-debian-build-deb.sh
vendored
12
dist/2-debian-build-deb.sh
vendored
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue