summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will@willthompson.co.uk>2016-01-27 22:42:54 +0000
committerWill Thompson <will@willthompson.co.uk>2016-01-27 22:42:54 +0000
commita161bd7bcc0a6ce2f1ca096fd04cf03c8928f115 (patch)
tree6ade03cfea0083bb35c2776efe3deb02f131b1bc
parent87f3a42a53d2a123272e3fffe777aa1be6887ccb (diff)
One line of automation at a timebustle-0.5.4
-rw-r--r--HACKING.md2
-rw-r--r--Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/HACKING.md b/HACKING.md
index 5af008e..c8268eb 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -23,8 +23,6 @@ Releasing Bustle
```sh
# Tag release, build and sign the tarballs
make maintainer-make-release
-gpg --detach-sign --armor dist/bustle-x.y.z.tar.gz
-gpg --detach-sign --armor dist/bustle-x.y.z-x86_64.tar.bz2
# Stick source and binaries on freedesktop.org
mkdir x.y.z
diff --git a/Makefile b/Makefile
index 459b2f2..132ed61 100644
--- a/Makefile
+++ b/Makefile
@@ -123,6 +123,8 @@ maintainer-make-release: bustle.cabal dist/build/autogen/version.txt
git tag -s -m 'Bustle '`cat dist/build/autogen/version.txt` \
bustle-`cat dist/build/autogen/version.txt`
make maintainer-binary-tarball
+ gpg --detach-sign --armor dist/bustle-`cat dist/build/autogen/version.txt`.tar.gz
+ gpg --detach-sign --armor dist/bustle-`cat dist/build/autogen/version.txt`-x86_64.tar.bz2
.travis.yml: bustle.cabal make_travis_yml.hs
./make_travis_yml.hs $< libpcap-dev libgtk-3-dev libcairo2-dev happy-1.19.4 alex-3.1.3 > $@