mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: detox: Update to 1.4.2.
* gnu/packages/admin.scm (detox): Update to 1.4.2 [arguments]: Remove '#:tests?', provide customer 'check' phase.
This commit is contained in:
parent
f7d2ae5754
commit
1a06cafc07
1 changed files with 8 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
||||||
;;; Copyright © 2014, 2015, 2016, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015, 2016, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2020 Eric Bavier <bavier@posteo.net>
|
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2020, 2021 Eric Bavier <bavier@posteo.net>
|
||||||
;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2015 Alex Sassmannshausen <alex.sassmannshausen@gmail.com>
|
;;; Copyright © 2015 Alex Sassmannshausen <alex.sassmannshausen@gmail.com>
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
|
@ -2137,7 +2137,7 @@ (define-public stress
|
||||||
(define-public detox
|
(define-public detox
|
||||||
(package
|
(package
|
||||||
(name "detox")
|
(name "detox")
|
||||||
(version "1.3.3")
|
(version "1.4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -2146,21 +2146,23 @@ (define-public detox
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13mhs62m7bpff45liy65pajq5jg3i12jj90vwdkra94z9mlr2rlz"))))
|
"0q16dvjbry573j4ayh9dwskdh1dxx8dk4rj94w6f2dcv4ww37is1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("flex" ,flex)))
|
("flex" ,flex)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no 'check' target
|
`(#:phases (modify-phases %standard-phases
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'delete-configure
|
(add-after 'unpack 'delete-configure
|
||||||
;; The "configure" script is present, but otherwise the
|
;; The "configure" script is present, but otherwise the
|
||||||
;; project is not bootstrapped: missing install-sh and
|
;; project is not bootstrapped: missing install-sh and
|
||||||
;; Makefile.in, so delete it so the bootstrap phase will
|
;; Makefile.in, so delete it so the bootstrap phase will
|
||||||
;; take over.
|
;; take over.
|
||||||
(lambda _ (delete-file "configure") #t)))))
|
(lambda _ (delete-file "configure") #t))
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke "./tests/test.sh" "src/detox"))))))
|
||||||
(home-page "https://github.com/dharple/detox")
|
(home-page "https://github.com/dharple/detox")
|
||||||
(synopsis "Clean up file names")
|
(synopsis "Clean up file names")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue