1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
#!/bin/sh
#
# Copyright
#
# Copyright (C) 2009-2010 Jari Aalto <jari.aalto@cante.net>
#
# License
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
PRIMARY_AUTHOR="Kolivas" # A regexp
TMP=${TEMPDIR:-/tmp}/${LOGNAME:-${USER:-foo}}.tmp
REGEXP='copyright|@|license|author|\(C\).*[0-9]{4}' $file
Help ()
{
echo "
SYNOPSIS
PRIMARY_AUTHOR="name" sh debian/license.sh [<root dir to start>]
DESCRIPTION
Examine project CODE files for Copyright and License from current
directory not written by regexp: \$PRIMARY_AUTHOR"
exit 0
}
Find ()
{
dir=${1:-.}
shift
# Exclude files
find \
-L \
$dir \
-mount \
-type d \
'(' \
-name ".bzr" \
-o -name ".arch" \
-o -name ".git" \
-o -name ".hg" \
-o -name ".darcs" \
-o -name ".svn" \
-o -name ".mtn" \
-o -name "CVS" \
-o -name "RCS" \
-o -name "SCCS" \
-o -name "_MTN" \
-o -name ".inst" \
-o -name ".sinst" \
-o -name ".build" \
-o -name ".quilt" \
-o -name ".pc" \
-o -name "debian" \
')' \
-prune \
-a ! -name ".arch" \
-a ! -name ".bzr" \
-a ! -name ".git" \
-a ! -name ".hg" \
-a ! -name ".darcs" \
-a ! -name ".svn" \
-a ! -name ".mtn" \
-a ! -name "CVS" \
-a ! -name "RCS" \
-a ! -name "SCCS" \
-a ! -name "_MTN" \
-a ! -name "*.tmp" \
-a ! -name "*[#]*" \
-a ! -name "*~" \
-a ! -name "*.orig" \
-a ! -name "*.rej" \
-a ! -name "*.bak" \
-a ! -name ".inst" \
-a ! -name ".sinst" \
-a ! -name ".build" \
-a ! -name ".quilt" \
-a ! -name ".pc" \
-a ! -name "debian" \
-o \
"$@"
}
Files ()
{
LC_ALL=C Find ${1:-.} \
-name "*.cc" \
-o -name "*.cpp" \
-o -name "*.cxx" \
-o -name "*.pl" \
-o -name "*.py" \
-o -name "*.[cC]" \
-o -name "*.h" \
-o -name "*.hh" \
-o -name "*.hxx" \
-o -name "*README*"
}
AtExit ()
{
rm -f $TMP*
}
Main ()
{
case "$*" in
-h | --help ) Help ;;
esac
files=$TMP.files-all
Files > $files
aFiles=$TMP.files-author
grep -Ei "$PRIMARY_AUTHOR" --files-with-matches $(cat $files) > $aFiles
for file in $(cat $files)
do
if ! grep --with-filename -Ei "$REGEXP" $file; then
echo "$file: #WARN: NO INFORMATION (check manually)"
fi
done
echo "---------------- files not by $PRIMARY_AUTHOR"
grep --with-filename -Ei "$REGEXP" $files $(cat $files | grep -vFf $aFiles)
}
trap 'AtExit' 0 1 2 3 9 15
Main "$@"
# End of file
|