Port commit-message checking to FreeBSD 9.
[emacs.git] / build-aux / git-hooks / commit-msg
blobf407881b0db0b5536581b71aa7c30b86c7d51fff
1 #!/bin/sh
2 # Check the format of GNU Emacs change log entries.
4 # Copyright 2014 Free Software Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21 # Written by Paul Eggert.
23 # Prefer gawk if available, as it handles NUL bytes properly.
24 if type gawk >/dev/null 2>&1; then
25 awk=gawk
26 else
27 awk=awk
30 # Use a UTF-8 locale if available, so that the UTF-8 check works.
31 # Use U+00A2 CENT SIGN to test whether the locale works.
32 cent_sign_utf8_octal='\302\242'
33 at_sign=`
34 printf "${cent_sign_utf8_octal}@" |
35 $awk '{print substr($0, 2)}' 2>/dev/null
37 if test "$at_sign" != @; then
38 at_sign=`
39 printf "${cent_sign_utf8_octal}@" |
40 LC_ALL=en_US.UTF-8 $awk '{print substr($0, 2)}' 2>/dev/null
42 if test "$at_sign" = @; then
43 LC_ALL=en_US.UTF-8; export LC_ALL
47 # Check the log entry.
48 exec $awk '
49 /^#/ { next }
51 !/^.*$/ {
52 print "Invalid character (not UTF-8)"
53 status = 1
56 nlines == 0 && !/[^[:space:]]/ { next }
58 { nlines++ }
60 nlines == 1 && /^[[:space:]]/ {
61 print "White space at start of first line"
62 status = 1
65 nlines == 2 && /[^[:space:]]/ {
66 print "Nonempty second line"
67 status = 1
70 /[^[:print:]]/ {
71 print "Unprintable character; please use spaces instead of tabs"
72 status = 1
75 72 < length && /[[:space:]]/ {
76 print "Line longer than 72 characters"
77 status = 1
80 140 < length {
81 print "Word longer than 140 characters"
82 status = 1
85 /^Signed-off-by: / {
86 print "'\''Signed-off-by:'\'' present"
87 status = 1
90 END {
91 if (nlines == 0) {
92 print "Empty change log entry"
93 status = 1
95 exit status
97 ' <"$1"