* [PATCH 15/18] gnu: Add python-billiard.
@ 2016-02-15 23:32 Christopher Allan Webber
2016-02-16 2:05 ` Leo Famulari
0 siblings, 1 reply; 3+ messages in thread
From: Christopher Allan Webber @ 2016-02-15 23:32 UTC (permalink / raw)
To: guix-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0015-gnu-Add-python-billiard.patch --]
[-- Type: text/x-patch, Size: 2205 bytes --]
From 510854b320de72804575b18c77d1b30670408e6e Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Sun, 14 Feb 2016 15:49:47 -0800
Subject: [PATCH 15/18] gnu: Add python-billiard.
* gnu/packages/python.scm (python-billiard, python2-billiard):
New variables.
---
gnu/packages/python.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2bc45ae..ad1698b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7971,3 +7971,38 @@ RabbitMQ messaging server is the most popular implementation.")
(inputs `(("python2-setuptools" ,python2-setuptools)
("python2-unittest2" ,python2-unittest2)
,@(package-inputs kombu))))))
+
+(define-public python-billiard
+ (package
+ (name "python-billiard")
+ (version "3.3.0.22")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "billiard" version))
+ (sha256
+ (base32
+ "0zp7h6a58alrb3mwdw61jds07395j4j0mj6iqsb8czrihw9ih5nj"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-nose" ,python-nose)))
+ (home-page "http://github.com/celery/billiard")
+ (synopsis
+ "Python multiprocessing fork with improvements and bugfixes")
+ (description
+ "billiard is a fork of the Python 2.7 multiprocessing package. The
+multiprocessing package itself is a renamed and updated version of R Oudkerk's
+pyprocessing package. This standalone variant is intended to be compatible with
+Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
+ (license bsd-3)
+ (properties `((python2-variant . ,(delay python2-billiard))))))
+
+(define-public python2-billiard
+ (let ((billiard (package-with-python2
+ (strip-python2-variant python-billiard))))
+ (package
+ (inherit billiard)
+ (native-inputs `(("python2-setuptools" ,python2-setuptools)
+ ("python2-unittest2" ,python2-unittest2)
+ ("python2-mock" ,python2-mock)
+ ,@(package-native-inputs billiard))))))
--
2.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 15/18] gnu: Add python-billiard.
2016-02-15 23:32 [PATCH 15/18] gnu: Add python-billiard Christopher Allan Webber
@ 2016-02-16 2:05 ` Leo Famulari
2016-02-20 2:36 ` Christopher Allan Webber
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2016-02-16 2:05 UTC (permalink / raw)
To: Christopher Allan Webber; +Cc: guix-devel
On Mon, Feb 15, 2016 at 03:32:49PM -0800, Christopher Allan Webber wrote:
> From 510854b320de72804575b18c77d1b30670408e6e Mon Sep 17 00:00:00 2001
> From: Christopher Allan Webber <cwebber@dustycloud.org>
> Date: Sun, 14 Feb 2016 15:49:47 -0800
> Subject: [PATCH 15/18] gnu: Add python-billiard.
>
> * gnu/packages/python.scm (python-billiard, python2-billiard):
> New variables.
> ---
> gnu/packages/python.scm | 35 +++++++++++++++++++++++++++++++++++
> 1 file changed, 35 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index 2bc45ae..ad1698b 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -7971,3 +7971,38 @@ RabbitMQ messaging server is the most popular implementation.")
> (inputs `(("python2-setuptools" ,python2-setuptools)
> ("python2-unittest2" ,python2-unittest2)
> ,@(package-inputs kombu))))))
> +
> +(define-public python-billiard
> + (package
> + (name "python-billiard")
> + (version "3.3.0.22")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (pypi-uri "billiard" version))
> + (sha256
> + (base32
> + "0zp7h6a58alrb3mwdw61jds07395j4j0mj6iqsb8czrihw9ih5nj"))))
> + (build-system python-build-system)
> + (native-inputs
> + `(("python-nose" ,python-nose)))
> + (home-page "http://github.com/celery/billiard")
> + (synopsis
> + "Python multiprocessing fork with improvements and bugfixes")
> + (description
> + "billiard is a fork of the Python 2.7 multiprocessing package. The
Please capitalize billiard at the beginning of the sentence.
> +multiprocessing package itself is a renamed and updated version of R Oudkerk's
> +pyprocessing package. This standalone variant is intended to be compatible with
> +Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
> + (license bsd-3)
> + (properties `((python2-variant . ,(delay python2-billiard))))))
> +
> +(define-public python2-billiard
> + (let ((billiard (package-with-python2
> + (strip-python2-variant python-billiard))))
> + (package
> + (inherit billiard)
> + (native-inputs `(("python2-setuptools" ,python2-setuptools)
> + ("python2-unittest2" ,python2-unittest2)
> + ("python2-mock" ,python2-mock)
> + ,@(package-native-inputs billiard))))))
> --
> 2.6.3
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 15/18] gnu: Add python-billiard.
2016-02-16 2:05 ` Leo Famulari
@ 2016-02-20 2:36 ` Christopher Allan Webber
0 siblings, 0 replies; 3+ messages in thread
From: Christopher Allan Webber @ 2016-02-20 2:36 UTC (permalink / raw)
To: Leo Famulari; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 10 bytes --]
Updated.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0014-gnu-Add-python-billiard.patch --]
[-- Type: text/x-diff, Size: 2206 bytes --]
From d22a591ecb7e9cc45198a606bfb1cffda20d6a53 Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Sun, 14 Feb 2016 15:49:47 -0800
Subject: [PATCH 14/18] gnu: Add python-billiard.
* gnu/packages/python.scm (python-billiard, python2-billiard):
New variables.
---
gnu/packages/python.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4bd167f..87575f5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7972,3 +7972,38 @@ RabbitMQ messaging server is the most popular implementation.")
(inputs `(("python2-setuptools" ,python2-setuptools)
("python2-unittest2" ,python2-unittest2)
,@(package-inputs kombu))))))
+
+(define-public python-billiard
+ (package
+ (name "python-billiard")
+ (version "3.3.0.22")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "billiard" version))
+ (sha256
+ (base32
+ "0zp7h6a58alrb3mwdw61jds07395j4j0mj6iqsb8czrihw9ih5nj"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-nose" ,python-nose)))
+ (home-page "http://github.com/celery/billiard")
+ (synopsis
+ "Python multiprocessing fork with improvements and bugfixes")
+ (description
+ "Billiard is a fork of the Python 2.7 multiprocessing package. The
+multiprocessing package itself is a renamed and updated version of R Oudkerk's
+pyprocessing package. This standalone variant is intended to be compatible with
+Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
+ (license bsd-3)
+ (properties `((python2-variant . ,(delay python2-billiard))))))
+
+(define-public python2-billiard
+ (let ((billiard (package-with-python2
+ (strip-python2-variant python-billiard))))
+ (package
+ (inherit billiard)
+ (native-inputs `(("python2-setuptools" ,python2-setuptools)
+ ("python2-unittest2" ,python2-unittest2)
+ ("python2-mock" ,python2-mock)
+ ,@(package-native-inputs billiard))))))
--
2.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-20 2:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-15 23:32 [PATCH 15/18] gnu: Add python-billiard Christopher Allan Webber
2016-02-16 2:05 ` Leo Famulari
2016-02-20 2:36 ` Christopher Allan Webber
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.