mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cqfd: Update to 5.4.0.
* gnu/packages/docker.scm (cqfd): Update to 5.4.0. [arguments]: Use gexps. Add #:make-flags. Remove install phase override.
This commit is contained in:
parent
767edbb6fe
commit
6fe9a004db
1 changed files with 11 additions and 18 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019, 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2019, 2020, 2021, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
|
;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
|
||||||
|
@ -664,7 +664,7 @@ provisioning etc.")
|
||||||
(define-public cqfd
|
(define-public cqfd
|
||||||
(package
|
(package
|
||||||
(name "cqfd")
|
(name "cqfd")
|
||||||
(version "5.3.0")
|
(version "5.4.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -673,25 +673,18 @@ provisioning etc.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0gy4kjy6v52acfk6ffbg5sp02k6176khhkms7zlwmywq8591bpww"))))
|
"1kilrh4ahza19lka9218s2wkfcbk5r2cq9adczhlnlfggdrqnglg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; The test suite requires a docker daemon and connectivity.
|
;; The test suite requires a docker daemon and connectivity.
|
||||||
`(#:tests? #f
|
(list
|
||||||
#:phases
|
#:tests? #f
|
||||||
(modify-phases %standard-phases
|
#:make-flags #~(list (string-append "COMPLETIONSDIR="
|
||||||
(delete 'configure)
|
#$output "/etc/bash_completion.d")
|
||||||
(delete 'build)
|
(string-append "PREFIX=" #$output))
|
||||||
(replace 'install
|
#:phases #~(modify-phases %standard-phases
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(delete 'configure)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(delete 'build))))
|
||||||
;; Fix the directory of the bash completion.
|
|
||||||
(substitute* "Makefile"
|
|
||||||
(("completionsdir=.*$")
|
|
||||||
(string-append "completionsdir=" out
|
|
||||||
"/etc/bash_completion.d; \\\n")))
|
|
||||||
(invoke "make" "install"
|
|
||||||
(string-append "PREFIX=" out))))))))
|
|
||||||
(home-page "https://github.com/savoirfairelinux/cqfd")
|
(home-page "https://github.com/savoirfairelinux/cqfd")
|
||||||
(synopsis "Convenience wrapper for Docker")
|
(synopsis "Convenience wrapper for Docker")
|
||||||
(description "cqfd is a Bash script that provides a quick and convenient
|
(description "cqfd is a Bash script that provides a quick and convenient
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue