gnu: opensc: Update to 0.18.0.
* gnu/packages/security-token.scm (opensc): Update to 0.18.0. [arguments]: Add phase to disable test which fails in this release.
This commit is contained in:
parent
fac39b99a5
commit
5799e5ae07
1 changed files with 9 additions and 3 deletions
|
@ -219,7 +219,7 @@ (define-public ykclient
|
||||||
(define-public opensc
|
(define-public opensc
|
||||||
(package
|
(package
|
||||||
(name "opensc")
|
(name "opensc")
|
||||||
(version "0.17.0")
|
(version "0.18.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -227,7 +227,7 @@ (define-public opensc
|
||||||
version "/opensc-" version ".tar.gz"))
|
version "/opensc-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0043jh5g7q2lyd5vnb0akwb5y349isx7vbm9wqhlgav7d20wcwxy"))))
|
"0mrpik6ifzh27ws7h0viv8nwgcdj3fp5whaldmj0zhfi1l1zzh4v"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -244,7 +244,13 @@ (define-public opensc
|
||||||
(("DEFAULT_PCSC_PROVIDER=\"libpcsclite\\.so\\.1\"")
|
(("DEFAULT_PCSC_PROVIDER=\"libpcsclite\\.so\\.1\"")
|
||||||
(string-append
|
(string-append
|
||||||
"DEFAULT_PCSC_PROVIDER=\"" libpcsclite "\"")))
|
"DEFAULT_PCSC_PROVIDER=\"" libpcsclite "\"")))
|
||||||
#t))))))
|
#t)))
|
||||||
|
(add-before 'check 'disable-broken-test
|
||||||
|
(lambda _
|
||||||
|
;; XXX: This test is fixed in git, remove this phase for >= 0.19.
|
||||||
|
(substitute* "doc/tools/Makefile"
|
||||||
|
(("TESTS = test-manpage.sh") "TESTS = "))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("readline" ,readline)
|
`(("readline" ,readline)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
|
|
Loading…
Reference in a new issue