gnu: rcm: Update to 1.3.5.
* gnu/packages/rcm.scm (rcm): Update to 1.3.5. [arguments]: Don't explicitly return #t from phases.master
parent
748e7de380
commit
292e7d323d
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
|
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
|
||||||
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -28,13 +28,13 @@
|
||||||
(define-public rcm
|
(define-public rcm
|
||||||
(package
|
(package
|
||||||
(name "rcm")
|
(name "rcm")
|
||||||
(version "1.3.4")
|
(version "1.3.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://thoughtbot.github.io/rcm/dist/rcm-"
|
(uri (string-append "https://thoughtbot.github.io/rcm/dist/rcm-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0jn2crdqcna0fyg7w7x1mcyjblzykd3lh4vdxhsd5x4w8hvsw4cv"))))
|
(base32 "0bdyksrd9i3lkmr9kq6dwa0l4g2403vnma5s4j9h8spi4rziwx14"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:phases
|
(arguments '(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -45,8 +45,7 @@
|
||||||
"test/rcup-hooks-run-in-order.t")
|
"test/rcup-hooks-run-in-order.t")
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
(substitute* "test/rcup-hooks.t"
|
(substitute* "test/rcup-hooks.t"
|
||||||
(("/usr/bin/env") (which "env")))
|
(("/usr/bin/env") (which "env"))))))
|
||||||
#t)))
|
|
||||||
#:parallel-tests? #f))
|
#:parallel-tests? #f))
|
||||||
(native-inputs (list perl python-cram))
|
(native-inputs (list perl python-cram))
|
||||||
(synopsis "Management suite for dotfiles")
|
(synopsis "Management suite for dotfiles")
|
||||||
|
|
Reference in New Issue