From owner-svn-ports-head@freebsd.org Sun Sep 3 07:21:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24AACE1F426; Sun, 3 Sep 2017 07:21:15 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00749BA5; Sun, 3 Sep 2017 07:21:14 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v837LE3Y051758; Sun, 3 Sep 2017 07:21:14 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v837LDii051754; Sun, 3 Sep 2017 07:21:13 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201709030721.v837LDii051754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 3 Sep 2017 07:21:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449174 - in head/security/p11-kit: . files X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: in head/security/p11-kit: . files X-SVN-Commit-Revision: 449174 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Sep 2017 07:21:15 -0000 Author: novel Date: Sun Sep 3 07:21:13 2017 New Revision: 449174 URL: https://svnweb.freebsd.org/changeset/ports/449174 Log: security/p11-kit: update to 0.23.8 Include two patches from upstream for: * Fixing build without debug * Adding missing stdint.h include to fix build on FreeBSD 10.x Added: head/security/p11-kit/files/ head/security/p11-kit/files/patch-common_compat.c (contents, props changed) head/security/p11-kit/files/patch-common_debug.h (contents, props changed) Modified: head/security/p11-kit/Makefile head/security/p11-kit/distinfo Modified: head/security/p11-kit/Makefile ============================================================================== --- head/security/p11-kit/Makefile Sun Sep 3 07:07:11 2017 (r449173) +++ head/security/p11-kit/Makefile Sun Sep 3 07:21:13 2017 (r449174) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p11-kit -PORTVERSION= 0.23.7 +PORTVERSION= 0.23.8 CATEGORIES= security devel MASTER_SITES= https://github.com/p11-glue/p11-kit/releases/download/${PORTVERSION}/ Modified: head/security/p11-kit/distinfo ============================================================================== --- head/security/p11-kit/distinfo Sun Sep 3 07:07:11 2017 (r449173) +++ head/security/p11-kit/distinfo Sun Sep 3 07:21:13 2017 (r449174) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496461827 -SHA256 (p11-kit-0.23.7.tar.gz) = 988e7c86f2641b36702503481292ef0686e6b1c39d80b215699b6dbf1024be41 -SIZE (p11-kit-0.23.7.tar.gz) = 1087009 +TIMESTAMP = 1503207736 +SHA256 (p11-kit-0.23.8.tar.gz) = 4ba134e5fe4b62bcaf7a2d66841767d9d23e875b977bba6939367a9f400b133f +SIZE (p11-kit-0.23.8.tar.gz) = 1090814 Added: head/security/p11-kit/files/patch-common_compat.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p11-kit/files/patch-common_compat.c Sun Sep 3 07:21:13 2017 (r449174) @@ -0,0 +1,10 @@ +--- common/compat.c.orig 2017-08-26 16:30:23 UTC ++++ common/compat.c +@@ -51,6 +51,7 @@ + #include + #include + #include ++#include + #include + + /*- Added: head/security/p11-kit/files/patch-common_debug.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p11-kit/files/patch-common_debug.h Sun Sep 3 07:21:13 2017 (r449174) @@ -0,0 +1,13 @@ +--- common/debug.h.orig 2017-06-16 14:55:26 UTC ++++ common/debug.h +@@ -144,6 +144,10 @@ void p11_debug_precond (const + + #else /* !defined (WITH_DEBUG) */ + ++#undef p11_debug ++#define p11_debug(format, ...) \ ++ do {} while (false) ++ + #undef p11_debug_err + #define p11_debug_err(errnum, format, ...) \ + do {} while (false)