From owner-svn-ports-all@freebsd.org Fri Jul 10 18:35:23 2020 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 311DD370625; Fri, 10 Jul 2020 18:35:23 +0000 (UTC) (envelope-from ume@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 4B3MDC0Z1Mz3VYF; Fri, 10 Jul 2020 18:35:23 +0000 (UTC) (envelope-from ume@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 D0F7226355; Fri, 10 Jul 2020 18:35:22 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06AIZMqw053509; Fri, 10 Jul 2020 18:35:22 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06AIZMTx053507; Fri, 10 Jul 2020 18:35:22 GMT (envelope-from ume@FreeBSD.org) Message-Id: <202007101835.06AIZMTx053507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Fri, 10 Jul 2020 18:35:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541878 - head/security/yubico-piv-tool X-SVN-Group: ports-head X-SVN-Commit-Author: ume X-SVN-Commit-Paths: head/security/yubico-piv-tool X-SVN-Commit-Revision: 541878 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.33 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: Fri, 10 Jul 2020 18:35:23 -0000 Author: ume Date: Fri Jul 10 18:35:22 2020 New Revision: 541878 URL: https://svnweb.freebsd.org/changeset/ports/541878 Log: Update to 2.1.0 Modified: head/security/yubico-piv-tool/Makefile head/security/yubico-piv-tool/distinfo Modified: head/security/yubico-piv-tool/Makefile ============================================================================== --- head/security/yubico-piv-tool/Makefile Fri Jul 10 18:25:49 2020 (r541877) +++ head/security/yubico-piv-tool/Makefile Fri Jul 10 18:35:22 2020 (r541878) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yubico-piv-tool -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 #PORTREVISION= 0 CATEGORIES= security MASTER_SITES= https://developers.yubico.com/yubico-piv-tool/Releases/ @@ -12,27 +12,28 @@ COMMENT= Yubico PIV tool LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/check.pc:devel/check +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/check.pc:devel/check \ + gengetopt:devel/gengetopt LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite -USES= compiler gmake libtool pathfix pkgconfig ssl +USES= compiler cmake:noninja gmake libtool pathfix pkgconfig ssl USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= OPENSSL_CFLAGS="${OPENSSL_CFLAGS}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" -OPENSSL_CFLAGS= -I${OPENSSLINC} +CMAKE_ARGS= -D LIBCRYPTO_CFLAGS="-I${OPENSSLINC}" \ + -D LIBCRYPTO_LDFLAGS="-L${OPENSSLLIB} -lcrypto -L${LOCALBASE}/lib -pthread" \ + -D YKPIV_INSTALL_MAN_DIR="${LOCALBASE}/man" \ + -D YKPIV_INSTALL_PKGCONFIG_DIR="${LOCALBASE}/libdata/pkgconfig" PLIST_FILES= bin/yubico-piv-tool \ - include/ykpiv/ykpiv-version.h \ + include/ykpiv/ykpiv-config.h \ include/ykpiv/ykpiv.h \ lib/libykcs11.a \ lib/libykcs11.so \ lib/libykcs11.so.1 \ - lib/libykcs11.so.1.6.0 \ + lib/libykcs11.so.2.1.0 \ lib/libykpiv.a \ lib/libykpiv.so \ lib/libykpiv.so.1 \ - lib/libykpiv.so.1.6.0 \ + lib/libykpiv.so.2.1.0 \ libdata/pkgconfig/ykcs11.pc \ libdata/pkgconfig/ykpiv.pc \ man/man1/yubico-piv-tool.1.gz Modified: head/security/yubico-piv-tool/distinfo ============================================================================== --- head/security/yubico-piv-tool/distinfo Fri Jul 10 18:25:49 2020 (r541877) +++ head/security/yubico-piv-tool/distinfo Fri Jul 10 18:35:22 2020 (r541878) @@ -1,3 +1,3 @@ -TIMESTAMP = 1583761646 -SHA256 (yubico-piv-tool-2.0.0.tar.gz) = dae510ea88922720019029c7f0296ddc74bb30573e40d9bc18fc155023859488 -SIZE (yubico-piv-tool-2.0.0.tar.gz) = 1701905 +TIMESTAMP = 1594290754 +SHA256 (yubico-piv-tool-2.1.0.tar.gz) = ae6a51cc20c5aa92c3ff2d18411edc49512564cb824ce28e533755cea16287f5 +SIZE (yubico-piv-tool-2.1.0.tar.gz) = 1315338