guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: tremc: Fix compatibility with Transmission 4


From: guix-commits
Subject: branch master updated: gnu: tremc: Fix compatibility with Transmission 4.0.
Date: Mon, 22 May 2023 15:42:05 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e5f034d83b gnu: tremc: Fix compatibility with Transmission 4.0.
e5f034d83b is described below

commit e5f034d83b64a8e8bd878229dd03bc8332353970
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Wed May 10 18:42:02 2023 -0400

    gnu: tremc: Fix compatibility with Transmission 4.0.
    
    This version is not released upstream, but it does fix compatibility
    with Transmission 4.0 and works for me.
    
    * gnu/packages/bittorrent.scm: Update to 0.9.3-0.6c15e3f.
---
 gnu/packages/bittorrent.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 97f5e7708e..38e959b884 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -239,19 +239,21 @@ XML-RPC over SCGI.")
     (license l:gpl2+)))
 
 (define-public tremc
+  (let ((commit "6c15e3f5637c8f3641473328bd8c5b0cc122d930")
+        (revision "0"))
   (package
     (name "tremc")
-    (version "0.9.3")
+    (version (git-version "0.9.3" revision commit))
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/tremc/tremc";)
-             (commit version)))
+             (commit commit)))
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "11izsgwj435skkgvw96an6ddcm1hk3ff1gji4ksnidlyv6g6npyv"))))
+         "1anlqzbwgmhrxlh20pfzf4iyw5l2w227h95rq6xf29ai7vddr82k"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no test suite
@@ -268,7 +270,7 @@ XML-RPC over SCGI.")
     (description "Tremc is a console client, with a curses interface, for the
 Transmission BitTorrent daemon.")
     (home-page "https://github.com/tremc/tremc";)
-    (license l:gpl3+)))
+    (license l:gpl3+))))
 
 (define-public aria2
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]