guix_mirror_bot pushed a commit to branch master
in repository guix.

commit db8a2c192653bb6626888b28b67db2c9929ede37
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Oct 16 16:13:44 2025 +0200

    gnu: rtorrent: Update to 0.16.1.
    
    * gnu/packages/bittorrent.scm (rtorrent): Update to 0.16.1.
    [native-inputs]: Add autoconf, automake, and libtool.
    
    Change-Id: Ide9681d533d54c4c6e4843d6972cd5fae956d3d5
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/bittorrent.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 7141ac8d52..9f260067fd 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -248,15 +248,16 @@ speed and efficiency.")
 (define-public rtorrent
   (package
     (name "rtorrent")
-    (version "0.9.8")
+    (version "0.16.1")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "http://rtorrent.net/downloads/rtorrent-";
-                    version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/rakshasa/rtorrent/";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1bs2fnf4q7mlhkhzp3i1v052v9xn8qa7g845pk9ia8hlpw207pwy"))))
+                "0azpqclksczh1j7kpkwqh68xp3p9rayf9dym1c2iif56fm960mgh"))))
     (build-system gnu-build-system)
     (inputs (list libtorrent
                   ncurses
@@ -264,7 +265,7 @@ speed and efficiency.")
                   cyrus-sasl
                   openssl
                   zlib))
-    (native-inputs (list pkg-config cppunit))
+    (native-inputs (list autoconf automake cppunit libtool pkg-config))
     (synopsis "BitTorrent client with ncurses interface")
     (description
      "rTorrent is a BitTorrent client with an ncurses interface.  It supports

Reply via email to