From owner-svn-ports-all@freebsd.org Thu Feb 25 15:45:26 2021 Return-Path: Delivered-To: svn-ports-all@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 8FD125670D2; Thu, 25 Feb 2021 15:45:26 +0000 (UTC) (envelope-from novel@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DmcYy3kdZz4trt; Thu, 25 Feb 2021 15:45:26 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 732801A09D; Thu, 25 Feb 2021 15:45:26 +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 11PFjQZa070609; Thu, 25 Feb 2021 15:45:26 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11PFjQWJ070607; Thu, 25 Feb 2021 15:45:26 GMT (envelope-from novel@FreeBSD.org) Message-Id: <202102251545.11PFjQWJ070607@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 25 Feb 2021 15:45:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566543 - head/security/p11-kit X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/security/p11-kit X-SVN-Commit-Revision: 566543 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2021 15:45:26 -0000 Author: novel Date: Thu Feb 25 15:45:25 2021 New Revision: 566543 URL: https://svnweb.freebsd.org/changeset/ports/566543 Log: security/p11-kit: drop BASH option - Drop BASH option and install bash completion files unconditionally, but only add shells/bash-completion to BUILD_DEPENDS, not RUN_DEPENDS, - Improve formatting with portfmt(1), - Bump PORTREVISION for dependency changes. PR: 253843 Submitted by: swills Reported by: Andras Farkas Modified: head/security/p11-kit/Makefile head/security/p11-kit/pkg-plist Modified: head/security/p11-kit/Makefile ============================================================================== --- head/security/p11-kit/Makefile Thu Feb 25 15:35:57 2021 (r566542) +++ head/security/p11-kit/Makefile Thu Feb 25 15:45:25 2021 (r566543) @@ -3,6 +3,7 @@ PORTNAME= p11-kit DISTVERSION= 0.23.22 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= https://github.com/p11-glue/p11-kit/releases/download/${DISTVERSION}/ @@ -15,26 +16,25 @@ COMMENT= Library for loading and enumerating of PKCS\# LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +BUILD_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss \ + bash-completion>=0:shells/bash-completion RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss -BUILD_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss -LIB_DEPENDS= libtasn1.so:security/libtasn1 \ - libffi.so:devel/libffi +LIB_DEPENDS= libffi.so:devel/libffi \ + libtasn1.so:security/libtasn1 USES= localbase meson pkgconfig tar:xz USE_LDCONFIG= yes -MESON_ARGS= -Dlibffi=enabled -Dtrust_module=enabled \ - -Dtrust_paths=${LOCALBASE}/share/certs/ca-root-nss.crt \ - -Dnls=false +MESON_ARGS= -Dbash_completion=enabled \ + -Dlibffi=enabled \ + -Dnls=false \ + -Dtrust_module=enabled \ + -Dtrust_paths=${LOCALBASE}/share/certs/ca-root-nss.crt -OPTIONS_DEFINE= BASH DOCS MANPAGES TEST -OPTIONS_SUB= yes +OPTIONS_DEFINE= DOCS MANPAGES TEST +OPTIONS_SUB= yes MANPAGES_IMPLIES= DOCS -OPTIONS_DEFAULT= BASH MANPAGES - -BASH_BUILD_DEPENDS= bash-completion>=0:shells/bash-completion -BASH_RUN_DEPENDS= bash-completion>=0:shells/bash-completion -BASH_MESON_ENABLED= bash_completion +OPTIONS_DEFAULT= MANPAGES DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc DOCS_USES= gnome Modified: head/security/p11-kit/pkg-plist ============================================================================== --- head/security/p11-kit/pkg-plist Thu Feb 25 15:35:57 2021 (r566542) +++ head/security/p11-kit/pkg-plist Thu Feb 25 15:45:25 2021 (r566543) @@ -21,8 +21,8 @@ libexec/p11-kit/trust-extract-compat %%MANPAGES%%man/man1/trust.1.gz %%MANPAGES%%man/man5/pkcs11.conf.5.gz %%MANPAGES%%man/man8/p11-kit.8.gz -%%BASH%%share/bash-completion/completions/p11-kit -%%BASH%%share/bash-completion/completions/trust +share/bash-completion/completions/p11-kit +share/bash-completion/completions/trust %%DOCS%%share/gtk-doc/html/p11-kit/config-example.html %%DOCS%%share/gtk-doc/html/p11-kit/config-files.html %%DOCS%%share/gtk-doc/html/p11-kit/config.html