gnu: monero: Update to 0.14.1.2.
* gnu/packages/finance.scm (monero): Update to 0.14.1.2. [arguments]: Add phase to make files writable for the tests. Enable a previously skipped test. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b035a10d58
commit
f8f2a9449b
|
@ -445,7 +445,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
;; the system's dynamically linked library.
|
;; the system's dynamically linked library.
|
||||||
(package
|
(package
|
||||||
(name "monero")
|
(name "monero")
|
||||||
(version "0.14.1.0")
|
(version "0.14.1.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -466,7 +466,7 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
#t))
|
#t))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1asa197fad81jfv12qgaa7y7pdr1r1pda96m9pvivkh4v30cx0nh"))))
|
"00zl883c7lcd9z7g4y3vv7rxmr7ppzrxdblnhk32r9l3qzyw55r6"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
|
@ -508,6 +508,11 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
(("return \\(")
|
(("return \\(")
|
||||||
"return ((std::string(getenv(\"HOME\"))) / "))
|
"return ((std::string(getenv(\"HOME\"))) / "))
|
||||||
#t))
|
#t))
|
||||||
|
(add-after 'change-log-path 'fix-file-permissions-for-tests
|
||||||
|
(lambda _
|
||||||
|
(for-each make-file-writable
|
||||||
|
(find-files "tests/data/" "wallet_9svHk1.*"))
|
||||||
|
#t))
|
||||||
;; Only try tests that don't need access to network or system
|
;; Only try tests that don't need access to network or system
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -522,11 +527,6 @@ other machines/servers. Electroncash does not download the Bitcoin Cash blockch
|
||||||
"DNSResolver.DNSSECSuccess"
|
"DNSResolver.DNSSECSuccess"
|
||||||
"DNSResolver.DNSSECFailure"
|
"DNSResolver.DNSSECFailure"
|
||||||
"DNSResolver.GetTXTRecord"
|
"DNSResolver.GetTXTRecord"
|
||||||
;; TODO: Find why portability_wallet test fails
|
|
||||||
;; Maybe the Boost version used to create the test
|
|
||||||
;; wallet and the current Boost version are not
|
|
||||||
;; completely compatible?
|
|
||||||
"Serialization.portability_wallet"
|
|
||||||
"is_hdd.linux_os_root")
|
"is_hdd.linux_os_root")
|
||||||
":")))
|
":")))
|
||||||
(invoke "tests/unit_tests/unit_tests"
|
(invoke "tests/unit_tests/unit_tests"
|
||||||
|
|
Loading…
Reference in New Issue