Initial commit
This commit is contained in:
14
tools/Makefile.am
Normal file
14
tools/Makefile.am
Normal file
@@ -0,0 +1,14 @@
|
||||
EXTRA_DIST = \
|
||||
c-constants-generator.xsl \
|
||||
c-interfaces-generator.xsl \
|
||||
doc-generator.xsl \
|
||||
glib-ginterface-gen.py \
|
||||
identity.xsl \
|
||||
libglibcodegen.py \
|
||||
libtpcodegen.py \
|
||||
make-release-mail.py
|
||||
|
||||
CLEANFILES = libglibcodegen.pyc libglibcodegen.pyo
|
||||
|
||||
glib-ginterface-gen.py: libglibcodegen.py libtpcodegen.py
|
||||
touch $@
|
80
tools/telepathy.am
Normal file
80
tools/telepathy.am
Normal file
@@ -0,0 +1,80 @@
|
||||
## Useful top-level Makefile.am snippets for Telepathy projects.
|
||||
|
||||
dist-hook:
|
||||
chmod u+w ${distdir}/ChangeLog
|
||||
if test -d ${top_srcdir}/.git; then \
|
||||
( cd ${top_srcdir} && git log --date=iso $(CHANGELOG_RANGE) ) > ${distdir}/ChangeLog; \
|
||||
fi
|
||||
|
||||
distcheck-hook:
|
||||
@test "z$(CHECK_FOR_UNRELEASED)" = z || \
|
||||
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
|
||||
|
||||
_is-release-check:
|
||||
@case @VERSION@ in \
|
||||
(*.*.*.*|*+) \
|
||||
echo "Hey! @VERSION@ is not a release!" >&2; \
|
||||
exit 2; \
|
||||
;; \
|
||||
esac
|
||||
@cd ${top_srcdir} && \
|
||||
if ! git diff --no-ext-diff --quiet --exit-code; then \
|
||||
echo "Hey! Your tree is dirty! No release for you." >&2; \
|
||||
exit 2; \
|
||||
fi
|
||||
@cd ${top_srcdir} && \
|
||||
if ! git diff --cached --no-ext-diff --quiet --exit-code; then \
|
||||
echo "Hey! You have changes staged! No release for you." >&2; \
|
||||
exit 2; \
|
||||
fi
|
||||
|
||||
%.tar.gz.asc: %.tar.gz
|
||||
$(AM_V_GEN)gpg --detach-sign --armor $@
|
||||
|
||||
@PACKAGE@-@VERSION@.tar.gz:
|
||||
$(MAKE) _is-release-check
|
||||
$(MAKE) check
|
||||
$(MAKE) distcheck
|
||||
|
||||
maintainer-prepare-release:
|
||||
$(MAKE) _is-release-check
|
||||
$(MAKE) all
|
||||
$(MAKE) distcheck
|
||||
$(MAKE) release-mail
|
||||
git tag -s @PACKAGE@-@VERSION@ -m @PACKAGE@' '@VERSION@
|
||||
gpg --detach-sign --armor @PACKAGE@-@VERSION@.tar.gz
|
||||
|
||||
release-mail: NEWS
|
||||
$(AM_V_GEN)(python $(top_srcdir)/tools/make-release-mail.py \
|
||||
@PACKAGE@ @VERSION@ $(top_srcdir)/NEWS > $@.tmp && \
|
||||
mv $@.tmp $@)
|
||||
|
||||
maintainer-upload-release: _maintainer-upload-release
|
||||
|
||||
_maintainer-upload-release-check: _is-release-check
|
||||
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
|
||||
|
||||
maintainer-make-release:
|
||||
$(MAKE) maintainer-prepare-release
|
||||
$(MAKE) maintainer-upload-release
|
||||
@echo "Now:"
|
||||
@echo " • bump the nano-version;"
|
||||
@echo " • push the branch and tags upstream; and"
|
||||
@echo " • send release-mail to <telepathy@lists.freedesktop.org>."
|
||||
|
||||
## vim:set ft=automake:
|
Reference in New Issue
Block a user