Merge branch 'master' of git://git.tails.boum.org/tails
[besstails.git] / release
blob085d023665baa55cb5f7cf5dbf031a6677a63210
1 #!/bin/sh
3 # Usage: ./release NEW_VERSION [ dev | SINCE_COMMITISH ]
4 #
5 # If "dev" is supplied as the second argument, a development snapshot
6 # is done rather than a real release, i.e.:
7 # * the --snapshot --auto options are passed to git-dch
8 # * no commit or tag is created
9 # else, the second argument is passed to git-dch's --since option.
11 ### source the configuration files
13 . config/amnesia
14 if [ -e config/amnesia.local ] ; then
15 . config/amnesia.local
18 ### init variables
20 NEW_VERSION="$1"
21 if [ "$2" = dev ]; then
22 SNAPSHOT=yes
23 else
24 SNAPSHOT=no
25 SINCE="$2"
28 ### helper functions
30 fatal () {
31 echo "Fatal: $@" >&2
32 exit 2
35 ### sanity checks
37 [ -n "${NEW_VERSION}" ] \
38 || fatal "the new version must be supplied on the command-line."
39 [ -n "${AMNESIA_DEV_FULLNAME}" ] \
40 || fatal "AMNESIA_DEV_FULLNAME must be set in config/amnesia"
41 [ -n "${AMNESIA_DEV_EMAIL}" ] \
42 || fatal "AMNESIA_DEV_EMAIL must be set in config/amnesia"
43 [ -n "${AMNESIA_DEV_KEYID}" ] \
44 || fatal "AMNESIA_DEV_KEYID must be set in config/amnesia"
45 [ -x "`which git`" ] \
46 || fatal "could not find git, please apt-get install git-core"
47 [ -x "`which git-dch`" ] \
48 || fatal "could not find git-dch, please apt-get install git-buildpackage"
50 ### main
52 export DEBFULLNAME="${AMNESIA_DEV_FULLNAME}"
53 export DEBEMAIL="${AMNESIA_DEV_EMAIL}"
55 # update the Changelog
56 echo "Updating debian/changelog from Git history..."
57 git-dch \
58 `if [ ${SNAPSHOT} = yes ]; then echo '--snapshot --auto' ; fi` \
59 `if [ ${SNAPSHOT} = no -a -n ${SINCE} ]; then echo "--release --since=${SINCE}" ; fi` \
60 `if [ ${SNAPSHOT} = no -a -z ${SINCE} ]; then echo "--release --auto" ; fi` \
61 --new-version="${NEW_VERSION}" \
62 --ignore-branch \
63 || fatal "git-dch failed."
65 # cleanup some parts of the changelog
66 perl -pi'' -e 's/\A \[ IkiWiki::Plugin::po::change \]\n//' debian/changelog
67 perl -pi'' -e 's/\A \* update[d]? PO file[s]?[.]?\n//' debian/changelog
68 perl -pi'' -e 's/\A \* \n//' debian/changelog
69 perl -pi'' -e 's/\A \[ 127\.0\.0\.1 \]\n//' debian/changelog
70 perl -pi'' -e 's/\A \[ amnesia \]\n//' debian/changelog
71 perl -pi'' -e 's/\A \[ anonym \]\n//' debian/changelog
72 perl -pi'' -e 's/\A \[ T\(A\)ILS developers \]\n//' debian/changelog
73 perl -pi'' -e 's/\A \[ Tails developers \]\n//' debian/changelog
74 perl -pi'' -e 's/\A \[ Tails \]\n//' debian/changelog
75 perl -pi'' -e 's/\A \* Added a comment\n//' debian/changelog
76 perl -pi'' -e 's/\A \* Added a comment:.*\n//' debian/changelog
77 perl -pi'' -e 's/\A \* Remove spam\.\n//' debian/changelog
78 perl -pi'' -e 's/\A \* todo\+\+\n//i' debian/changelog
79 perl -pi'' -e 's/\A \* todo--\n//i' debian/changelog
80 perl -pi'' -e 's/\A \* TODO update[.]?\n//i' debian/changelog
81 perl -pi'' -e 's/\A \* Update ticket[.]?\n//i' debian/changelog
82 perl -pi'' -e 's/\A \* Now pending[.]?\n//i' debian/changelog
83 perl -pi'' -e 's/\A \* Done[.]?\n//i' debian/changelog
84 perl -pi'' -e 's/\A \* Upcoming release\n//' debian/changelog
86 # commit and tag the release
87 # if [ "${SNAPSHOT}" = no ]; then
88 # echo "Commit'ing debian/changelog..."
89 # git commit -m "releasing version ${NEW_VERSION}" debian/changelog \
90 # || fatal "failed to commit debian/changelog"
91 # echo "Tagging new version..."
92 # git tag -u "${AMNESIA_DEV_KEYID}" -m "tagging version ${NEW_VERSION}" "${NEW_VERSION}"
93 # fi
95 echo "done."