gnu: gts: Update phase style.
* gnu/packages/graphviz.scm (gts)[arguments]: Use MODIFY-PHASES syntax and end phase with #t.master
parent
0dc618067b
commit
c0ad84ff1e
|
@ -3,7 +3,7 @@
|
||||||
;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
|
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -148,11 +148,12 @@ visualization tool suite.")
|
||||||
"07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705"))))
|
"07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (alist-cons-before
|
'(#:phases
|
||||||
'check 'pre-check
|
(modify-phases %standard-phases
|
||||||
(lambda _
|
(add-before 'check 'pre-check
|
||||||
(chmod "test/boolean/test.sh" #o777))
|
(lambda _
|
||||||
%standard-phases)
|
(chmod "test/boolean/test.sh" #o777)
|
||||||
|
#t)))
|
||||||
|
|
||||||
;; Some data files used by the test suite are missing.
|
;; Some data files used by the test suite are missing.
|
||||||
;; See <http://sourceforge.net/p/gts/bugs/41/>.
|
;; See <http://sourceforge.net/p/gts/bugs/41/>.
|
||||||
|
|
Reference in New Issue