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.6.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/00152b6a3cf9
branches:  trunk
changeset: 320105:00152b6a3cf9
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Feb 28 09:06:08 2019 +0000

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

2.6.1:
* Resolved an error in our build infrastructure that broke our Python3 wheels
  for macOS and Linux.

2.6:
* **BACKWARDS INCOMPATIBLE:** Removed
  cryptography.hazmat.primitives.asymmetric.utils.encode_rfc6979_signature
  and
  cryptography.hazmat.primitives.asymmetric.utils.decode_rfc6979_signature,
  which had been deprecated for nearly 4 years. Use
  :func:~cryptography.hazmat.primitives.asymmetric.utils.encode_dss_signature
  and
  :func:~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature
  instead.
* **BACKWARDS INCOMPATIBLE**: Removed cryptography.x509.Certificate.serial,
  which had been deprecated for nearly 3 years. Use
  :attr:~cryptography.x509.Certificate.serial_number instead.
* Updated Windows, macOS, and manylinux1 wheels to be compiled with
  OpenSSL 1.1.1b.
* Added support for :doc:/hazmat/primitives/asymmetric/ed448 when using
  OpenSSL 1.1.1b or newer.
* Added support for :doc:/hazmat/primitives/asymmetric/ed25519 when using
  OpenSSL 1.1.1b or newer.
* :func:~cryptography.hazmat.primitives.serialization.load_ssh_public_key can
  now load ed25519 public keys.
* Add support for easily mapping an object identifier to its elliptic curve
  class via
  :func:~cryptography.hazmat.primitives.asymmetric.ec.get_curve_for_oid.
* Add support for OpenSSL when compiled with the no-engine
  (OPENSSL_NO_ENGINE) flag.

diffstat:

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

diffs (118 lines):

diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography/Makefile
--- a/security/py-cryptography/Makefile Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography/Makefile Thu Feb 28 09:06:08 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.71 2019/01/23 12:21:04 adam Exp $
+# $NetBSD: Makefile,v 1.72 2019/02/28 09:06:08 adam Exp $
 
-DISTNAME=      cryptography-2.5
+DISTNAME=      cryptography-2.6.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/cryptography/}
diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography/PLIST
--- a/security/py-cryptography/PLIST    Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography/PLIST    Thu Feb 28 09:06:08 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.22 2019/01/23 12:21:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.23 2019/02/28 09:06:08 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -56,6 +56,12 @@
 ${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
@@ -116,6 +122,12 @@
 ${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
diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography/distinfo
--- a/security/py-cryptography/distinfo Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography/distinfo Thu Feb 28 09:06:08 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.57 2019/01/23 12:21:04 adam Exp $
+$NetBSD: distinfo,v 1.58 2019/02/28 09:06:08 adam Exp $
 
-SHA1 (cryptography-2.5.tar.gz) = 2ea575820db5aa6a2d6691b514692433bcdec5d9
-RMD160 (cryptography-2.5.tar.gz) = a3d143d2a9623345ff50ce2f37eb3e982264cebc
-SHA512 (cryptography-2.5.tar.gz) = 5e8f8818fcaa8143526006b027107b8afbdc925d40c846701e65b2c7ee02235b7e0918246515520ef2030b1c87bb157d0d403c28ad68c31459d677af7e2d0b3f
-Size (cryptography-2.5.tar.gz) = 487694 bytes
+SHA1 (cryptography-2.6.1.tar.gz) = 0a14cbcdf1bc0262303912762d94cfd645e8c8de
+RMD160 (cryptography-2.6.1.tar.gz) = 2bab285a27bfed6fff8addc2322b8db3687ef2d1
+SHA512 (cryptography-2.6.1.tar.gz) = f14319e24d9dca52e74548cada5b78a6235f089ef875dbff4799e862f94da8b087f1b6e03e84dcef9fc7d7693c4a349c5f0cd54b8535806da777420ce8757d39
+Size (cryptography-2.6.1.tar.gz) = 491580 bytes
diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography_vectors/Makefile
--- a/security/py-cryptography_vectors/Makefile Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography_vectors/Makefile Thu Feb 28 09:06:08 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2019/01/23 12:21:04 adam Exp $
+# $NetBSD: Makefile,v 1.20 2019/02/28 09:06:08 adam Exp $
 
-DISTNAME=      cryptography_vectors-2.5
+DISTNAME=      cryptography_vectors-2.6.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/cryptography_vectors/}
diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography_vectors/PLIST
--- a/security/py-cryptography_vectors/PLIST    Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography_vectors/PLIST    Thu Feb 28 09:06:08 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2019/01/23 12:21:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2019/02/28 09:06:08 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -98,7 +98,19 @@
 ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.txt
 ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigVer.rsp
 ${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/SECP256K1/SigGen.txt
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8-enc.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8-enc.pem
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pkcs8.pem
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pub.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/ed25519-pub.pem
 ${PYSITELIB}/cryptography_vectors/asymmetric/Ed25519/sign.input
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8-enc.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8-enc.pem
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pkcs8.pem
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pub.der
+${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/ed448-pub.pem
 ${PYSITELIB}/cryptography_vectors/asymmetric/Ed448/rfc8032.txt
 ${PYSITELIB}/cryptography_vectors/asymmetric/PEM_Serialization/README.txt
 ${PYSITELIB}/cryptography_vectors/asymmetric/PEM_Serialization/dsa_private_key.pem
diff -r 8d7bfc595e93 -r 00152b6a3cf9 security/py-cryptography_vectors/distinfo
--- a/security/py-cryptography_vectors/distinfo Thu Feb 28 08:56:03 2019 +0000
+++ b/security/py-cryptography_vectors/distinfo Thu Feb 28 09:06:08 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.19 2019/01/23 12:21:04 adam Exp $
+$NetBSD: distinfo,v 1.20 2019/02/28 09:06:08 adam Exp $
 
-SHA1 (cryptography_vectors-2.5.tar.gz) = 5c72aa89b38fac689f7f6482e3efdd4cf3779ea2
-RMD160 (cryptography_vectors-2.5.tar.gz) = 6ce8637cd87d38acacab9526045daa4cc9a1d871
-SHA512 (cryptography_vectors-2.5.tar.gz) = cdd066c597731eb782a3288ddd83ab97b13097360399e8368c7c7c8ba16ff3e6269405885c2ad81aeb0f79d8ff84395aa00639b3453576ac0b57d37d8d36dbf7
-Size (cryptography_vectors-2.5.tar.gz) = 35094063 bytes
+SHA1 (cryptography_vectors-2.6.1.tar.gz) = 5f614d0f3208f23de8ba3cf768b4b4245695bc15
+RMD160 (cryptography_vectors-2.6.1.tar.gz) = 0c6691f98e018b726b73c42caba046f22f1317ed
+SHA512 (cryptography_vectors-2.6.1.tar.gz) = 44d318d5f983955f42791cf182dd80070a87c3c05f7353e204a520588243041fec97367c6fb6d9febcdab0ce7bcf1d135a8e6b44a7387b599752b7c87fc81d9a
+Size (cryptography_vectors-2.6.1.tar.gz) = 35097785 bytes



Home | Main Index | Thread Index | Old Index