From owner-svn-ports-head@freebsd.org Wed Sep 2 14:42:41 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DFDE63D94A3; Wed, 2 Sep 2020 14:42:41 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BhRVn5TqLz4pMP; Wed, 2 Sep 2020 14:42:41 +0000 (UTC) (envelope-from ale@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 86C8AC12E; Wed, 2 Sep 2020 14:42:41 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 082Egf5B075163; Wed, 2 Sep 2020 14:42:41 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 082Ege6I075159; Wed, 2 Sep 2020 14:42:40 GMT (envelope-from ale@FreeBSD.org) Message-Id: <202009021442.082Ege6I075159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 2 Sep 2020 14:42:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547361 - in head/security: libp11 libp11/files pam_p11 X-SVN-Group: ports-head X-SVN-Commit-Author: ale X-SVN-Commit-Paths: in head/security: libp11 libp11/files pam_p11 X-SVN-Commit-Revision: 547361 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.33 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: Wed, 02 Sep 2020 14:42:41 -0000 Author: ale Date: Wed Sep 2 14:42:40 2020 New Revision: 547361 URL: https://svnweb.freebsd.org/changeset/ports/547361 Log: Fix soname version generation and bump port revisions. PR: 249052 Submitted by: Ole Modified: head/security/libp11/Makefile head/security/libp11/files/patch-configure.ac head/security/libp11/pkg-plist head/security/pam_p11/Makefile Modified: head/security/libp11/Makefile ============================================================================== --- head/security/libp11/Makefile Wed Sep 2 14:39:50 2020 (r547360) +++ head/security/libp11/Makefile Wed Sep 2 14:42:40 2020 (r547361) @@ -3,6 +3,7 @@ PORTNAME= libp11 PORTVERSION= 0.4.10 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= security devel Modified: head/security/libp11/files/patch-configure.ac ============================================================================== --- head/security/libp11/files/patch-configure.ac Wed Sep 2 14:39:50 2020 (r547360) +++ head/security/libp11/files/patch-configure.ac Wed Sep 2 14:42:40 2020 (r547361) @@ -1,6 +1,15 @@ ---- configure.ac.orig 2016-03-28 16:04:04 UTC +--- configure.ac.orig 2019-04-03 20:14:33 UTC +++ configure.ac -@@ -191,7 +191,7 @@ if test -n "${pkcs11_module}"; then +@@ -39,7 +39,7 @@ case "`$PKG_CONFIG --modversion --silence-errors libcr + LIBP11_LT_OLDEST="2" + debian_ssl_prefix="openssl-1.0.0";; + *) # Engines directory prefix for OpenSSL 0.9.x +- LIBP11_LT_OLDEST="2" ++ LIBP11_LT_OLDEST="3" # FreeBSD base has openssl 1.1.* + debian_ssl_prefix="ssl";; + esac + +@@ -208,7 +208,7 @@ if test -n "${pkcs11_module}"; then [Default PKCS#11 module.]) fi Modified: head/security/libp11/pkg-plist ============================================================================== --- head/security/libp11/pkg-plist Wed Sep 2 14:39:50 2020 (r547360) +++ head/security/libp11/pkg-plist Wed Sep 2 14:42:40 2020 (r547361) @@ -4,8 +4,8 @@ lib/engines/libpkcs11.so lib/engines/pkcs11.so lib/libp11.a lib/libp11.so -lib/libp11.so.2 -lib/libp11.so.2.5.2 +lib/libp11.so.3 +lib/libp11.so.3.4.2 libdata/pkgconfig/libp11.pc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile %%PORTEXAMPLES%%%%EXAMPLESDIR%%/README Modified: head/security/pam_p11/Makefile ============================================================================== --- head/security/pam_p11/Makefile Wed Sep 2 14:39:50 2020 (r547360) +++ head/security/pam_p11/Makefile Wed Sep 2 14:42:40 2020 (r547361) @@ -3,6 +3,7 @@ PORTNAME= pam_p11 PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://github.com/OpenSC/pam_p11/releases/download/pam_p11-${PORTVERSION}/