3 # Usage: ./release NEW_VERSION [ dev | SINCE_COMMITISH ]
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
14 if [ -e config
/amnesia.
local ] ; then
15 . config
/amnesia.
local
21 if [ "$2" = dev
]; then
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"
52 export DEBFULLNAME
="${AMNESIA_DEV_FULLNAME}"
53 export DEBEMAIL
="${AMNESIA_DEV_EMAIL}"
55 # update the Changelog
56 echo "Updating debian/changelog from Git history..."
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}" \
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}"