From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH 3/7] gnu: Add libev Date: Sun, 16 Aug 2015 18:34:24 -0500 Message-ID: <20150816183424.451b7f96@openmailbox.org> References: <1439777162-7769-1-git-send-email-eric@dvorsak.fr> <1439777162-7769-3-git-send-email-eric@dvorsak.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRC0g-0001JS-QV for guix-devel@gnu.org; Mon, 17 Aug 2015 00:26:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRC0d-0007Y9-FY for guix-devel@gnu.org; Mon, 17 Aug 2015 00:26:58 -0400 Received: from smtp21.openmailbox.org ([62.4.1.55]:40296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRC0d-0007Xn-9o for guix-devel@gnu.org; Mon, 17 Aug 2015 00:26:55 -0400 In-Reply-To: <1439777162-7769-3-git-send-email-eric@dvorsak.fr> 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: Eric Dvorsak Cc: guix-devel@gnu.org On Mon, 17 Aug 2015 04:05:58 +0200 Eric Dvorsak wrote: > * gnu/packages/libevent.scm (libev): New variable. > --- > gnu/packages/libevent.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) >=20 > diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm > index 88b13ec..efd8df0 100644 > --- a/gnu/packages/libevent.scm > +++ b/gnu/packages/libevent.scm > @@ -1,6 +1,7 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright =C2=A9 2013, 2014, 2015 Ludovic Court=C3=A8s > ;;; Copyright =C2=A9 2015 Mark H Weaver > +;;; Copyright =C2=A9 2015 Eric Dvorsak > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -61,6 +62,31 @@ then add or remove events dynamically without > having to change the event loop.") > (license bsd-3))) > =20 > +(define-public libev > + (package > + (name "libev") [...] > + (license > + (non-copyleft > + "file://LICENSE" > + "See LICENSE in the distribution.")))) =46rom what I can tell looking at the license, this should be "(list bsd-2 gpl2+)" as it states: "If you do not delete the provisions above, a recipient may use your version of this file under either the BSD or the GPL." `~Eric