pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/security/p11-kit Update to 0.23.15



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e48e4b8ae742
branches:  trunk
changeset: 321537:e48e4b8ae742
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Sun Mar 24 18:03:54 2019 +0000

description:
Update to 0.23.15

Changelog:
    trust: Improve error handling if backed trust file is corrupted [#206]
    url: Prefer upper-case letters in hex characters when encoding [#193]
    trust/extract-jks.c: also honor SOURCE_DATE_EPOCH time [#202]
    virtual: Prefer fixed closures to libffi closures [#196]
    Fix issues spotted by coverity and cppcheck [#194, #204]
    Build and test fixes [#164, #191, #199, #201]

diffstat:

 security/p11-kit/Makefile                      |   4 ++--
 security/p11-kit/distinfo                      |  12 ++++++------
 security/p11-kit/patches/patch-common_compat.c |  19 +------------------
 3 files changed, 9 insertions(+), 26 deletions(-)

diffs (64 lines):

diff -r 5a6f3c821236 -r e48e4b8ae742 security/p11-kit/Makefile
--- a/security/p11-kit/Makefile Sun Mar 24 15:58:06 2019 +0000
+++ b/security/p11-kit/Makefile Sun Mar 24 18:03:54 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2018/12/12 22:29:36 leot Exp $
+# $NetBSD: Makefile,v 1.14 2019/03/24 18:03:54 ryoon Exp $
 
-DISTNAME=      p11-kit-0.23.14
+DISTNAME=      p11-kit-0.23.15
 CATEGORIES=    security
 #MASTER_SITES= http://p11-glue.freedesktop.org/releases/
 MASTER_SITES+= ${MASTER_SITE_GITHUB:=p11-glue/}
diff -r 5a6f3c821236 -r e48e4b8ae742 security/p11-kit/distinfo
--- a/security/p11-kit/distinfo Sun Mar 24 15:58:06 2019 +0000
+++ b/security/p11-kit/distinfo Sun Mar 24 18:03:54 2019 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.10 2018/09/27 18:06:36 tnn Exp $
+$NetBSD: distinfo,v 1.11 2019/03/24 18:03:54 ryoon Exp $
 
-SHA1 (p11-kit-0.23.14.tar.gz) = 30cab1d4b716022e6918f9a49976609c425f9cfc
-RMD160 (p11-kit-0.23.14.tar.gz) = 795ea86b15fbcb6865cf65c146c6f54b5a27d1cd
-SHA512 (p11-kit-0.23.14.tar.gz) = fc7e7e0745d7f8e5d783a1f38bad9bbe65b56d54897b6ba2c3118a0d912451c2d48dd113a875e7f7bfcff8fbd6b4905472fcd120630661c12029a16d2b13add4
-Size (p11-kit-0.23.14.tar.gz) = 1266595 bytes
+SHA1 (p11-kit-0.23.15.tar.gz) = 06a9976d92861e5286fbb0b239821b7a250b177b
+RMD160 (p11-kit-0.23.15.tar.gz) = 5ad92935cd31dbf7877ff1c6b829551aa43768a5
+SHA512 (p11-kit-0.23.15.tar.gz) = d703eec12626b79551ce337521f7ea7b1a0b64c211d7a93d831dd28ec1de77c7b58358c1588bf82d70f047c01ad9433fa8a286d1a25ae3f6b0ee6016b8c42950
+Size (p11-kit-0.23.15.tar.gz) = 1276733 bytes
 SHA1 (patch-Makefile.in) = 1393b1c8892e90362575d5d325a583921f629b3c
-SHA1 (patch-common_compat.c) = b45c24309f2c4bd6389162a9c02c6ac132230e40
+SHA1 (patch-common_compat.c) = bdcb10cebe5e7755c81f88ef033b9dfecd7a1aad
diff -r 5a6f3c821236 -r e48e4b8ae742 security/p11-kit/patches/patch-common_compat.c
--- a/security/p11-kit/patches/patch-common_compat.c    Sun Mar 24 15:58:06 2019 +0000
+++ b/security/p11-kit/patches/patch-common_compat.c    Sun Mar 24 18:03:54 2019 +0000
@@ -1,9 +1,8 @@
-$NetBSD: patch-common_compat.c,v 1.3 2018/09/05 08:34:10 prlw1 Exp $
+$NetBSD: patch-common_compat.c,v 1.4 2019/03/24 18:03:54 ryoon Exp $
 
 - Hide getauxval() symbol because the implementation is incomplete
   and breaks for example openssl on NetBSD/evbarm
   https://github.com/p11-glue/p11-kit/issues/192
-- Avoid /proc section on Darwin.
 
 --- common/compat.c.orig       2018-08-10 09:54:46.000000000 +0000
 +++ common/compat.c
@@ -17,19 +16,3 @@
  getauxval (unsigned long type)
  {
        static unsigned long secure = 0UL;
-@@ -912,6 +915,7 @@ fdwalk (int (* cb) (void *data, int fd),
-       struct rlimit rl;
- #endif
- 
-+#if !defined(__APPLE__)
-       dir = opendir ("/proc/self/fd");
-       if (dir != NULL) {
-               while ((de = readdir (dir)) != NULL) {
-@@ -934,6 +938,7 @@ fdwalk (int (* cb) (void *data, int fd),
-               closedir (dir);
-               return res;
-       }
-+#endif
- 
-       /* No /proc, brute force */
- #ifdef HAVE_SYS_RESOURCE_H



Home | Main Index | Thread Index | Old Index