From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH 05/10] gnu: Add python2-futures. Date: Mon, 7 Dec 2015 21:27:15 +0200 Message-ID: <20151207212715.56c34040@debian-netbook> References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-6-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/vH04AQd=ZsIuyb.QUYe+rGO"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50657) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Uv-0007XO-18 for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a61Ut-0005Pl-TP for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:56 -0500 Received: from flashner.co.il ([178.62.234.194]:43081) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a61Ut-0005Pg-Gx for guix-devel@gnu.org; Mon, 07 Dec 2015 14:30:55 -0500 Received: from debian-netbook (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id DF1D5404D9 for ; Mon, 7 Dec 2015 19:30:54 +0000 (UTC) In-Reply-To: <1449153811-32039-6-git-send-email-efraim@flashner.co.il> 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 --Sig_/vH04AQd=ZsIuyb.QUYe+rGO Content-Type: multipart/mixed; boundary="MP_/k+DWgnCQM6H/4rbpzSiwJiP" --MP_/k+DWgnCQM6H/4rbpzSiwJiP Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thu, 3 Dec 2015 16:43:26 +0200 Efraim Flashner wrote: > * gnu/packages/python.scm (python2-futures): New variable. > --- > gnu/packages/python.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) >=20 > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 8084831..21aa8fa 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -6063,3 +6063,26 @@ automatically detect a wide range of file encoding= s.") > =20 > (define-public python2-chardet > (package-with-python2 python-chardet)) > + > +(define-public python2-futures > + (package > + (name "python2-futures") > + (version "3.0.3") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "futures" version)) > + (sha256 > + (base32 > + "1vcb34dqhzkhbq1957vdjszhhm5y3j9ba88dgwhqx2zynhmk9qig")))) > + (build-system python-build-system) > + (arguments > + `(#:python ,python-2)) > + (native-inputs > + `(("python2-setuptools" ,python2-setuptools))) > + (home-page "https://github.com/agronholm/pythonfutures") > + (synopsis > + "Backport of the concurrent.futures package from Python 3.2") > + (description > + "Backport of the concurrent.futures package from Python 3.2") > + (license bsd-3))) --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --MP_/k+DWgnCQM6H/4rbpzSiwJiP Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0005-gnu-Add-python2-futures.patch =46rom df0147499612f48681b3503270abafc3f5082781 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 24 Nov 2015 22:33:31 +0200 Subject: [PATCH 05/10] gnu: Add python2-futures. * gnu/packages/python.scm (python2-futures): New variable. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0f3e3e7..a6c665c 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6620,3 +6620,26 @@ of the SSL peer.") (arguments `(#:python ,python-2)) (propagated-inputs `(("python2-pyopenssl" ,python2-pyopenssl))))) + +(define-public python2-futures + (package + (name "python2-futures") + (version "3.0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "futures" version)) + (sha256 + (base32 + "1vcb34dqhzkhbq1957vdjszhhm5y3j9ba88dgwhqx2zynhmk9qig")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (native-inputs + `(("python2-setuptools" ,python2-setuptools))) + (home-page "https://github.com/agronholm/pythonfutures") + (synopsis + "Backport of the concurrent.futures package from Python 3.2") + (description + "Backport of the concurrent.futures package from Python 3.2") + (license bsd-3))) --=20 2.6.2 --MP_/k+DWgnCQM6H/4rbpzSiwJiP-- --Sig_/vH04AQd=ZsIuyb.QUYe+rGO Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJWZd2TAAoJEPTB05F+rO6T6+YP+gN0mtvy7tFon/N1adeYizdB FS4rGfgnNAhpJwkDAWGmHg+BeqT7I8hdZIYuxRxUkZO6Rz3hnU+n+K2vYrHRemqU tg0OPZUUGsByG+mVow4VmhatVe43pINNg4jPNmA9DzIMg+z54y/j6JOm3wDkYW8g Y5p4aNP6CE8IPwXezbBAtuqKhMTKcDwU13sYArHd43W0gmgCyOF1i0qF3/7YOWT9 XGJsoGYS97o5l27z9b2imDA7TK//KwknCbNx/inz48gto16dWBP8Z6GGXJzpYL8W ox/9WR9A/MwZ3TE8P2U879aMZvzeO0RLRkY7MczNS9f+xn8Uiguk2Nfaysji3ptS iK/Nv3AnnjHTWGcOKKLuLugP2+MD/rajZ4qvpzZ76s5F2FNAE52kNzpIBNkZ+Mzb wlnuXOhWSNxV9b0YE8Uxc3s0dAa3PxklzZZ8mx0aWYTRUwnejX8U+ckjL0ymRloZ BHEYoA6cLycZhQ5U6/TLfpsCAI6YMFyJPdxDP9FOEzUQWoLOzTc/o97pyqU+AELg NMMVLIOapp1rq34y4weJ3cgT1BHasVS0K4DaooylxJX1NQRyTF46qNhcqctJ5FID Ww/h4SwosrE3kzxyaONb63QILw9rHV7Pn1WSrSbzOoWKrcUFGp0fMls/vE7wcHty dd0LTgPf6jKQNqHvWyhZ =Mvm1 -----END PGP SIGNATURE----- --Sig_/vH04AQd=ZsIuyb.QUYe+rGO--