pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security py-cryptography[_vectors]: updated to 2.8



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4581c8fb7e97
branches:  trunk
changeset: 416204:4581c8fb7e97
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Oct 21 11:17:47 2019 +0000

description:
py-cryptography[_vectors]: updated to 2.8

2.8:
* Updated Windows, macOS, and ``manylinux1`` wheels to be compiled with
  OpenSSL 1.1.1d.
* Added support for Python 3.8.
* Added class methods
  :meth:`Poly1305.generate_tag
  <cryptography.hazmat.primitives.poly1305.Poly1305.generate_tag>`
  and
  :meth:`Poly1305.verify_tag
  <cryptography.hazmat.primitives.poly1305.Poly1305.verify_tag>`
  for Poly1305 sign and verify operations.
* Deprecated support for OpenSSL 1.0.1. Support will be removed in
  ``cryptography`` 2.9.
* We now ship ``manylinux2010`` wheels in addition to our ``manylinux1``
  wheels.
* Added support for ``ed25519`` and ``ed448`` keys in the
  :class:`~cryptography.x509.CertificateBuilder`,
  :class:`~cryptography.x509.CertificateSigningRequestBuilder`,
  :class:`~cryptography.x509.CertificateRevocationListBuilder` and
  :class:`~cryptography.x509.ocsp.OCSPResponseBuilder`.
* ``cryptography`` no longer depends on ``asn1crypto``.
* :class:`~cryptography.x509.FreshestCRL` is now allowed as a
  :class:`~cryptography.x509.CertificateRevocationList` extension.

diffstat:

 security/py-cryptography/Makefile         |   4 ++--
 security/py-cryptography/PLIST            |   5 ++++-
 security/py-cryptography/distinfo         |  10 +++++-----
 security/py-cryptography_vectors/Makefile |   4 ++--
 security/py-cryptography_vectors/PLIST    |  10 +++++++++-
 security/py-cryptography_vectors/distinfo |  10 +++++-----
 6 files changed, 27 insertions(+), 16 deletions(-)

diffs (111 lines):

diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography/Makefile
--- a/security/py-cryptography/Makefile Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography/Makefile Mon Oct 21 11:17:47 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.73 2019/05/31 17:28:48 adam Exp $
+# $NetBSD: Makefile,v 1.74 2019/10/21 11:17:47 adam Exp $
 
-DISTNAME=      cryptography-2.7
+DISTNAME=      cryptography-2.8
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/cryptography/}
diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography/PLIST
--- a/security/py-cryptography/PLIST    Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography/PLIST    Mon Oct 21 11:17:47 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.24 2019/05/31 17:28:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.25 2019/10/21 11:17:47 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -20,6 +20,9 @@
 ${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
diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography/distinfo
--- a/security/py-cryptography/distinfo Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography/distinfo Mon Oct 21 11:17:47 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.59 2019/05/31 17:28:48 adam Exp $
+$NetBSD: distinfo,v 1.60 2019/10/21 11:17:47 adam Exp $
 
-SHA1 (cryptography-2.7.tar.gz) = bdb5fa70836858a5bdcedec032bae390f65007fd
-RMD160 (cryptography-2.7.tar.gz) = 23bcb288d8d3495f119985ab1dd634a7ed2f5b40
-SHA512 (cryptography-2.7.tar.gz) = fa420f44b038b6fe1983c6f2c6d830e2668017c26e1e125ad621e37ea627a927ffe64d0e987e0a26dcc260834f2ec817cccd22da03b892190f46cb6e8131a5a8
-Size (cryptography-2.7.tar.gz) = 495877 bytes
+SHA1 (cryptography-2.8.tar.gz) = 94ef5dc1261a4388572ce3ad9af1515691276d2c
+RMD160 (cryptography-2.8.tar.gz) = eab2e76f5057cfdb76faf9175eddddbd43331259
+SHA512 (cryptography-2.8.tar.gz) = bf3ca44123c693b0602be19445925f9efebd46c469909e47b7907d57141fb6bd99268c33e1fe3f42a08ab8b4edd4f98f21b6a682f530352313334dfd31ba91e7
+Size (cryptography-2.8.tar.gz) = 504516 bytes
diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography_vectors/Makefile
--- a/security/py-cryptography_vectors/Makefile Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography_vectors/Makefile Mon Oct 21 11:17:47 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2019/05/31 17:28:48 adam Exp $
+# $NetBSD: Makefile,v 1.22 2019/10/21 11:17:47 adam Exp $
 
-DISTNAME=      cryptography_vectors-2.7
+DISTNAME=      cryptography_vectors-2.8
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/cryptography_vectors/}
diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography_vectors/PLIST
--- a/security/py-cryptography_vectors/PLIST    Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography_vectors/PLIST    Mon Oct 21 11:17:47 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2019/05/31 17:28:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.13 2019/10/21 11:17:47 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -32,6 +32,8 @@
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.2048.der
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.3072.der
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa_public_key.der
+${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa_public_key_invalid_bit_string.der
+${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa_public_key_no_params.der
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/ec_private_key.der
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/ec_private_key_encrypted.der
 ${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/ec_public_key.der
@@ -2206,6 +2208,11 @@
 ${PYSITELIB}/cryptography_vectors/x509/department-of-state-root.pem
 ${PYSITELIB}/cryptography_vectors/x509/e-trust.ru.der
 ${PYSITELIB}/cryptography_vectors/x509/ecdsa_root.pem
+${PYSITELIB}/cryptography_vectors/x509/ed25519/ed25519-rfc8410.pem
+${PYSITELIB}/cryptography_vectors/x509/ed25519/root-ed25519.pem
+${PYSITELIB}/cryptography_vectors/x509/ed25519/server-ed25519-cert.pem
+${PYSITELIB}/cryptography_vectors/x509/ed448/root-ed448.pem
+${PYSITELIB}/cryptography_vectors/x509/ed448/server-ed448-cert.pem
 ${PYSITELIB}/cryptography_vectors/x509/letsencryptx3.pem
 ${PYSITELIB}/cryptography_vectors/x509/ocsp/req-ext-nonce.der
 ${PYSITELIB}/cryptography_vectors/x509/ocsp/req-invalid-hash-alg.der
@@ -2221,6 +2228,7 @@
 ${PYSITELIB}/cryptography_vectors/x509/ocsp/resp-unauthorized.der
 ${PYSITELIB}/cryptography_vectors/x509/rapidssl_sha256_ca_g3.pem
 ${PYSITELIB}/cryptography_vectors/x509/requests/basic_constraints.pem
+${PYSITELIB}/cryptography_vectors/x509/requests/challenge.pem
 ${PYSITELIB}/cryptography_vectors/x509/requests/dsa_sha1.der
 ${PYSITELIB}/cryptography_vectors/x509/requests/dsa_sha1.pem
 ${PYSITELIB}/cryptography_vectors/x509/requests/ec_sha256.der
diff -r 0fd63aa3dfd1 -r 4581c8fb7e97 security/py-cryptography_vectors/distinfo
--- a/security/py-cryptography_vectors/distinfo Mon Oct 21 11:14:44 2019 +0000
+++ b/security/py-cryptography_vectors/distinfo Mon Oct 21 11:17:47 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.21 2019/05/31 17:28:48 adam Exp $
+$NetBSD: distinfo,v 1.22 2019/10/21 11:17:47 adam Exp $
 
-SHA1 (cryptography_vectors-2.7.tar.gz) = 47579e1136d97736c0498dbaba3349ef9cd9845e
-RMD160 (cryptography_vectors-2.7.tar.gz) = 9bc8af314e633814453c9785ece4a6855ec78dc0
-SHA512 (cryptography_vectors-2.7.tar.gz) = c68950ca1cf2ac261acdeeb2c95f22b3338d0ee3f1064d6b0e0df36e0d22bb461fb6013c9da0097e7901c7e600e0067213a854359e586efc1a9fb082bd8e4b4f
-Size (cryptography_vectors-2.7.tar.gz) = 35098743 bytes
+SHA1 (cryptography_vectors-2.8.tar.gz) = cd7a609e2801fc9a0c7ec89cb0af8c0aa21c3df1
+RMD160 (cryptography_vectors-2.8.tar.gz) = f3a4dcd118b4d00dd812fe2df0e7588f77107ea9
+SHA512 (cryptography_vectors-2.8.tar.gz) = d328082d3a65b8036d396172d7e42c753c842e9310850a77c6ccd99c9905d48bbc3e3319d216013c1370b8439f0f8056749ae94b1abf9a5b7088435acdeed7fb
+Size (cryptography_vectors-2.8.tar.gz) = 35102030 bytes



Home | Main Index | Thread Index | Old Index