From a72904ee23d0dcaece1402bfc19988b53e3a13da Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 7 Oct 2019 12:02:57 +0200 Subject: [PATCH] lint: allow Beerware and XSkat licenses These licenses were already in our repo. The are not FSF- or OSI-approved, but they are included in Debian. So for now at least, we should maintain them in our list until we have a clearer picture of how we should make the list of licenses we support. * fdroidserver!682 * https://github.com/spdx/license-list-XML/issues/876 * Beerware in Debian: https://metadata.ftp-master.debian.org/changelogs//main/libm/libmd/libmd_1.0.1-3_copyright * XSkat in Debian: https://metadata.ftp-master.debian.org/changelogs//main/x/xskat/xskat_4.0-7_copyright --- fdroidserver/lint.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 1dfc00fa..276bf555 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -657,6 +657,7 @@ APPROVED_LICENSES = [ 'Artistic-1.0-Perl', 'Artistic-1.0-cl8', 'Artistic-2.0', + 'Beerware', 'BSD-2-Clause', 'BSD-2-Clause-FreeBSD', 'BSD-2-Clause-Patent', @@ -788,6 +789,7 @@ APPROVED_LICENSES = [ 'X11', 'XFree86-1.1', 'Xnet', + 'XSkat', 'YPL-1.1', 'ZPL-2.0', 'ZPL-2.1',