mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: aegis: Use 'modify-phases'.
* gnu/packages/version-control.scm (aegis)[arguments]: Use 'modify-phases'.
This commit is contained in:
parent
2ce516d359
commit
8ef843c711
1 changed files with 29 additions and 31 deletions
|
@ -964,8 +964,8 @@ (define-public aegis
|
||||||
"--sharedstatedir=/var/com/aegis")
|
"--sharedstatedir=/var/com/aegis")
|
||||||
#:parallel-build? #f ; There are some nasty racy rules in the Makefile.
|
#:parallel-build? #f ; There are some nasty racy rules in the Makefile.
|
||||||
#:phases
|
#:phases
|
||||||
(alist-cons-before
|
(modify-phases %standard-phases
|
||||||
'configure 'pre-conf
|
(add-before 'configure 'pre-conf
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* (append '("configure"
|
(substitute* (append '("configure"
|
||||||
"etc/check-tar-gz.sh"
|
"etc/check-tar-gz.sh"
|
||||||
|
@ -981,9 +981,8 @@ (define-public aegis
|
||||||
"libaegis/getpw_cache.cc")
|
"libaegis/getpw_cache.cc")
|
||||||
(find-files "test" "\\.sh"))
|
(find-files "test" "\\.sh"))
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
(setenv "SH" (which "sh")))
|
(setenv "SH" (which "sh"))))
|
||||||
(alist-replace
|
(replace 'check
|
||||||
'check
|
|
||||||
(lambda _
|
(lambda _
|
||||||
(let ((home (string-append (getcwd) "/my-new-home")))
|
(let ((home (string-append (getcwd) "/my-new-home")))
|
||||||
;; Some tests need to write to $HOME.
|
;; Some tests need to write to $HOME.
|
||||||
|
@ -995,8 +994,7 @@ (define-public aegis
|
||||||
(("type lex") "type flex"))
|
(("type lex") "type flex"))
|
||||||
|
|
||||||
;; The author decided to call the check rule "sure".
|
;; The author decided to call the check rule "sure".
|
||||||
(zero? (system* "make" "sure"))))
|
(zero? (system* "make" "sure"))))))))
|
||||||
%standard-phases))))
|
|
||||||
(home-page "http://aegis.sourceforge.net")
|
(home-page "http://aegis.sourceforge.net")
|
||||||
(synopsis "Project change supervisor")
|
(synopsis "Project change supervisor")
|
||||||
(description "Aegis is a project change supervisor, and performs some of
|
(description "Aegis is a project change supervisor, and performs some of
|
||||||
|
|
Loading…
Reference in a new issue