rekado pushed a commit to branch master
in repository guix.
commit 8322ecb08075bd8e3f5d881022a9b51f2388e521
Author: Ricardo Wurmus <[email protected]>
Date: Wed Nov 28 21:38:16 2018 +0100
gnu: transmission-remote-cli: Fetch sources from git.
* gnu/packages/bittorrent.scm (transmission-remote-cli)[source]: Fetch from
git.
---
gnu/packages/bittorrent.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index 9df5a8e..80c381d 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -1,14 +1,14 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <[email protected]>
;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <[email protected]>
-;;; Copyright © 2016, 2018 Leo Famulari <[email protected]>
-;;; Copyright © 2016, 2017 Leo Famulari <[email protected]>
+;;; Copyright © 2016, 2017, 2018 Leo Famulari <[email protected]>
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2016 Tomáš Čech <[email protected]>
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2017 Jelle Licht <[email protected]>
;;; Copyright © 2018 Fis Trivial <[email protected]>
;;; Copyright © 2018 Nam Nguyen <[email protected]>
+;;; Copyright © 2018 Ricardo Wurmus <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -217,14 +217,14 @@ Transmission BitTorrent daemon.")
(name "transmission-remote-cli")
(version "1.7.1")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/fagga/"
- "transmission-remote-cli/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/fagga/transmission-remote-cli.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1y0hkpcjf6jw9xig8yf484hbhy63nip0pkchx401yxj81m25l4z9"))))
+ "09w9f8vrm61lapin8fmq4rgahr95y3c6wss10g0fgd0kl16f895v"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2 ; only supports Python 2