telepathy-rakia: Update telepathy.am from Gabble 0.18. 1 to fix out-of-tree and parallel releases

Simon McVittie smcv at kemper.freedesktop.org
Tue Sep 10 04:31:58 PDT 2013


Module: telepathy-rakia
Branch: master
Commit: 0ac48f0ae588dd508ba60c01430a44124ce4dc6c
URL:    http://cgit.freedesktop.org/telepathy/telepathy-rakia/commit/?id=0ac48f0ae588dd508ba60c01430a44124ce4dc6c

Author: Simon McVittie <simon.mcvittie at collabora.co.uk>
Date:   Wed Aug  7 17:10:28 2013 +0100

Update telepathy.am from Gabble 0.18.1 to fix out-of-tree and parallel releases

I left out the bit that checked that gtk-doc was enabled, because we
don't have gtk-doc in Rakia.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=67872
Reviewed-by: Guillaume Desmottes <guillaume.desmottes at collabora.co.uk>
[commit message amended to what I said on the bug -smcv]
Signed-off-by: Simon McVittie <simon.mcvittie at collabora.co.uk>

---

 tools/telepathy.am |   25 ++++++++++++++++++++-----
 1 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/tools/telepathy.am b/tools/telepathy.am
index 45baa77..2b6c430 100644
--- a/tools/telepathy.am
+++ b/tools/telepathy.am
@@ -3,7 +3,7 @@
 dist-hook:
 	chmod u+w ${distdir}/ChangeLog
 	if test -d ${top_srcdir}/.git; then \
-		git log --date=iso $(CHANGELOG_RANGE) > ${distdir}/ChangeLog; \
+		( cd ${top_srcdir} && git log --date=iso $(CHANGELOG_RANGE) ) > ${distdir}/ChangeLog; \
 	fi
 
 distcheck-hook:
@@ -26,17 +26,30 @@ _is-release-check:
 			exit 2; \
 			;; \
 	esac
-	@if ! git diff --no-ext-diff --quiet --exit-code; then \
+	@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 $@
 
- at PACKAGE@- at VERSION@.tar.gz: _is-release-check check distcheck
+ at PACKAGE@- at VERSION@.tar.gz:
+	$(MAKE) _is-release-check
+	$(MAKE) check
+	$(MAKE) distcheck
 
-maintainer-prepare-release: _is-release-check check distcheck release-mail
+maintainer-prepare-release:
+	$(MAKE) _is-release-check
+	$(MAKE) all
+	$(MAKE) distcheck
+	$(MAKE) release-mail
 	git tag -s @PACKAGE at -@VERSION@ -m @PACKAGE@' '@VERSION@
 	gpg --detach-sign --armor @PACKAGE at -@VERSION at .tar.gz
 
@@ -56,7 +69,9 @@ _maintainer-upload-release: _maintainer-upload-release-check
 	rsync -vzP @PACKAGE at -@VERSION at .tar.gz telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE at -@VERSION at .tar.gz
 	rsync -vzP @PACKAGE at -@VERSION at .tar.gz.asc telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE at -@VERSION at .tar.gz.asc
 
-maintainer-make-release: maintainer-prepare-release maintainer-upload-release
+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"



More information about the telepathy-commits mailing list