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
|
#!/bin/sh
# Copyright (C) 2013 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# 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/>.
#
# Authored by: Michi Henning <michi.henning@canonical.com>
#
# Check that we have acceptable license information in our source files.
#
usage()
{
echo "usage: check_copyright dir [ignore_dir]" >&2
exit 2
}
[ $# -lt 1 ] && usage
[ $# -gt 2 ] && usage
# TODO: Temporary hack to work around broken licensecheck on xenial. Remove this once that is fixed.
distro=$(lsb_release -c -s)
[ "$distro" = "xenial" ] && {
exit 0
}
ignore_pat="\\.gitignore|\\.git/.*|\\.pc/.*|\\.sci$|debian|AUTHOR|HACKING|README|\\.txt$|\\.in$|\\.pm$"
#
# We don't use the -i option of licensecheck to add ignore_dir to the pattern because Jenkins creates directories
# with names that contain regex meta-characters, such as "." and "+". Instead, if ingnore_dir is set, we post-filter
# the output with grep -F, so we don't get false positives from licensecheck.
#
[ $# -eq 2 ] && ignore_dir="$2"
if [ -n "$ignore_dir" ]
then
licensecheck -i "$ignore_pat" -r "$1" | grep -F "$ignore_dir" -v | grep 'No copyright'
else
licensecheck -i "$ignore_pat" -r "$1" | grep 'No copyright'
fi
[ $? -eq 0 ] && exit 1
exit 0
|