From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41153) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ei6ow-0007AW-VW for guix-patches@gnu.org; Sat, 03 Feb 2018 18:02:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ei6ot-000610-Sk for guix-patches@gnu.org; Sat, 03 Feb 2018 18:02:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:48187) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ei6ot-000609-OW for guix-patches@gnu.org; Sat, 03 Feb 2018 18:02:03 -0500 Subject: [bug#29359] [PATCH 14/31] gnu: Add java-jaxp. Resent-Message-ID: Date: Sun, 4 Feb 2018 00:01:43 +0100 From: =?UTF-8?Q?Bj=C3=B6rn_?= =?UTF-8?Q?H=C3=B6fling?= Message-ID: <20180204000143.398a6c50@alma-ubu> In-Reply-To: <20180203235203.77e8ba7e@alma-ubu> References: <20171119175805.902-1-julien@lepiller.eu> <20171119175805.902-14-julien@lepiller.eu> <20180203235203.77e8ba7e@alma-ubu> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" Cc: 29359@debbugs.gnu.org On Sat, 3 Feb 2018 23:52:03 +0100 Bj=C3=B6rn H=C3=B6fling wrote: > The license list is a bit longer. I have: >=20 > (license (list > license:asl2.0=20 > license:w3c ;; Files under org.w3c > license:public-domain)) ;; org.xml.sax >=20 > I will reply a patch for license:w3c. Here is a patch to insert the W3C license into Guix: =46rom ae186e29f338bdf5bb1a0c440768e31d4c1bab17 Mon Sep 17 00:00:00 2001 From: =3D?UTF-8?q?Bj=3DC3=3DB6rn=3D20H=3DC3=3DB6fling?=3D Date: Thu, 1 Feb 2018 16:09:03 +0100 Subject: [PATCH 1/3] licenses: Add W3C license. * gnu/license.scm (w3c): New variable. --- guix/licenses.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 269d97c..700fa7f 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -87,6 +87,7 @@ tcl/tk unlicense vim + w3c x11 x11-style zpl2.1 zlib @@ -578,6 +579,11 @@ at URI, which may be a file:// URI pointing the package's tree." "https://unlicense.org/" "https://www.gnu.org/licenses/license-list.html#Unlicense")) =20 +(define w3c + (license "W3C Software Notice and License" + "https://directory.fsf.org/wiki/License:W3C_31Dec2002" + "https://www.gnu.org/licenses/license-list.en.html#W3C")) + (define wtfpl2 (license "WTFPL 2" "http://www.wtfpl.net" --=20 2.7.4