diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-02-24 15:52:20 +1100 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-02-24 15:52:20 +1100 |
commit | c7cfdf3e662d8c3264f7da88de4edcd1bd4bf1a9 (patch) | |
tree | 64bc3c15e966bce7ccd357b406fe6055ac740322 /tools | |
parent | b6b27bb54134a665503a899c0596ac5dd9387ebe (diff) |
Include maintainer tools in toplevel Makefile.am
Diffstat (limited to 'tools')
-rw-r--r-- | tools/telepathy.am | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/tools/telepathy.am b/tools/telepathy.am index 93b73d2..7f7794f 100644 --- a/tools/telepathy.am +++ b/tools/telepathy.am @@ -1,22 +1,7 @@ ## Useful top-level Makefile.am snippets for Telepathy projects. -dist-hook: - chmod u+w ${distdir}/ChangeLog - if test -d ${top_srcdir}/.git; then \ - git log --date=iso $(CHANGELOG_RANGE) > ${distdir}/ChangeLog; \ - fi - -distcheck-hook: - @case @VERSION@ in \ - *.*.*.*) ;; \ - *) \ - if grep -r UNRELEASED $(CHECK_FOR_UNRELEASED); \ - then \ - echo "^^^ This is meant to be a release, but some files say UNRELEASED" >&2; \ - exit 2; \ - fi \ - ;; \ - esac +maintainer-sign-release: + gpg --detach-sign -a @PACKAGE@-@VERSION@.tar.bz2 maintainer-upload-release: _maintainer-upload-release @@ -27,12 +12,12 @@ _maintainer-upload-release-check: exit 2; \ ;; \ esac - test -f @PACKAGE@-@VERSION@.tar.gz - test -f @PACKAGE@-@VERSION@.tar.gz.asc - gpg --verify @PACKAGE@-@VERSION@.tar.gz.asc + test -f @PACKAGE@-@VERSION@.tar.bz2 + test -f @PACKAGE@-@VERSION@.tar.bz2.asc + gpg --verify @PACKAGE@-@VERSION@.tar.bz2.asc _maintainer-upload-release: _maintainer-upload-release-check - rsync -vzP @PACKAGE@-@VERSION@.tar.gz telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz - rsync -vzP @PACKAGE@-@VERSION@.tar.gz.asc telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.gz.asc + rsync -vzP @PACKAGE@-@VERSION@.tar.bz2 telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.bz2 + rsync -vzP @PACKAGE@-@VERSION@.tar.bz2.asc telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@VERSION@.tar.bz2.asc ## vim:set ft=automake: |