summaryrefslogtreecommitdiff
path: root/v4l/scripts/hghead.pl
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2008-06-27 11:19:39 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-06-27 11:19:39 -0300
commitb171b4bf6091c1b3482b7ac3c14e1672f10c6950 (patch)
treed7df9c7c8848d163d89e0dbd670e431e08fd1bdb /v4l/scripts/hghead.pl
parent605f1e11883603ebdff5393dba81e084dbd41f12 (diff)
downloadmediapointer-dvb-s2-b171b4bf6091c1b3482b7ac3c14e1672f10c6950.tar.gz
mediapointer-dvb-s2-b171b4bf6091c1b3482b7ac3c14e1672f10c6950.tar.bz2
Improves commit message scripts
From: Mauro Carvalho Chehab <mchehab@infradead.org> This patch improves message description sanity rules: - mailimport now prefers to edit using editdiff. This helps to fix trivial CodingStyle errors at receive patches; - hghead.pl will now remove blank whitespaces if no body exists; - "make commit" will now run hghead.pl. This will do some sanity checks at commit messages: *) Will warrant that "from:" metatag exists, avoiding to have patches without proper authorship id at someone's else tree; *) Will order the tags at the expected way (subject, from, body, signatures); *) Will warrant that one and just one blank line exists between each of the four parts of the commit message. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts/hghead.pl')
-rwxr-xr-xv4l/scripts/hghead.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/v4l/scripts/hghead.pl b/v4l/scripts/hghead.pl
index 7eacd7019..02295bcef 100755
--- a/v4l/scripts/hghead.pl
+++ b/v4l/scripts/hghead.pl
@@ -188,6 +188,9 @@ $from=~s/[\n\s]+$//;
$subject=~s/^[\n\s]+//;
$subject=~s/[\n\s]+$//;
+$body=~s/^[\n\s]+//;
+$body=~s/[\n\s]+$//;
+
$body="$body\n\n$signed";
$body=~s/^[\n\s]+//;