mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
devel/release-checks: added checking of copyright year in documentation
Check that copyright year will be current year in generated documentation. Checking is done my matching that copyright line contains current year as a substring which is good enough "approximation" in this context.
This commit is contained in:
parent
edae844efa
commit
36ad271704
1 changed files with 15 additions and 0 deletions
|
@ -175,6 +175,21 @@ case $news_date in
|
|||
append_emsg "Date '$news_date' in NEWS file is not in format (yyyy-mm-dd)"
|
||||
esac
|
||||
|
||||
year=`exec date +%Y`
|
||||
echo -n "Checking that copyright in documentation contains 2009-$year... "
|
||||
# Read the value of variable `copyright' defined in 'doc/conf.py'.
|
||||
# As __file__ is not defined when python command is given from command line,
|
||||
# it is defined before contents of 'doc/conf.py' (which dereferences __file__)
|
||||
# is executed.
|
||||
copyrightline=`exec python -c "with open('doc/conf.py') as cf: __file__ = ''; exec(cf.read()); print(copyright)"`
|
||||
case $copyrightline in
|
||||
*2009-$year*)
|
||||
echo Yes. ;;
|
||||
*)
|
||||
echo No.
|
||||
append_emsg "The copyright in doc/conf.py line '$copyrightline' does not contain '2009-$year'"
|
||||
esac
|
||||
|
||||
if [ -n "$emsgs" ]
|
||||
then
|
||||
echo
|
||||
|
|
Loading…
Reference in a new issue