]> git.notmuchmail.org Git - notmuch/commitdiff
make release: added goal verify-version-manpage
authorTomi Ollila <tomi.ollila@iki.fi>
Mon, 21 Nov 2011 16:27:09 +0000 (18:27 +0200)
committerDavid Bremner <bremner@debian.org>
Thu, 24 Nov 2011 12:44:45 +0000 (08:44 -0400)
Check that the version mentioned in notmuch manual page
is consistent with the version file.

Makefile.local

index b6e216a28e533bce0dcb80e85f61ff96cd360095..02afdd0f0308c24f2b71388f6e2dec5943d855d7 100644 (file)
@@ -187,7 +187,7 @@ release-message:
 verify-source-tree-and-version: verify-no-dirty-code
 
 .PHONY: verify-no-dirty-code
 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-no-dirty-code: verify-version-debian verify-version-python verify-version-manpage
 ifeq ($(IS_GIT),yes)
        @printf "Checking that source tree is clean..."
 ifneq ($(shell git ls-files -m),)
 ifeq ($(IS_GIT),yes)
        @printf "Checking that source tree is clean..."
 ifneq ($(shell git ls-files -m),)
@@ -220,6 +220,14 @@ verify-version-python: verify-version-components
                 echo "Please edit version and $(PV_FILE) to have consistent versions." && false)
        @echo "Good."
 
                 echo "Please edit version and $(PV_FILE) to have consistent versions." && false)
        @echo "Good."
 
+.PHONY: verify-version-manpage
+verify-version-manpage: verify-version-components
+       @echo -n "Checking that manual page version is $(VERSION)..."
+       @[ "$(VERSION)" = $$(sed -n '/^[.]TH NOTMUCH 1/{s/.*"Notmuch //;s/".*//p;}' notmuch.1) ] || \
+               (echo "No." && \
+                echo "Please edit version and notmuch.1 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..."
 .PHONY: verify-version-components
 verify-version-components:
        @echo -n "Checking that $(VERSION) consists only of digits and periods..."