diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-12-15 22:35:02 +0100 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-12-15 22:35:02 +0100 |
commit | 0a236c7c70a5d3b9f921338fca8ea67196a05c12 (patch) | |
tree | 292b3a01f37f09f8e4022f7af1f079439e80ca46 /tools | |
parent | 8235fd0aef2945e0d638fba3493134588d085d5a (diff) | |
download | monitoring-plugins-0a236c7c70a5d3b9f921338fca8ea67196a05c12.tar.gz |
Add tools/update-thanks script
The tools/update-thanks script can be used to update the THANKS.in file.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update-thanks | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/tools/update-thanks b/tools/update-thanks new file mode 100755 index 00000000..27932f94 --- /dev/null +++ b/tools/update-thanks @@ -0,0 +1,56 @@ +#!/bin/sh + +# Copyright (c) 2014 Monitoring Plugins Development Team +# +# Originally written by Holger Weiss <holger@zedat.fu-berlin.de>. +# +# This file is free software; the Monitoring Plugins Development Team gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY, to the extent permitted by law; without even the implied +# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +set -e +set -u + +tempfile=$(mktemp '/tmp/.plugins.XXXXXX') +trap 'rm -f $tempfile' EXIT INT TERM + +if [ ! -e THANKS.in ] +then + echo >&2 'Please change into the "monitoring-plugins" repository.' + exit 2 +fi + +case $# in + 1) since=$1; git cat-file -e "$since";; + 0) since=$(git tag -l 'v*' | tail -n 1);; + *) echo >&2 "Usage: $0 [<since>]"; exit 2;; +esac + +git log --pretty='%an' "$since.." | sort -u | while read first last rest +do + if [ -n "$first" -a -n "$last" -a -z "$rest" ] + then + if ! grep -q "^$first $last$" AUTHORS THANKS.in + then + echo "$first $last" >> THANKS.in + fi + else + echo "$first $last $rest" | sed 's/ *$//' >> "$tempfile" + fi +done + +if ! git diff --quiet THANKS.in +then + echo 'Please check/commit the changes in the THANKS.in file.' +fi + +if [ -s "$tempfile" ] +then + echo 'The following authors were NOT added to the THANKS.in file:' + echo + cat "$tempfile" +fi |