gnu: cryfs: Update to 0.11.4.

* gnu/packages/crypto.scm (cryfs): Update to 0.11.4.
[arguments]: Remove obsolete phase.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-16 02:00:02 +02:00
parent d23ced7cc1
commit 6984151a83
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1479,7 +1479,7 @@ (define-public transcrypt
(define-public cryfs (define-public cryfs
(package (package
(name "cryfs") (name "cryfs")
(version "0.11.3") (version "0.11.4")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -1487,7 +1487,7 @@ (define-public cryfs
"https://github.com/cryfs/cryfs/releases/download/" "https://github.com/cryfs/cryfs/releases/download/"
version "/cryfs-" version ".tar.xz")) version "/cryfs-" version ".tar.xz"))
(sha256 (sha256
(base32 "1h41dhdfk2nll0vx5i66mgrdalv6kccwq5yx99gridywxw6qxxhq")))) (base32 "0a48qijfrd02ianp19x3kz24w1pgigmlxdr5nks0gag7z5b2s7m7"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:modules ((guix build cmake-build-system) '(#:modules ((guix build cmake-build-system)
@ -1514,14 +1514,7 @@ (define-public cryfs
(when tests? (when tests?
(substitute* "CMakeLists.txt" (substitute* "CMakeLists.txt"
(("option.BUILD_TESTING .build test cases. OFF.") (("option.BUILD_TESTING .build test cases. OFF.")
"option(BUILD_TESTING \"build test cases\" ON)"))) "option(BUILD_TESTING \"build test cases\" ON)")))))
;; work around a missing import fixed upstream in boost 1.78
;; See https://github.com/boostorg/process/issues/213
(substitute* (find-files "." "subprocess.cpp$")
(("#include <boost/process.hpp>.*" line)
(string-append
"#include <algorithm>\n"
line)))))
(replace 'check (replace 'check
(lambda* (#:key tests? #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(when tests? (when tests?