[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/19: gnu: Add perl-anyevent.
From: |
Marius Bakke |
Subject: |
18/19: gnu: Add perl-anyevent. |
Date: |
Thu, 2 Mar 2017 12:39:54 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 0a030a9c678620a4061b8cc402670153de21a954
Author: Marius Bakke <address@hidden>
Date: Fri Dec 9 17:26:00 2016 +0100
gnu: Add perl-anyevent.
* gnu/packages/libevent.scm (perl-anyevent): New variable.
---
gnu/packages/libevent.scm | 41 ++++++++++++++++++++++++++++++++++++++---
1 file changed, 38 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm
index 8aca5da..dd5f7c4 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -27,11 +27,12 @@
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system perl)
- #:use-module (gnu packages base)
- #:use-module (gnu packages python)
#:use-module (gnu packages autotools)
+ #:use-module (gnu packages base)
#:use-module (gnu packages perl)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages tls))
(define-public libevent
(package
@@ -152,6 +153,40 @@ resolution, asynchronous file system operations, and
threading primitives.")
;; details.
(license x11)))
+(define-public perl-anyevent
+ (package
+ (name "perl-anyevent")
+ (version "7.13")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
+ "AnyEvent-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1b84ilkbrfbzqapv25x8z6gva92skbrf2srybdabb1wnxx6ky454"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-canary-stability" ,perl-canary-stability)))
+ (propagated-inputs
+ `(("perl-async-interrupt" ,perl-async-interrupt)
+ ("perl-ev" ,perl-ev)
+ ("perl-guard" ,perl-guard)
+ ("perl-json" ,perl-json)
+ ("perl-json-xs" ,perl-json-xs)
+ ("perl-net-ssleay" ,perl-net-ssleay)
+ ("perl-task-weaken" ,perl-task-weaken)))
+ (home-page "http://search.cpan.org/dist/AnyEvent")
+ (synopsis
+ "API for I/O, timer, signal, child process and completion events")
+ (description
+ "This module allows using a variety of events without forcing module
+authors to pick a specific event loop, and without noticable overhead.
+Currently supported event loops are EV, Event, Glib/Gtk2, Tk, Qt,
address@hidden::Lib}, Irssi, @code{IO::Async} and POE (and thus also WxWidgets
+and Prima). It also comes with a very fast Pure Perl event loop that does
+not rely on XS.")
+ (license (package-license perl))))
+
(define-public perl-ev
(package
(name "perl-ev")
- branch master updated (479c427 -> 3e7cb70), Marius Bakke, 2017/03/02
- 03/19: gnu: Add perl-canary-stability., Marius Bakke, 2017/03/02
- 01/19: gnu: leveldb: Update to 1.20., Marius Bakke, 2017/03/02
- 05/19: gnu: Add perl-devel-checkcompiler., Marius Bakke, 2017/03/02
- 04/19: gnu: Add perl-ev., Marius Bakke, 2017/03/02
- 07/19: gnu: Add perl-module-build-xsutil., Marius Bakke, 2017/03/02
- 02/19: gnu: Add perl-async-interrupt., Marius Bakke, 2017/03/02
- 06/19: gnu: Add perl-cwd-guard., Marius Bakke, 2017/03/02
- 08/19: gnu: Add perl-mouse., Marius Bakke, 2017/03/02
- 14/19: gnu: Add perl-xs-object-magic., Marius Bakke, 2017/03/02
- 18/19: gnu: Add perl-anyevent.,
Marius Bakke <=
- 09/19: gnu: Add perl-xml-tokeparser., Marius Bakke, 2017/03/02
- 10/19: gnu: Add perl-xml-descent., Marius Bakke, 2017/03/02
- 15/19: gnu: Add perl-any-moose., Marius Bakke, 2017/03/02
- 16/19: gnu: Add perl-mousex-nativetraits., Marius Bakke, 2017/03/02
- 19/19: gnu: Add perl-anyevent-i3., Marius Bakke, 2017/03/02
- 17/19: gnu: Add perl-x11-xcb., Marius Bakke, 2017/03/02
- 11/19: gnu: Add perl-test-number-delta., Marius Bakke, 2017/03/02
- 12/19: gnu: Add perl-extutils-depends., Marius Bakke, 2017/03/02
- 13/19: gnu: Add perl-extutils-pkgconfig., Marius Bakke, 2017/03/02