gnu: b4: Update to 0.6.1.
* gnu/packages/version-control.scm (b4): Update to 0.6.1. [source]: Download from pypi, which now includes the manpage. [arguments]: Remove now unnecessary install-manpages phase. [inputs]: Add python-dkimpy and python-dnspython. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7a8a4fd7a7
commit
5cac753d88
1 changed files with 8 additions and 20 deletions
|
@ -2318,31 +2318,19 @@ based on a manifest file published by servers.")
|
||||||
(define-public b4
|
(define-public b4
|
||||||
(package
|
(package
|
||||||
(name "b4")
|
(name "b4")
|
||||||
(version "0.5.3")
|
(version "0.6.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (pypi-uri "b4" version))
|
||||||
(url "https://git.kernel.org/pub/scm/utils/b4/b4.git")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0bnjs758blll2i70r4qh3khma7dly5lb8s6kzn5a3p54md91s8v5"))))
|
(base32 "01qid6mvddikcdpf2ihsyn8x3z5j2n64g0ip9pqbx42hrc50pmcz"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments '(#:tests? #f)) ; No tests.
|
||||||
`(#:tests? #f ; No tests.
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'install 'install-manpages
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let ((man (string-append (assoc-ref outputs "out")
|
|
||||||
"/man/man5/")))
|
|
||||||
(mkdir-p man)
|
|
||||||
(for-each (lambda (file) (install-file file man))
|
|
||||||
(find-files "man" "\\.[1-8]$")))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-requests" ,python-requests)))
|
`(("python-dkimpy" ,python-dkimpy)
|
||||||
|
("python-dnspython" ,python-dnspython)
|
||||||
|
("python-requests" ,python-requests)))
|
||||||
(home-page "https://git.kernel.org/pub/scm/utils/b4/b4.git")
|
(home-page "https://git.kernel.org/pub/scm/utils/b4/b4.git")
|
||||||
(synopsis "Tool for working with patches in public-inbox archives")
|
(synopsis "Tool for working with patches in public-inbox archives")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue