mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-02-17 23:53:15 +01:00
release-checks: removed manual page version check
Manual pages are now generated and during the generation the version string is read from `version` file, so this (currently failing) test checking manual page versions can be removed. While at it, changed the case pattern *[^0-9.]* to its portable alternative *[!0-9.]*
This commit is contained in:
parent
703dec7754
commit
5608e39a6b
1 changed files with 1 additions and 41 deletions
|
@ -68,7 +68,7 @@ verfail ()
|
||||||
|
|
||||||
echo -n "Checking that '$VERSION' is good with digits and periods... "
|
echo -n "Checking that '$VERSION' is good with digits and periods... "
|
||||||
case $VERSION in
|
case $VERSION in
|
||||||
*[^0-9.]*)
|
*[!0-9.]*)
|
||||||
verfail "'$VERSION' contains other characters than digits and periods" ;;
|
verfail "'$VERSION' contains other characters than digits and periods" ;;
|
||||||
.*) verfail "'$VERSION' begins with a period" ;;
|
.*) verfail "'$VERSION' begins with a period" ;;
|
||||||
*.) verfail "'$VERSION' ends with a period" ;;
|
*.) verfail "'$VERSION' ends with a period" ;;
|
||||||
|
@ -196,46 +196,6 @@ case $news_date in
|
||||||
append_emsg "Date '$news_date' in NEWS file is not in format (yyyy-mm-dd)"
|
append_emsg "Date '$news_date' in NEWS file is not in format (yyyy-mm-dd)"
|
||||||
esac
|
esac
|
||||||
|
|
||||||
readonly DATE=${news_date//[()]/} # bash feature
|
|
||||||
manthdata ()
|
|
||||||
{
|
|
||||||
set x $*
|
|
||||||
if [ $# != 7 ]
|
|
||||||
then
|
|
||||||
append_emsg "'$mp' has too many '.TH' lines"
|
|
||||||
man_mismatch=1
|
|
||||||
fi
|
|
||||||
man_date=${5-} man_version=${7-}
|
|
||||||
}
|
|
||||||
|
|
||||||
echo -n "Checking that manual page dates and versions are $DATE and $VERSION... "
|
|
||||||
manfiles=`find man -type f | sort`
|
|
||||||
man_pages_ok=Yes
|
|
||||||
for mp in $manfiles
|
|
||||||
do
|
|
||||||
case $mp in
|
|
||||||
*.[0-9]) ;; # fall below this 'case ... esac'
|
|
||||||
|
|
||||||
*/Makefile.local | */Makefile ) continue ;;
|
|
||||||
*/.gitignore) continue ;;
|
|
||||||
*.bak) continue ;;
|
|
||||||
|
|
||||||
*) append_emsg "'$mp': extra file"
|
|
||||||
man_pages_ok=No
|
|
||||||
continue
|
|
||||||
esac
|
|
||||||
manthdata `sed -n '/^[.]TH NOTMUCH/ { y/"/ /; p; }' "$mp"`
|
|
||||||
if [ "$man_version" != "$VERSION" ]
|
|
||||||
then append_emsg "Version '$man_version' is not '$VERSION' in $mp"
|
|
||||||
mman_pages_ok=No
|
|
||||||
fi
|
|
||||||
if [ "$man_date" != "$DATE" ]
|
|
||||||
then append_emsg "DATE '$man_date' is not '$DATE' in $mp"
|
|
||||||
man_pages_ok=No
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
echo $man_pages_ok.
|
|
||||||
|
|
||||||
if [ -n "$emsgs" ]
|
if [ -n "$emsgs" ]
|
||||||
then
|
then
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Add table
Reference in a new issue