--- /dev/null
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by olra.theworths.org (Postfix) with ESMTP id 747A5431FAF\r
+ for <notmuch@notmuchmail.org>; Sat, 5 Apr 2014 02:47:48 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+ autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+ by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id g7cD64blvxsZ for <notmuch@notmuchmail.org>;\r
+ Sat, 5 Apr 2014 02:47:42 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by olra.theworths.org (Postfix) with ESMTP id 8918E431FAE\r
+ for <notmuch@notmuchmail.org>; Sat, 5 Apr 2014 02:47:42 -0700 (PDT)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+ id 7842F100063; Sat, 5 Apr 2014 12:47:30 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 1/1] release-checks: removed manual page version check\r
+Date: Sat, 5 Apr 2014 12:47:29 +0300\r
+Message-Id: <1396691249-29402-1-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 1.8.0\r
+Cc: tomi.ollila@iki.fi\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sat, 05 Apr 2014 09:47:48 -0000\r
+\r
+Manual pages are now generated and during the generation the version\r
+string is read from `version` file, so this (currently failing) test\r
+checking manual page versions can be removed.\r
+\r
+While at it, changed the case pattern *[^0-9.]*\r
+to its portable alternative *[!0-9.]*\r
+---\r
+ devel/release-checks.sh | 42 +-----------------------------------------\r
+ 1 file changed, 1 insertion(+), 41 deletions(-)\r
+\r
+diff --git a/devel/release-checks.sh b/devel/release-checks.sh\r
+index 8938905..797d62a 100755\r
+--- a/devel/release-checks.sh\r
++++ b/devel/release-checks.sh\r
+@@ -68,7 +68,7 @@ verfail ()\r
+ \r
+ echo -n "Checking that '$VERSION' is good with digits and periods... "\r
+ case $VERSION in\r
+- *[^0-9.]*)\r
++ *[!0-9.]*)\r
+ verfail "'$VERSION' contains other characters than digits and periods" ;;\r
+ .*) verfail "'$VERSION' begins with a period" ;;\r
+ *.) verfail "'$VERSION' ends with a period" ;;\r
+@@ -196,46 +196,6 @@ case $news_date in\r
+ append_emsg "Date '$news_date' in NEWS file is not in format (yyyy-mm-dd)"\r
+ esac\r
+ \r
+-readonly DATE=${news_date//[()]/} # bash feature\r
+-manthdata ()\r
+-{\r
+- set x $*\r
+- if [ $# != 7 ]\r
+- then\r
+- append_emsg "'$mp' has too many '.TH' lines"\r
+- man_mismatch=1\r
+- fi\r
+- man_date=${5-} man_version=${7-}\r
+-}\r
+-\r
+-echo -n "Checking that manual page dates and versions are $DATE and $VERSION... "\r
+-manfiles=`find man -type f | sort`\r
+-man_pages_ok=Yes\r
+-for mp in $manfiles\r
+-do\r
+- case $mp in\r
+- *.[0-9]) ;; # fall below this 'case ... esac'\r
+-\r
+- */Makefile.local | */Makefile ) continue ;;\r
+- */.gitignore) continue ;;\r
+- *.bak) continue ;;\r
+-\r
+- *) append_emsg "'$mp': extra file"\r
+- man_pages_ok=No\r
+- continue\r
+- esac\r
+- manthdata `sed -n '/^[.]TH NOTMUCH/ { y/"/ /; p; }' "$mp"`\r
+- if [ "$man_version" != "$VERSION" ]\r
+- then append_emsg "Version '$man_version' is not '$VERSION' in $mp"\r
+- mman_pages_ok=No\r
+- fi\r
+- if [ "$man_date" != "$DATE" ]\r
+- then append_emsg "DATE '$man_date' is not '$DATE' in $mp"\r
+- man_pages_ok=No\r
+- fi\r
+-done\r
+-echo $man_pages_ok.\r
+-\r
+ if [ -n "$emsgs" ]\r
+ then\r
+ echo\r
+-- \r
+1.8.0\r
+\r