Received: by mail.netbsd.org (Postfix, from userid 605) id A7CBD84D26; Wed, 19 Oct 2022 12:38:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D2D7384D0C for ; Wed, 19 Oct 2022 12:38:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id fVYawYtHEKBH for ; Wed, 19 Oct 2022 12:38:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 38AD584C86 for ; Wed, 19 Oct 2022 12:38:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BB6DFA90; Wed, 19 Oct 2022 12:38:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16661831072930" MIME-Version: 1.0 Date: Wed, 19 Oct 2022 12:38:27 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20221019123827.2BB6DFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16661831072930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Oct 19 12:38:27 UTC 2022 Modified Files: pkgsrc/security: Makefile Added Files: pkgsrc/security/py-cryptography-norust: DESCR Makefile PLIST distinfo Log Message: Re-import the last Rust-free version of py-cryptography for ARMv6 To generate a diff of this commit: cvs rdiff -u -r1.874 -r1.875 pkgsrc/security/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/security/py-cryptography-norust/DESCR \ pkgsrc/security/py-cryptography-norust/Makefile \ pkgsrc/security/py-cryptography-norust/PLIST \ pkgsrc/security/py-cryptography-norust/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16661831072930 Content-Disposition: inline Content-Length: 19049 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/Makefile diff -u pkgsrc/security/Makefile:1.874 pkgsrc/security/Makefile:1.875 --- pkgsrc/security/Makefile:1.874 Sat Oct 8 11:30:26 2022 +++ pkgsrc/security/Makefile Wed Oct 19 12:38:26 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.874 2022/10/08 11:30:26 bsiegert Exp $ +# $NetBSD: Makefile,v 1.875 2022/10/19 12:38:26 nia Exp $ # COMMENT= Security and cryptography tools and libraries @@ -442,6 +442,7 @@ SUBDIR+= py-crcmod SUBDIR+= py-cryptkit SUBDIR+= py-cryptodome SUBDIR+= py-cryptography +SUBDIR+= py-cryptography-norust SUBDIR+= py-cryptography_vectors SUBDIR+= py-cybox SUBDIR+= py-cyclonedx-bom Added files: Index: pkgsrc/security/py-cryptography-norust/DESCR diff -u /dev/null pkgsrc/security/py-cryptography-norust/DESCR:1.1 --- /dev/null Wed Oct 19 12:38:27 2022 +++ pkgsrc/security/py-cryptography-norust/DESCR Wed Oct 19 12:38:26 2022 @@ -0,0 +1,10 @@ +cryptography is a package designed to expose cryptographic recipes +and primitives to Python developers. Our goal is for it to be your +"cryptographic standard library". + +cryptography includes both high level recipes, and low level +interfaces to common cryptographic algorithms such as symmetric +ciphers, message digests and key derivation functions. + +This legacy version is provided for platforms without a functioning +Rust compiler, e.g. ARMv6 and Alpha. Index: pkgsrc/security/py-cryptography-norust/Makefile diff -u /dev/null pkgsrc/security/py-cryptography-norust/Makefile:1.1 --- /dev/null Wed Oct 19 12:38:27 2022 +++ pkgsrc/security/py-cryptography-norust/Makefile Wed Oct 19 12:38:26 2022 @@ -0,0 +1,35 @@ +# $NetBSD: Makefile,v 1.1 2022/10/19 12:38:26 nia Exp $ + +DISTNAME= cryptography-3.3.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= security python +MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/pyca/cryptography +COMMENT= Cryptographic recipes and primitives for Python (pre-Rust version) +LICENSE= apache-2.0 OR modified-bsd + +DEPENDS+= ${PYPKGPREFIX}-cffi>=1.11.4:../../devel/py-cffi +DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six +TEST_DEPENDS+= ${PYPKGPREFIX}-cryptography_vectors-[0-9]*:../../security/py-cryptography_vectors +TEST_DEPENDS+= ${PYPKGPREFIX}-iso8601-[0-9]*:../../time/py-iso8601 +TEST_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend +TEST_DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz + +PYTHON_VERSIONED_DEPENDENCIES= test:test +PYTHON_VERSIONED_DEPENDENCIES+= hypothesis:test + +.include "../../lang/python/pyversion.mk" +.if ${_PYTHON_VERSION} == 27 +DEPENDS+= ${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34 +DEPENDS+= ${PYPKGPREFIX}-ipaddress-[0-9]*:../../net/py-ipaddress +.endif + +do-test: + cd ${WRKSRC} && pytest-${PYVERSSUFFIX} + +.include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/py-cryptography-norust/PLIST diff -u /dev/null pkgsrc/security/py-cryptography-norust/PLIST:1.1 --- /dev/null Wed Oct 19 12:38:27 2022 +++ pkgsrc/security/py-cryptography-norust/PLIST Wed Oct 19 12:38:26 2022 @@ -0,0 +1,260 @@ +@comment $NetBSD: PLIST,v 1.1 2022/10/19 12:38:26 nia Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/cryptography/__about__.py +${PYSITELIB}/cryptography/__about__.pyc +${PYSITELIB}/cryptography/__about__.pyo +${PYSITELIB}/cryptography/__init__.py +${PYSITELIB}/cryptography/__init__.pyc +${PYSITELIB}/cryptography/__init__.pyo +${PYSITELIB}/cryptography/exceptions.py +${PYSITELIB}/cryptography/exceptions.pyc +${PYSITELIB}/cryptography/exceptions.pyo +${PYSITELIB}/cryptography/fernet.py +${PYSITELIB}/cryptography/fernet.pyc +${PYSITELIB}/cryptography/fernet.pyo +${PYSITELIB}/cryptography/hazmat/__init__.py +${PYSITELIB}/cryptography/hazmat/__init__.pyc +${PYSITELIB}/cryptography/hazmat/__init__.pyo +${PYSITELIB}/cryptography/hazmat/_der.py +${PYSITELIB}/cryptography/hazmat/_der.pyc +${PYSITELIB}/cryptography/hazmat/_der.pyo +${PYSITELIB}/cryptography/hazmat/_oid.py +${PYSITELIB}/cryptography/hazmat/_oid.pyc +${PYSITELIB}/cryptography/hazmat/_oid.pyo +${PYSITELIB}/cryptography/hazmat/backends/__init__.py +${PYSITELIB}/cryptography/hazmat/backends/__init__.pyc +${PYSITELIB}/cryptography/hazmat/backends/__init__.pyo +${PYSITELIB}/cryptography/hazmat/backends/interfaces.py +${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyc +${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/aead.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/aead.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/aead.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/decode_asn1.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/decode_asn1.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/decode_asn1.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/dh.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/dh.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/dh.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/dsa.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ec.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed25519.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ed448.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/encode_asn1.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/hashes.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/hashes.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/hashes.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/hmac.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/ocsp.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/ocsp.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/ocsp.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/poly1305.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/poly1305.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/poly1305.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/rsa.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/utils.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/utils.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/utils.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/x25519.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/x25519.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/x25519.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/x448.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/x448.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/x448.pyo +${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.py +${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyc +${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyo +${PYSITELIB}/cryptography/hazmat/bindings/__init__.py +${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyc +${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyo +${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.abi3.so +${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.so +${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.abi3.so +${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.so +${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.py +${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyc +${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyo +${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.py +${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyc +${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyo +${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.py +${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyc +${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyo +${PYSITELIB}/cryptography/hazmat/primitives/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dh.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dh.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dh.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/dsa.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ec.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed25519.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/ed448.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/padding.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/rsa.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/rsa.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/rsa.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/utils.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/utils.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/utils.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x25519.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x25519.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x25519.pyo +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x448.py +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x448.pyc +${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/x448.pyo +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/aead.py +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/aead.pyc +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/aead.pyo +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/algorithms.py +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/algorithms.pyc +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/algorithms.pyo +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/base.py +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/base.pyc +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/base.pyo +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/modes.py +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/modes.pyc +${PYSITELIB}/cryptography/hazmat/primitives/ciphers/modes.pyo +${PYSITELIB}/cryptography/hazmat/primitives/cmac.py +${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyc +${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyo +${PYSITELIB}/cryptography/hazmat/primitives/constant_time.py +${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyc +${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyo +${PYSITELIB}/cryptography/hazmat/primitives/hashes.py +${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyc +${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyo +${PYSITELIB}/cryptography/hazmat/primitives/hmac.py +${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyc +${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyo +${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.py +${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyc +${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyo +${PYSITELIB}/cryptography/hazmat/primitives/keywrap.py +${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyc +${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyo +${PYSITELIB}/cryptography/hazmat/primitives/padding.py +${PYSITELIB}/cryptography/hazmat/primitives/padding.pyc +${PYSITELIB}/cryptography/hazmat/primitives/padding.pyo +${PYSITELIB}/cryptography/hazmat/primitives/poly1305.py +${PYSITELIB}/cryptography/hazmat/primitives/poly1305.pyc +${PYSITELIB}/cryptography/hazmat/primitives/poly1305.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization/base.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization/base.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization/base.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs12.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs12.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs12.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs7.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs7.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization/pkcs7.pyo +${PYSITELIB}/cryptography/hazmat/primitives/serialization/ssh.py +${PYSITELIB}/cryptography/hazmat/primitives/serialization/ssh.pyc +${PYSITELIB}/cryptography/hazmat/primitives/serialization/ssh.pyo +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.py +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyc +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyo +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.py +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyc +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyo +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.py +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.pyc +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.pyo +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.py +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyc +${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyo +${PYSITELIB}/cryptography/utils.py +${PYSITELIB}/cryptography/utils.pyc +${PYSITELIB}/cryptography/utils.pyo +${PYSITELIB}/cryptography/x509/__init__.py +${PYSITELIB}/cryptography/x509/__init__.pyc +${PYSITELIB}/cryptography/x509/__init__.pyo +${PYSITELIB}/cryptography/x509/base.py +${PYSITELIB}/cryptography/x509/base.pyc +${PYSITELIB}/cryptography/x509/base.pyo +${PYSITELIB}/cryptography/x509/certificate_transparency.py +${PYSITELIB}/cryptography/x509/certificate_transparency.pyc +${PYSITELIB}/cryptography/x509/certificate_transparency.pyo +${PYSITELIB}/cryptography/x509/extensions.py +${PYSITELIB}/cryptography/x509/extensions.pyc +${PYSITELIB}/cryptography/x509/extensions.pyo +${PYSITELIB}/cryptography/x509/general_name.py +${PYSITELIB}/cryptography/x509/general_name.pyc +${PYSITELIB}/cryptography/x509/general_name.pyo +${PYSITELIB}/cryptography/x509/name.py +${PYSITELIB}/cryptography/x509/name.pyc +${PYSITELIB}/cryptography/x509/name.pyo +${PYSITELIB}/cryptography/x509/ocsp.py +${PYSITELIB}/cryptography/x509/ocsp.pyc +${PYSITELIB}/cryptography/x509/ocsp.pyo +${PYSITELIB}/cryptography/x509/oid.py +${PYSITELIB}/cryptography/x509/oid.pyc +${PYSITELIB}/cryptography/x509/oid.pyo Index: pkgsrc/security/py-cryptography-norust/distinfo diff -u /dev/null pkgsrc/security/py-cryptography-norust/distinfo:1.1 --- /dev/null Wed Oct 19 12:38:27 2022 +++ pkgsrc/security/py-cryptography-norust/distinfo Wed Oct 19 12:38:26 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/10/19 12:38:26 nia Exp $ + +BLAKE2s (cryptography-3.3.2.tar.gz) = 8ff42f679d01215069547cd6ca98b9f9f828ef7d85397b5d7af260c5a67718f1 +SHA512 (cryptography-3.3.2.tar.gz) = 55f6ee13342b3209b1fcb310f4c4d33d22856ee785cb2347e6ad36c34e9b42f6e0d5bece8e458b09663a5b78e34c4567fe7a211b51ca71f55ccc93e3f62dc5e4 +Size (cryptography-3.3.2.tar.gz) = 539883 bytes --_----------=_16661831072930--