summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
authorKeith Maxwell <keith.maxwell@gmail.com>2019-05-12 18:16:48 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2019-07-17 12:06:32 +0000
commite476188c6f415ad3b4aa3a444709784fbba1ebb1 (patch)
tree874781c9a28e22286106a307ff1d057d3004146b /abuild.in
parentc9d6159637a75eec19edf571c1e10c3510f4dd94 (diff)
downloadabuild-e476188c6f415ad3b4aa3a444709784fbba1ebb1.tar.bz2
abuild-e476188c6f415ad3b4aa3a444709784fbba1ebb1.tar.xz
Better use license.lst in abuild sanitycheck
Before this change an invalid licence= in an APKBUILD will pass `abuild sanitycheck`. '/usr/share/spdx/license.lst' contains one licence per line. `grep -x` will match partial lines whereas `grep -w` will only match whole lines. An simple demonstration is with 'GPL-3.0' which is not a valid SPDX licence identifier. 'GPL-3.0-only' and 'GPL-3.0-or-later' are valid licences. ``` $ grep --help BusyBox v1.30.1 (2019-04-26 06:26:16 UTC) multi-call binary. Usage: grep [-HhnlLoqvsriwFE] [-m N] [-A/B/C N] PATTERN/-e PATTERN.../-f FILE [FILE]... Search for PATTERN in FILEs (or stdin) ✂ -w Match whole words only -x Match whole lines only ✂ $ grep -w -F GPL-3.0 /usr/share/spdx/license.lst GPL-3.0-only GPL-3.0-or-later $ grep -x -F GPL-3.0 /usr/share/spdx/license.lst $ ```
Diffstat (limited to 'abuild.in')
-rw-r--r--abuild.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index 1b51e13..42ca236 100644
--- a/abuild.in
+++ b/abuild.in
@@ -873,7 +873,7 @@ check_license() {
fi
local i; for i in $license; do
list_has "$i" $exclude && continue
- if ! grep -q -w -F "$i" "$license_list"; then
+ if ! grep -q -x -F "$i" "$license_list"; then
ret=1
warning "\"$i\" is not a known license"
fi