From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecDGP-0002as-62 for guix-patches@gnu.org; Thu, 18 Jan 2018 11:42:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecDGM-0006Gn-2x for guix-patches@gnu.org; Thu, 18 Jan 2018 11:42:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:53929) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecDGL-0006G7-Vd for guix-patches@gnu.org; Thu, 18 Jan 2018 11:42:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ecDGL-0001Zx-KO for guix-patches@gnu.org; Thu, 18 Jan 2018 11:42:01 -0500 Subject: [bug#30159] [PATCH 2/2] gnu: Add python2-libtorrent. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecBja-0004RE-OZ for guix-patches@gnu.org; Thu, 18 Jan 2018 10:04:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecBjY-0002se-7y for guix-patches@gnu.org; Thu, 18 Jan 2018 10:04:06 -0500 Received: from mail-pf0-x22f.google.com ([2607:f8b0:400e:c00::22f]:45997) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecBjY-0002s0-2A for guix-patches@gnu.org; Thu, 18 Jan 2018 10:04:04 -0500 Received: by mail-pf0-x22f.google.com with SMTP id a88so13281450pfe.12 for ; Thu, 18 Jan 2018 07:04:03 -0800 (PST) From: mike rosset Date: Thu, 18 Jan 2018 07:03:51 -0800 Message-Id: <20180118150351.1671-2-mike.rosset@gmail.com> In-Reply-To: <20180118150351.1671-1-mike.rosset@gmail.com> References: <20180118150351.1671-1-mike.rosset@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30159@debbugs.gnu.org Cc: mike.rosset@gmail.com * gnu/packages/bittorrent.scm (python2-libtorrent): New variable. --- gnu/packages/bittorrent.scm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 17c72a635..5ce1d1361 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -409,6 +409,13 @@ focusing on efficiency and scalability. It runs on embedded devices as well as desktops.") (license l:bsd-2))) +(define-public python2-libtorrent + (package + (inherit libtorrent-rasterbar) + (name "python2-libtorrent") + (build-system python-build-system) + (arguments `(#:python ,python-2)) + (synopsis "python bindings for libtorrent"))) (define-public deluge (package -- 2.15.1