Archived
1
0
Fork 0

gnu: tremc: Update to 0.9.2.

* gnu/packages/bittorrent.scm (tremc): Update to 0.9.2.
This commit is contained in:
Leo Famulari 2020-07-13 15:48:40 -04:00
parent acfb487e47
commit 9c77cbba3d
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com> ;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016, 2017, 2018, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Tomáš Čech <sleep_walker@gnu.org> ;;; Copyright © 2016 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
@ -183,38 +183,36 @@ XML-RPC over SCGI.")
(license l:gpl2+))) (license l:gpl2+)))
(define-public tremc (define-public tremc
(let ((commit "4d50dab7376601daca13f7be6eabc0eaa057c1b0") (package
(revision "0")) (name "tremc")
(package (version "0.9.2")
(name "tremc") (source
(version (git-version "0.9.1" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/tremc/tremc")
(uri (git-reference (commit version)))
(url "https://github.com/tremc/tremc") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5"))))
(base32 (build-system gnu-build-system)
"0qpi65n8rv7l9mg8qyqx70z83inkl8v5r5nks65c99lhscdki0w7")))) (arguments
(build-system gnu-build-system) `(#:tests? #f ; no test suite
(arguments #:make-flags
`(#:tests? #f ; no test suite (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:make-flags #:phases
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))) (modify-phases %standard-phases
#:phases ;; The software is just a Python script that must be copied into place.
(modify-phases %standard-phases (delete 'configure)
;; The software is just a Python script that must be copied into place. (delete 'build))))
(delete 'configure) (inputs
(delete 'build)))) `(("python" ,python)))
(inputs (synopsis "Console client for the Transmission BitTorrent daemon")
`(("python" ,python))) (description "Tremc is a console client, with a curses interface, for the
(synopsis "Console client for the Transmission BitTorrent daemon")
(description "Tremc is a console client, with a curses interface, for the
Transmission BitTorrent daemon.") Transmission BitTorrent daemon.")
(home-page "https://github.com/tremc/tremc") (home-page "https://github.com/tremc/tremc")
(license l:gpl3+)))) (license l:gpl3+)))
(define-public transmission-remote-cli (define-public transmission-remote-cli
(package (package