mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: python-pycparser: Use ‘modify-phases’ syntax.
* gnu/packages/python.scm (python-pycparser)[arguments]: Use ‘modify-phases’.
This commit is contained in:
parent
5043b20dcd
commit
819939cb94
1 changed files with 17 additions and 19 deletions
|
@ -32,7 +32,7 @@
|
||||||
;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
|
;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
|
||||||
;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
|
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -4280,13 +4280,12 @@ (define-public python-pycparser
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(alist-replace
|
(modify-phases %standard-phases
|
||||||
'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "tests"
|
(with-directory-excursion "tests"
|
||||||
(zero? (system* "python" "all_tests.py"))))
|
(zero? (system* "python" "all_tests.py")))))
|
||||||
(alist-cons-after
|
(add-after 'install 'install-doc
|
||||||
'install 'install-doc
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((data (string-append (assoc-ref outputs "doc") "/share"))
|
(let* ((data (string-append (assoc-ref outputs "doc") "/share"))
|
||||||
(doc (string-append data "/doc/" ,name "-" ,version))
|
(doc (string-append data "/doc/" ,name "-" ,version))
|
||||||
|
@ -4296,8 +4295,7 @@ (define-public python-pycparser
|
||||||
(copy-file (string-append "." file)
|
(copy-file (string-append "." file)
|
||||||
(string-append doc file)))
|
(string-append doc file)))
|
||||||
'("/README.rst" "/CHANGES" "/LICENSE"))
|
'("/README.rst" "/CHANGES" "/LICENSE"))
|
||||||
(copy-recursively "examples" examples)))
|
(copy-recursively "examples" examples)))))))
|
||||||
%standard-phases))))
|
|
||||||
(home-page "https://github.com/eliben/pycparser")
|
(home-page "https://github.com/eliben/pycparser")
|
||||||
(synopsis "C parser in Python")
|
(synopsis "C parser in Python")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue