aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.local
diff options
context:
space:
mode:
authorGravatar Tomi Ollila <tomi.ollila@iki.fi>2012-09-04 17:49:13 +0300
committerGravatar David Bremner <bremner@debian.org>2012-09-05 08:34:01 -0300
commit69843dd6283f17656510f1aae197bc263f9633e1 (patch)
tree54bcbcf469063bfcfc5c6ae3af1b00a725231730 /Makefile.local
parenta0ce84c3afd6021455fa3685088d409f58d3c510 (diff)
{., man}/Makefile.local: edit/remove release-checks.sh related targets
Use new target release-checks in place of verify-version-debian, verify-version-python verify-version-manpage. This target executes devel/release-checks.sh which does all the verifications the three dropped targets did, and some more.
Diffstat (limited to 'Makefile.local')
-rw-r--r--Makefile.local28
1 files changed, 4 insertions, 24 deletions
diff --git a/Makefile.local b/Makefile.local
index de984ab0..7f2d4f13 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -187,7 +187,7 @@ release-message:
verify-source-tree-and-version: verify-no-dirty-code
.PHONY: verify-no-dirty-code
-verify-no-dirty-code: verify-version-debian verify-version-python verify-version-manpage
+verify-no-dirty-code: release-checks
ifeq ($(IS_GIT),yes)
@printf "Checking that source tree is clean..."
ifneq ($(shell git ls-files -m),)
@@ -204,29 +204,9 @@ else
endif
endif
-.PHONY: verify-version-debian
-verify-version-debian: verify-version-components
- @echo -n "Checking that Debian package version is $(VERSION)-1..."
- @[ "$(VERSION)-1" = $$(sed '1{ s/).*//; s/.*(//; q; }' debian/changelog) ] || \
- (echo "No." && \
- echo "Please edit version and debian/changelog to have consistent versions." && false)
- @echo "Good."
-
-.PHONY: verify-version-python
-verify-version-python: verify-version-components
- @echo -n "Checking that python bindings version is $(VERSION)..."
- @[ "$(VERSION)" = $$(python -c "execfile('$(PV_FILE)'); print __VERSION__") ] || \
- (echo "No." && \
- echo "Please edit version and $(PV_FILE) to have consistent versions." && false)
- @echo "Good."
-
-.PHONY: verify-version-components
-verify-version-components:
- @echo -n "Checking that $(VERSION) consists only of digits and periods..."
- @echo $(VERSION) | grep -q -x '^[0-9.]*$$' || \
- (echo "No." && \
- echo "Please follow the instructions in RELEASING to choose a version" && false)
- @echo "Good."
+.PHONY: release-checks
+release-checks:
+ devel/release-checks.sh
.PHONY: verify-newer
verify-newer: