From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH 3/3] gnu: rtorrent: Update to 0.9.6. Date: Sat, 03 Oct 2015 22:50:32 +0300 Message-ID: <87io6nafzr.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZiSpC-0000E8-No for guix-devel@gnu.org; Sat, 03 Oct 2015 15:50:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZiSpB-0007Eg-Ng for guix-devel@gnu.org; Sat, 03 Oct 2015 15:50:30 -0400 Received: from mail-la0-x236.google.com ([2a00:1450:4010:c03::236]:33318) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZiSpB-0007Ar-GW for guix-devel@gnu.org; Sat, 03 Oct 2015 15:50:29 -0400 Received: by lafb9 with SMTP id b9so19343829laf.0 for ; Sat, 03 Oct 2015 12:50:28 -0700 (PDT) Received: from leviafan ([217.107.192.146]) by smtp.gmail.com with ESMTPSA id rv2sm2630681lbb.30.2015.10.03.12.50.27 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 03 Oct 2015 12:50:28 -0700 (PDT) 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 --=-=-= Content-Type: text/plain This one should work (I tried this version of rtorrent with the libtorrent built without tests). --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0003-gnu-rtorrent-Update-to-0.9.6.patch >From 5865f01649e401fd135ff55fe9964aa81f64f5f9 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sat, 3 Oct 2015 22:23:40 +0300 Subject: [PATCH 3/3] gnu: rtorrent: Update to 0.9.6. * gnu/packages/bittorrent.scm (rtorrent): Update to 0.9.6. [source]: Use new URL. --- gnu/packages/bittorrent.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index fb40915..2410647 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -124,15 +124,15 @@ speed and efficiency.") (define-public rtorrent (package (name "rtorrent") - (version "0.9.4") + (version "0.9.6") (source (origin (method url-fetch) (uri (string-append - "http://libtorrent.rakshasa.no/downloads/rtorrent-" + "http://rtorrent.net/downloads/rtorrent-" version ".tar.gz")) (sha256 (base32 - "113yrrac75vqi4g8r6bgs0ggjllj9bkg9shv08vqzdhkwqg2q2mw")))) + "03jvzw9pi2mhcm913h8qg0qw9gwjqc6lhwynb1yz1y163x7w4s8y")))) (build-system gnu-build-system) (inputs `(("libtorrent" ,libtorrent) ("ncurses" ,ncurses) -- 2.5.0 --=-=-=--