mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: bazaar: Use 'modify-phases'.
* gnu/packages/version-control.scm (bazaar)[arguments]: Use 'modify-phases'.
This commit is contained in:
parent
f21403e2b6
commit
730c740e43
1 changed files with 7 additions and 6 deletions
|
@ -94,12 +94,13 @@ (define-public bazaar
|
||||||
`(#:tests? #f ; no test target
|
`(#:tests? #f ; no test target
|
||||||
#:python ,python-2 ; Python 3 apparently not yet supported, see
|
#:python ,python-2 ; Python 3 apparently not yet supported, see
|
||||||
; https://answers.launchpad.net/bzr/+question/229048
|
; https://answers.launchpad.net/bzr/+question/229048
|
||||||
#:phases (alist-cons-after
|
#:phases
|
||||||
'unpack 'fix-mandir
|
(modify-phases %standard-phases
|
||||||
(lambda _
|
(add-after 'unpack 'fix-mandir
|
||||||
(substitute* "setup.py"
|
(lambda _
|
||||||
(("man/man1") "share/man/man1")))
|
(substitute* "setup.py"
|
||||||
%standard-phases)))
|
(("man/man1") "share/man/man1"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://gnu.org/software/bazaar")
|
(home-page "https://gnu.org/software/bazaar")
|
||||||
(synopsis "Version control system supporting both distributed and centralized workflows")
|
(synopsis "Version control system supporting both distributed and centralized workflows")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue