guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: opensc: Update to 0.18.0.


From: Marius Bakke
Subject: 02/04: gnu: opensc: Update to 0.18.0.
Date: Wed, 15 Aug 2018 09:31:47 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 5799e5ae07a09d7d83ab64edb3a19e92243c9547
Author: Marius Bakke <address@hidden>
Date:   Wed Aug 15 14:45:45 2018 +0200

    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.
---
 gnu/packages/security-token.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index 68cda50..4369a83 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -219,7 +219,7 @@ website for more information about Yubico and the YubiKey.")
 (define-public opensc
   (package
     (name "opensc")
-    (version "0.17.0")
+    (version "0.18.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -227,7 +227,7 @@ website for more information about Yubico and the YubiKey.")
                     version "/opensc-" version ".tar.gz"))
               (sha256
                (base32
-                "0043jh5g7q2lyd5vnb0akwb5y349isx7vbm9wqhlgav7d20wcwxy"))))
+                "0mrpik6ifzh27ws7h0viv8nwgcdj3fp5whaldmj0zhfi1l1zzh4v"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -244,7 +244,13 @@ website for more information about Yubico and the 
YubiKey.")
                  (("DEFAULT_PCSC_PROVIDER=\"libpcsclite\\.so\\.1\"")
                   (string-append
                    "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
      `(("readline" ,readline)
        ("openssl" ,openssl)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]