Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=hMVprQXW; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=c1xy8axL Received: by mail.netbsd.org (Postfix, from userid 605) id 0D94884E6F; Sun, 14 Apr 2024 12:52:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713099131; bh=Oc9veRpY6aGEa4NN10R7VPxeKhOfuo+WTq+oHzKpuzk=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=hMVprQXW9tVYAA1MFn42AdSMI7LiYcgFhIaiagtwD91d+B/o2RYgLWaLVYOh5pdz4 tneynDn5f9zY9EATf7E5wNI4/ZvTPcUhnGUoT3sxsQSwRiZ4sH2TDJDz2g/mtRMnYt wRuuigfVFXyPFHWGJ7WuDhSbfLiMwqDxRInl3nMs= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0053E84D4C for ; Sun, 14 Apr 2024 12:52:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id t6ovQEfRNOvc for ; Sun, 14 Apr 2024 12:52:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 527D284D1B for ; Sun, 14 Apr 2024 12:52:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713099129; bh=Oc9veRpY6aGEa4NN10R7VPxeKhOfuo+WTq+oHzKpuzk=; h=Date:From:Subject:To:Reply-To; b=c1xy8axL/GP0kOcpVThAkG6pgaELh1qhdcabWQy9+A8ecPJNaW+QfzGJF1zk1WE/j VCptwaXAd0p797YR/lU1XRXNiFibaqUJTurvTqDlykNTrqgvkYXV/ATxhIebamiLTR 4KFFPbST0EzeZECc6MRJk9Ltsa8HAr8dXGRtJCe4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 469D4FA2C; Sun, 14 Apr 2024 12:52:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1713099129136920" MIME-Version: 1.0 Date: Sun, 14 Apr 2024 12:52:09 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/security/pkcs11-helper To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240414125209.469D4FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1713099129136920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: gdt Date: Sun Apr 14 12:52:09 UTC 2024 Modified Files: pkgsrc/security/pkcs11-helper: Makefile distinfo Log Message: security/pkcs11-helper: Update to 1.30.0 2023-12-01 - Version 1.30.0 * core: add dynamic loader provider attribute, thanks to Marc Becker. * openssl: support DSA in libressl-3.5.0, thanks to Fabrice Fontaine. * openssl: fix openssl_ex_data_dup prototype, thanks to Sam James for reporting. 2022-04-21 - Version 1.29.0 * build: do not fail if slot evnets are disabled, thanks to Fabrice Fontaine. * core: do not assume standard objects supported by provider. * openssl: set back key into EVP for openssl-3 to work, thanks to apollo13. 2021-12-31 - Version 1.28 * build: openssl: remove RSA_SSLV23_PADDING constant usage due to openssl-3 compatibility, thanks to t0b3. * build: nss: use nss pkcs11.h, thanks to Fabrice Fontaine. * build: windows: checksum in PE, thanks to Simon Rozman. * build: windows: support openssl-1.1.1, thanks to Lev Stipakov. * mbed: require >=mbedtls-2, mbed dropped polarssl compatibility, thanks to Uipko Berghuis * certificate: add methods accept full mechanism, thanks to Selva Nair. * core: load provider library as private. * core: add pkcs11h_getProperty, pkcs11h_setProperty to support adding properties without breaking API. * core: add pkcs11h_initializeProvider, pkcs11h_registerProvider, pkcs11h_setProviderProperty, pkcs11h_setProviderPropertyByName to support adding properties without breaking API thanks to Михалицын Петр. * core: add initialization arguments property, thanks for Михалицын Петр. * core: add PKCS11H_PROVIDER_PROPERTY_PROVIDER_DESTRUCT_HOOK. * session: respect login required token flag. * certificate: respect always authenticate flag. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/security/pkcs11-helper/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/pkcs11-helper/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1713099129136920 Content-Disposition: inline Content-Length: 1766 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/pkcs11-helper/Makefile diff -u pkgsrc/security/pkcs11-helper/Makefile:1.37 pkgsrc/security/pkcs11-helper/Makefile:1.38 --- pkgsrc/security/pkcs11-helper/Makefile:1.37 Wed Nov 8 13:20:49 2023 +++ pkgsrc/security/pkcs11-helper/Makefile Sun Apr 14 12:52:09 2024 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.37 2023/11/08 13:20:49 wiz Exp $ +# $NetBSD: Makefile,v 1.38 2024/04/14 12:52:09 gdt Exp $ -DISTNAME= pkcs11-helper-1.27.0 -PKGREVISION= 10 +DISTNAME= pkcs11-helper-1.30.0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=OpenSC/} -GITHUB_RELEASE= ${DISTNAME:R} +GITHUB_RELEASE= ${DISTNAME} EXTRACT_SUFX= .tar.bz2 MAINTAINER= gdt@NetBSD.org Index: pkgsrc/security/pkcs11-helper/distinfo diff -u pkgsrc/security/pkcs11-helper/distinfo:1.7 pkgsrc/security/pkcs11-helper/distinfo:1.8 --- pkgsrc/security/pkcs11-helper/distinfo:1.7 Tue Oct 26 11:17:38 2021 +++ pkgsrc/security/pkcs11-helper/distinfo Sun Apr 14 12:52:09 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2021/10/26 11:17:38 nia Exp $ +$NetBSD: distinfo,v 1.8 2024/04/14 12:52:09 gdt Exp $ -BLAKE2s (pkcs11-helper-1.27.0.tar.bz2) = 80529710ded5b83ac36649ab16602546ff4a63bc26e21c3b3f2e72bb6c6a7a80 -SHA512 (pkcs11-helper-1.27.0.tar.bz2) = 5799342cb755dae8b7ba0880d652e9d4b4f1e52a74043015e1185e1e059326cb2689bb51957db98060ac2257dee34e2f047dcf3d52ad59fd49b91fedcfc5332b -Size (pkcs11-helper-1.27.0.tar.bz2) = 422425 bytes +BLAKE2s (pkcs11-helper-1.30.0.tar.bz2) = 5b9bda47fa65eb9a280d569cde20a8cf0ae60c417d9e394cf757d22c1a407f66 +SHA512 (pkcs11-helper-1.30.0.tar.bz2) = 19fba76e41210cc17f9efa4501d0214d4a5c777ab7b2671888fd280b150bae4a6b190c7f47fb783015f9aa40d409fd6087264e531d6f28d0bed4293dcbf8bdd5 +Size (pkcs11-helper-1.30.0.tar.bz2) = 423196 bytes --_----------=_1713099129136920--