From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: Imlib2 license Date: Sun, 26 Oct 2014 16:09:25 +0300 Message-ID: <87tx2r3rlm.fsf@gmail.com> References: <87vbnaatdx.fsf@gmail.com> <87bnozre14.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiNZe-0007Ot-4A for guix-devel@gnu.org; Sun, 26 Oct 2014 09:09:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XiNZZ-00039Z-33 for guix-devel@gnu.org; Sun, 26 Oct 2014 09:09:34 -0400 In-Reply-To: <87bnozre14.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sun, 26 Oct 2014 00:16:23 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ludovic Court=C3=A8s (2014-10-26 01:16 +0300) wrote: > Alex Kost skribis: > >> I've noticed that there is =E2=80=9Cimlib2=E2=80=9D license: >> >> - http://www.gnu.org/licenses/license-list.html#imlib >> - http://directory.fsf.org/wiki/License:Imlib2 >> >> Is it worth to add it to (guix licenses) module and to use it for >> =E2=80=9Cimlib2=E2=80=9D package? > > Yes, sure. OK for the attached patch? --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-licenses-Add-imlib2.patch >From b7564a7f68fe2d2d74d0d1bc768eb19dbab09a36 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sun, 26 Oct 2014 15:27:56 +0300 Subject: [PATCH] licenses: Add 'imlib2'. * guix/licenses.scm (imlib2): New variable. * gnu/packages/image.scm (imlib2): Use it. --- gnu/packages/image.scm | 4 +--- guix/licenses.scm | 6 ++++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index e4f831e..2515a0c 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -313,9 +313,7 @@ without sacrificing speed. This is a complete rewrite over the Imlib 1.x series. The architecture is more modular, simple, and flexible.") - ;; This license adds several sentences to the original X11 license. - (license (license:x11-style "file://COPYING" - "See 'COPYING' in the distribution.")))) + (license license:imlib2))) (define-public giblib (package diff --git a/guix/licenses.scm b/guix/licenses.scm index 65ef06c..8b7ea53 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -37,6 +37,7 @@ isc ijg ibmpl1.0 + imlib2 lgpl2.0 lgpl2.0+ lgpl2.1 lgpl2.1+ lgpl3 lgpl3+ mpl2.0 openldap2.8 openssl @@ -195,6 +196,11 @@ which may be a file:// URI pointing the package's tree." "http://directory.fsf.org/wiki/License:IBMPLv1.0" "https://www.gnu.org/licenses/license-list#IBMPL")) +(define imlib2 + (license "Imlib2" + "http://directory.fsf.org/wiki/License:Imlib2" + "https://www.gnu.org/licenses/license-list#imlib")) + (define lgpl2.0 (license "LGPL 2.0" "https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html" -- 2.1.2 --=-=-=--