From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer?=) Subject: Re: [PATCH] gnu: Add rtorrent and libtorrent. Date: Sat, 22 Nov 2014 22:40:43 +0100 Message-ID: <871touap7o.fsf@taylan.uni.cx> References: <87a93j9wty.fsf@taylan.uni.cx> <87fvdbb9xm.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> <8761e79sce.fsf@taylan.uni.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsIQC-0006rT-5R for guix-devel@gnu.org; Sat, 22 Nov 2014 16:40:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsIQA-0006O6-SY for guix-devel@gnu.org; Sat, 22 Nov 2014 16:40:48 -0500 Received: from mail-wg0-x22c.google.com ([2a00:1450:400c:c00::22c]:53968) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsIQA-0006O2-KP for guix-devel@gnu.org; Sat, 22 Nov 2014 16:40:46 -0500 Received: by mail-wg0-f44.google.com with SMTP id b13so9285487wgh.3 for ; Sat, 22 Nov 2014 13:40:46 -0800 (PST) In-Reply-To: <8761e79sce.fsf@taylan.uni.cx> ("Taylan Ulrich \=\?utf-8\?Q\?\=5C\=22Bay\=C4\=B1rl\=C4\=B1\=2FKammer\=5C\=22\=22's\?\= message of "Sat, 22 Nov 2014 16:18:25 +0100") 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: David Thompson Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain Please use this patch for the rTorrent one; gcrypt was a redundant dependency after all. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-Add-rTorrent.patch Content-Description: gnu: Add rTorrent. >From 0cf93793fcdf4f7c8250cc02899a0caf68636df3 Mon Sep 17 00:00:00 2001 From: Taylan Ulrich B Date: Sat, 22 Nov 2014 15:57:26 +0100 Subject: [PATCH 2/2] gnu: Add rTorrent. * gnu/packages/bittorrent.scm (rtorrent): New variable. --- gnu/packages/bittorrent.scm | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 022eb4e..067c2ac 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -31,7 +31,10 @@ #:select (zlib)) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) - #:use-module (gnu packages check)) + #:use-module (gnu packages check) + #:use-module (gnu packages ncurses) + #:use-module (gnu packages curl) + #:use-module (gnu packages cyrus-sasl)) (define-public transmission (package @@ -120,3 +123,32 @@ with the BitTorrent client rtorrent. It is written in C++ with emphasis on speed and efficiency.") (home-page "http://libtorrent.rakshasa.no/") (license l:gpl2))) + +(define-public rtorrent + (package + (name "rtorrent") + (version "0.9.4") + (source (origin + (method url-fetch) + (uri (string-append + "http://libtorrent.rakshasa.no/downloads/rtorrent-" + version ".tar.gz")) + (sha256 + (base32 + "113yrrac75vqi4g8r6bgs0ggjllj9bkg9shv08vqzdhkwqg2q2mw")))) + (build-system gnu-build-system) + (inputs `(("libtorrent" ,libtorrent) + ("ncurses" ,ncurses) + ("curl" ,curl) + ("cyrus-sasl" ,cyrus-sasl) + ("openssl" ,openssl) + ("zlib" ,zlib))) + (native-inputs `(("pkg-config" ,pkg-config) + ("cppunit" ,cppunit))) + (synopsis "BitTorrent client with ncurses interface") + (description + "rTorrent is a BitTorrent client with an ncurses interface. It supports +full encryption, DHT, PEX, and Magnet Links. It can also be controlled via +XML-RPC over SCGI.") + (home-page "http://libtorrent.rakshasa.no/") + (license l:gpl2))) -- 2.1.2 --=-=-=--