blob: d061b891824943eb49980986dade3c581f855859 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
## 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 --stat > ${distdir}/ChangeLog || \
git log > ${distdir}/ChangeLog; \
fi
maintainer-upload-release: _maintainer-upload-release
_maintainer-upload-release-check:
@case @VERSION@ in \
(*.*.*.*) \
echo "@VERSION@ is not a release" >&2; \
exit 2; \
;; \
esac
test -f @PACKAGE@-@VERSION@.tar.gz
test -f @PACKAGE@-@VERSION@.tar.gz.asc
gpg --verify @PACKAGE@-@VERSION@.tar.gz.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
## vim:set ft=automake:
|