me
/
guix
Archived
1
0
Fork 0

gnu: bpp-phyl: Update to 2.4.1.

* gnu/packages/bioinformatics.scm (bpp-phyl): Update to 2.4.1.

[source]: Remove the commit and use the release version. Changed to the github
repo.
[arguments]: Remove the disabled parallel-build and out-of-source.
[home-page]: Changed to new host Université Claude-Bernard Lyon 1.
[synopsis]: Use proper capitalization.
master
Mădălin Ionel Patrașcu 2023-04-21 10:16:38 +02:00 committed by Ricardo Wurmus
parent 627049872b
commit 5107a8a1a3
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 29 deletions

View File

@ -2244,37 +2244,28 @@ providing them a set of re-usable tools.")
(license license:cecill-c))) (license license:cecill-c)))
(define-public bpp-phyl (define-public bpp-phyl
;; The last release was in 2014 and the recommended way to install from source
;; is to clone the git repository, so we do this.
;; http://biopp.univ-montp2.fr/wiki/index.php/Main_Page
(let ((commit "0c07167b629f68b569bf274d1ad0c4af83276ae2"))
(package (package
(name "bpp-phyl") (name "bpp-phyl")
(version (string-append "2.2.0-1." (string-take commit 7))) (version "2.4.1")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "http://biopp.univ-montp2.fr/git/bpp-phyl") (url "https://github.com/BioPP/bpp-phyl")
(commit commit))) (commit (string-append "v" version))))
(file-name (string-append name "-" version "-checkout")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1ssjgchzwj3iai26kyly7gwkdv8sk59nqhkb1wpap3sf5m6kyllh")))) "192zks6wyk903n06c2lbsscdhkjnfwms8p7jblsmk3lvjhdipb20"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments
`(#:parallel-build? #f
;; If out-of-source, test data is not copied into the build directory
;; so the tests fail.
#:out-of-source? #f))
(inputs (inputs
(list bpp-core bpp-seq)) (list bpp-core bpp-seq))
(home-page "http://biopp.univ-montp2.fr") (home-page "https://pbil.univ-lyon1.fr/bpp-doc/bpp-phyl/html/")
(synopsis "Bio++ phylogenetic Library") (synopsis "Bio++ phylogenetic library")
(description (description
"Bio++ is a set of C++ libraries for Bioinformatics, including sequence "Bio++ is a set of C++ libraries for Bioinformatics, including sequence
analysis, phylogenetics, molecular evolution and population genetics. This analysis, phylogenetics, molecular evolution and population genetics. This
library provides phylogenetics-related modules.") library provides phylogenetics-related modules.")
(license license:cecill-c)))) (license license:cecill-c)))
(define-public bpp-popgen (define-public bpp-popgen
;; The last release was in 2014 and the recommended way to install from source ;; The last release was in 2014 and the recommended way to install from source