Archived
1
0
Fork 0

gnu: vc: Update to 1.4.3.

* gnu/packages/maths.scm (vc): Update to 1.4.3.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-16 02:00:01 +02:00
parent 1cf84fb13b
commit d6cb55b395
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -5932,14 +5932,14 @@ supports compressed MAT files, as well as newer (version 7.3) MAT files.")
(define-public vc (define-public vc
(package (package
(name "vc") (name "vc")
(version "1.4.2") (version "1.4.3")
(source (source
(origin (method url-fetch) (origin
(method url-fetch)
(uri (string-append "https://github.com/VcDevel/Vc/releases/" (uri (string-append "https://github.com/VcDevel/Vc/releases/"
"download/" version "/Vc-" version ".tar.gz")) "download/" version "/Vc-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32 "0zq37r8yisd4dwlb024l10wk2yq9kisa4xm79ia1ggrz7w2s13lq"))))
"0lirdqzcxys9walz04bllsphydynk7973aimd5k1h1qbwi8z3lsh"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:configure-flags '(#:configure-flags
@ -5953,21 +5953,20 @@ supports compressed MAT files, as well as newer (version 7.3) MAT files.")
(lambda* (#:key inputs native-inputs #:allow-other-keys) (lambda* (#:key inputs native-inputs #:allow-other-keys)
(let ((testdata (assoc-ref (or native-inputs inputs) (let ((testdata (assoc-ref (or native-inputs inputs)
"testdata"))) "testdata")))
(copy-recursively testdata "tests/testdata") (copy-recursively testdata "tests/testdata")))))))
#t))))))
(native-inputs (native-inputs
`(("virtest" ,virtest) `(("virtest" ,virtest)
;; This is a submodule in the git project, but not part of the ;; This is a submodule in the git project, but not part of the
;; released sources. See the git branch for the commit to take. ;; released sources. See the git branch for the commit to take.
("testdata" ,(let ((commit "9ada1f34d6a41f1b5553d6223f277eae72c039d3")) ("testdata"
,(let ((commit "9ada1f34d6a41f1b5553d6223f277eae72c039d3"))
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/VcDevel/vc-testdata") (url "https://github.com/VcDevel/vc-testdata")
(commit "9ada1f34d6a41f1b5553d6223f277eae72c039d3"))) (commit "9ada1f34d6a41f1b5553d6223f277eae72c039d3")))
(file-name (git-file-name "vc-testdata" (file-name (git-file-name "vc-testdata" (string-take commit 7)))
(string-take commit 7)))
(sha256 (sha256
(base32 (base32
"1hkhqib03qlcq412ym2dciynfxcdr2ygqhnplz4l1vissr1wnqn2"))))))) "1hkhqib03qlcq412ym2dciynfxcdr2ygqhnplz4l1vissr1wnqn2")))))))