Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 21DDE7A322 for ; Mon, 28 Nov 2016 13:15:53 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8D10F855B8; Mon, 28 Nov 2016 13:15:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1EE458559F for ; Mon, 28 Nov 2016 13:15:52 +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 b08gcvngDiPM for ; Mon, 28 Nov 2016 13:15:51 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 538AB84CF5 for ; Mon, 28 Nov 2016 13:15:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A10EFBA6; Mon, 28 Nov 2016 13:15:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480338951160360" MIME-Version: 1.0 Date: Mon, 28 Nov 2016 13:15:51 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-cryptography To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161128131551.4A10EFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1480338951160360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Nov 28 13:15:51 UTC 2016 Modified Files: pkgsrc/security/py-cryptography: Makefile PLIST distinfo Log Message: Updated py-cryptography to 1.6. 1.6 - 2016-11-22 ~~~~~~~~~~~~~~~~ * Deprecated support for OpenSSL 1.0.0. Support will be removed in ``cryptography`` 1.7. * Replaced the Python-based OpenSSL locking callbacks with a C version to fix a potential deadlock that could occur if a garbage collection cycle occurred while inside the lock. * Added support for :class:`~cryptography.hazmat.primitives.hashes.BLAKE2b` and :class:`~cryptography.hazmat.primitives.hashes.BLAKE2s` when using OpenSSL 1.1.0. * Added :attr:`~cryptography.x509.Certificate.signature_algorithm_oid` support to :class:`~cryptography.x509.Certificate`. * Added :attr:`~cryptography.x509.CertificateSigningRequest.signature_algorithm_oid` support to :class:`~cryptography.x509.CertificateSigningRequest`. * Added :attr:`~cryptography.x509.CertificateRevocationList.signature_algorithm_oid` support to :class:`~cryptography.x509.CertificateRevocationList`. * Added support for :class:`~cryptography.hazmat.primitives.kdf.scrypt.Scrypt` when using OpenSSL 1.1.0. * Added a workaround to improve compatibility with Python application bundling tools like ``PyInstaller`` and ``cx_freeze``. * Added support for generating a :meth:`~cryptography.x509.random_serial_number`. * Added support for encoding ``IPv4Network`` and ``IPv6Network`` in X.509 certificates for use with :class:`~cryptography.x509.NameConstraints`. * Added :meth:`~cryptography.x509.Name.public_bytes` to :class:`~cryptography.x509.Name`. * Added :class:`~cryptography.x509.RelativeDistinguishedName` * :class:`~cryptography.x509.DistributionPoint` now accepts :class:`~cryptography.x509.RelativeDistinguishedName` for :attr:`~cryptography.x509.DistributionPoint.relative_name`. Deprecated use of :class:`~cryptography.x509.Name` as :attr:`~cryptography.x509.DistributionPoint.relative_name`. * :class:`~cryptography.x509.Name` now accepts an iterable of :class:`~cryptography.x509.RelativeDistinguishedName`. RDNs can be accessed via the :attr:`~cryptography.x509.Name.rdns` attribute. When constructed with an iterable of :class:`~cryptography.x509.NameAttribute`, each attribute becomes a single-valued RDN. * Added :func:`~cryptography.hazmat.primitives.asymmetric.ec.derive_private_key`. * Added support for signing and verifying RSA, DSA, and ECDSA signatures with :class:`~cryptography.hazmat.primitives.asymmetric.utils.Prehashed` digests. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/security/py-cryptography/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/security/py-cryptography/PLIST cvs rdiff -u -r1.35 -r1.36 pkgsrc/security/py-cryptography/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480338951160360 Content-Disposition: inline Content-Length: 2930 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-cryptography/Makefile diff -u pkgsrc/security/py-cryptography/Makefile:1.47 pkgsrc/security/py-cryptography/Makefile:1.48 --- pkgsrc/security/py-cryptography/Makefile:1.47 Mon Nov 7 10:48:13 2016 +++ pkgsrc/security/py-cryptography/Makefile Mon Nov 28 13:15:51 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.47 2016/11/07 10:48:13 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2016/11/28 13:15:51 wiz Exp $ -DISTNAME= cryptography-1.5.3 +DISTNAME= cryptography-1.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/} Index: pkgsrc/security/py-cryptography/PLIST diff -u pkgsrc/security/py-cryptography/PLIST:1.15 pkgsrc/security/py-cryptography/PLIST:1.16 --- pkgsrc/security/py-cryptography/PLIST:1.15 Mon Sep 12 18:34:31 2016 +++ pkgsrc/security/py-cryptography/PLIST Mon Nov 28 13:15:51 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.15 2016/09/12 18:34:31 wiz Exp $ +@comment $NetBSD: PLIST,v 1.16 2016/11/28 13:15:51 wiz Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -174,6 +174,9 @@ ${PYSITELIB}/cryptography/hazmat/primiti ${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 Index: pkgsrc/security/py-cryptography/distinfo diff -u pkgsrc/security/py-cryptography/distinfo:1.35 pkgsrc/security/py-cryptography/distinfo:1.36 --- pkgsrc/security/py-cryptography/distinfo:1.35 Mon Nov 7 10:48:13 2016 +++ pkgsrc/security/py-cryptography/distinfo Mon Nov 28 13:15:51 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.35 2016/11/07 10:48:13 wiz Exp $ +$NetBSD: distinfo,v 1.36 2016/11/28 13:15:51 wiz Exp $ -SHA1 (cryptography-1.5.3.tar.gz) = 8e9c28362e049abf34a41932c04a9cb280bbad3c -RMD160 (cryptography-1.5.3.tar.gz) = 74f671739dbdd81d88a443abc7041e9c28fdc526 -SHA512 (cryptography-1.5.3.tar.gz) = 0985d22a77821c2b3e78887e17d4046873bf19ff167561e228cfea4cabc02e6ac894b2c72638b7c3414ae5aeb51d1b8bbd67e255ef3dc2043cfcc8ee67bb412f -Size (cryptography-1.5.3.tar.gz) = 400889 bytes +SHA1 (cryptography-1.6.tar.gz) = da131a13f595daa9fa739baffb3fb05760a58fe9 +RMD160 (cryptography-1.6.tar.gz) = 835a2fc36598ef2d2a2aa6c32824e5e81dba7699 +SHA512 (cryptography-1.6.tar.gz) = d88ee2e81414964be461c8401c01f94d03ac7870242d3e90b401ec4b46eab3023a7950425792d50992c15459c6e5789dd859b15adf6e081d672682038d1447ea +Size (cryptography-1.6.tar.gz) = 410073 bytes --_----------=_1480338951160360--