From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dvorsak Subject: [PATCH 3/7] gnu: Add libev Date: Mon, 17 Aug 2015 05:05:33 +0200 Message-ID: <1439780737-14209-3-git-send-email-eric@dvorsak.fr> References: <1439780737-14209-1-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]:53021) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRAkK-00066j-83 for guix-devel@gnu.org; Sun, 16 Aug 2015 23:06:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRAkH-0001x8-2c for guix-devel@gnu.org; Sun, 16 Aug 2015 23:06:00 -0400 Received: from 1.mo1.mail-out.ovh.net ([178.32.127.22]:46573) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRAkG-0001wn-SM for guix-devel@gnu.org; Sun, 16 Aug 2015 23:05:57 -0400 Received: from mail434.ha.ovh.net (gw6.ovh.net [213.251.189.206]) by mo1.mail-out.ovh.net (Postfix) with SMTP id 67DACFFAEA9 for ; Mon, 17 Aug 2015 05:05:56 +0200 (CEST) In-Reply-To: <1439780737-14209-1-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: guix-devel@gnu.org * gnu/packages/libevent.scm (libev): New variable. --- gnu/packages/libevent.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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 t= o change the event loop.") (license bsd-3))) =20 +(define-public libev + (package + (name "libev") + (version "4.20") + (source (origin + (method url-fetch) + (uri (string-append "http://dist.schmorp.de/libev/libev-" + version + ".tar.gz")) + (sha256 + (base32 + "17j47pbkr65a18mfvy2861p5k7w4pxmdgiw723ryfqd9gx636w7q"))= )) + (build-system gnu-build-system) + (home-page "http://software.schmorp.de/pkg/libev.html") + (synopsis "An event loop that is loosely modelled after libevent") + (description "A full-featured and high-performance event loop that +is loosely modelled after libevent, but without its limitations and +bugs. It is used in GNU Virtual Private Ethernet, rxvt-unicode, +auditd, the Deliantra MORPG Server and Client, and many other +programs.") + (license + (non-copyleft + "file://LICENSE" + "See LICENSE in the distribution.")))) + (define-public libuv (package (name "libuv") --=20 2.4.3