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 26FD67A321 for ; Mon, 19 Dec 2016 08:57:53 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C71BE855AC; Mon, 19 Dec 2016 08:57:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5736884CFD for ; Mon, 19 Dec 2016 08:57:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id oZOxJF7wfLV0 for ; Mon, 19 Dec 2016 08:57: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 C007B85586 for ; Mon, 19 Dec 2016 08:57:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5FDBFBA6; Mon, 19 Dec 2016 08:57:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1482137871183270" MIME-Version: 1.0 Date: Mon, 19 Dec 2016 08:57: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: <20161219085751.B5FDBFBA6@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. --_----------=_1482137871183270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Dec 19 08:57:51 UTC 2016 Modified Files: pkgsrc/security/py-cryptography: Makefile PLIST distinfo Log Message: Updated py-cryptography to 1.7.1. 1.7.1 - 2016-12-13 ~~~~~~~~~~~~~~~~~~ * Fixed a regression in ``int_from_bytes`` where it failed to accept ``bytearray``. 1.7 - 2016-12-12 ~~~~~~~~~~~~~~~~ * Support for OpenSSL 1.0.0 has been removed. Users on older version of OpenSSL will need to upgrade. * Added support for Diffie-Hellman key exchange using :meth:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKeyWithSerialization.exchange` * The OS random engine for OpenSSL has been rewritten to improve compatibility with embedded Python and other edge cases. More information about this change can be found in the `pull request `_. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/security/py-cryptography/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/security/py-cryptography/PLIST cvs rdiff -u -r1.36 -r1.37 pkgsrc/security/py-cryptography/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1482137871183270 Content-Disposition: inline Content-Length: 2937 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.48 pkgsrc/security/py-cryptography/Makefile:1.49 --- pkgsrc/security/py-cryptography/Makefile:1.48 Mon Nov 28 13:15:51 2016 +++ pkgsrc/security/py-cryptography/Makefile Mon Dec 19 08:57:51 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.48 2016/11/28 13:15:51 wiz Exp $ +# $NetBSD: Makefile,v 1.49 2016/12/19 08:57:51 wiz Exp $ -DISTNAME= cryptography-1.6 +DISTNAME= cryptography-1.7.1 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.16 pkgsrc/security/py-cryptography/PLIST:1.17 --- pkgsrc/security/py-cryptography/PLIST:1.16 Mon Nov 28 13:15:51 2016 +++ pkgsrc/security/py-cryptography/PLIST Mon Dec 19 08:57:51 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2016/11/28 13:15:51 wiz Exp $ +@comment $NetBSD: PLIST,v 1.17 2016/12/19 08:57:51 wiz Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -60,6 +60,9 @@ ${PYSITELIB}/cryptography/hazmat/backend ${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 Index: pkgsrc/security/py-cryptography/distinfo diff -u pkgsrc/security/py-cryptography/distinfo:1.36 pkgsrc/security/py-cryptography/distinfo:1.37 --- pkgsrc/security/py-cryptography/distinfo:1.36 Mon Nov 28 13:15:51 2016 +++ pkgsrc/security/py-cryptography/distinfo Mon Dec 19 08:57:51 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.36 2016/11/28 13:15:51 wiz Exp $ +$NetBSD: distinfo,v 1.37 2016/12/19 08:57:51 wiz Exp $ -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 +SHA1 (cryptography-1.7.1.tar.gz) = 6ef868de80378546a42b3b49995d7017d33f03e5 +RMD160 (cryptography-1.7.1.tar.gz) = c4081bfbe78afb705e97e8b7d1781169f11ccc9b +SHA512 (cryptography-1.7.1.tar.gz) = fb88b0ee9e314526fcdbb6d35da409b7335c7408a69d2350c58379471d2b9d76021010955629cf776d26312f22d4f8aa3f135955a19dfbff9d602176c9bbfd40 +Size (cryptography-1.7.1.tar.gz) = 420673 bytes --_----------=_1482137871183270--