Mon Jun 19 21:03:19 2017 UTC ()
Updated py-cryptography to 1.9.

1.9 - 2017-05-29
~~~~~~~~~~~~~~~~

* **BACKWARDS INCOMPATIBLE:** Elliptic Curve signature verification no longer
  returns ``True`` on success. This brings it in line with the interface's
  documentation, and our intent. The correct way to use
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.verify`
  has always been to check whether or not
  :class:`~cryptography.exceptions.InvalidSignature` was raised.
* **BACKWARDS INCOMPATIBLE:** Dropped support for macOS 10.7 and 10.8.
* **BACKWARDS INCOMPATIBLE:** The minimum supported PyPy version is now 5.3.
* Python 3.3 support has been deprecated, and will be removed in the next
  ``cryptography`` release.
* Add support for providing ``tag`` during
  :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` finalization via
  :meth:`~cryptography.hazmat.primitives.ciphers.AEADDecryptionContext.finalize_with_tag`.
* Fixed an issue preventing ``cryptography`` from compiling against
  LibreSSL 2.5.x.
* Added
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.key_size`
  and
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.key_size`
  as convenience methods for determining the bit size of a secret scalar for
  the curve.
* Accessing an unrecognized extension marked critical on an X.509 object will
  no longer raise an ``UnsupportedExtension`` exception, instead an
  :class:`~cryptography.x509.UnrecognizedExtension` object will be returned.
  This behavior was based on a poor reading of the RFC, unknown critical
  extensions only need to be rejected on certificate verification.
* The CommonCrypto backend has been removed.
* MultiBackend has been removed.
* ``Whirlpool`` and ``RIPEMD160`` have been deprecated.


(wiz)
diff -r1.55 -r1.56 pkgsrc/security/py-cryptography/Makefile
diff -r1.17 -r1.18 pkgsrc/security/py-cryptography/PLIST
diff -r1.41 -r1.42 pkgsrc/security/py-cryptography/distinfo

cvs diff -r1.55 -r1.56 pkgsrc/security/py-cryptography/Makefile (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography/Makefile 2017/05/29 13:22:31 1.55
+++ pkgsrc/security/py-cryptography/Makefile 2017/06/19 21:03:19 1.56
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.55 2017/05/29 13:22:31 wiz Exp $ 1# $NetBSD: Makefile,v 1.56 2017/06/19 21:03:19 wiz Exp $
2 2
3DISTNAME= cryptography-1.8.2 3DISTNAME= cryptography-1.9
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= security python 5CATEGORIES= security python
6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://pypi.python.org/pypi/cryptography/ 9HOMEPAGE= https://pypi.python.org/pypi/cryptography/
10COMMENT= Cryptographic recipes and primitives for Python 10COMMENT= Cryptographic recipes and primitives for Python
11LICENSE= apache-2.0 OR modified-bsd 11LICENSE= apache-2.0 OR modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-asn1crypto-[0-9]*:../../security/py-asn1crypto 13DEPENDS+= ${PYPKGPREFIX}-asn1crypto-[0-9]*:../../security/py-asn1crypto
14DEPENDS+= ${PYPKGPREFIX}-cffi>=1.8.2:../../devel/py-cffi 14DEPENDS+= ${PYPKGPREFIX}-cffi>=1.8.2:../../devel/py-cffi
15DEPENDS+= ${PYPKGPREFIX}-cparser>=2.10:../../devel/py-cparser 15DEPENDS+= ${PYPKGPREFIX}-cparser>=2.10:../../devel/py-cparser
16DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna 16DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna

cvs diff -r1.17 -r1.18 pkgsrc/security/py-cryptography/PLIST (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography/PLIST 2016/12/19 08:57:51 1.17
+++ pkgsrc/security/py-cryptography/PLIST 2017/06/19 21:03:19 1.18
@@ -1,60 +1,42 @@ @@ -1,60 +1,42 @@
1@comment $NetBSD: PLIST,v 1.17 2016/12/19 08:57:51 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.18 2017/06/19 21:03:19 wiz Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
7${PYSITELIB}/${EGG_INFODIR}/requires.txt 7${PYSITELIB}/${EGG_INFODIR}/requires.txt
8${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${EGG_INFODIR}/top_level.txt
9${PYSITELIB}/cryptography/__about__.py 9${PYSITELIB}/cryptography/__about__.py
10${PYSITELIB}/cryptography/__about__.pyc 10${PYSITELIB}/cryptography/__about__.pyc
11${PYSITELIB}/cryptography/__about__.pyo 11${PYSITELIB}/cryptography/__about__.pyo
12${PYSITELIB}/cryptography/__init__.py 12${PYSITELIB}/cryptography/__init__.py
13${PYSITELIB}/cryptography/__init__.pyc 13${PYSITELIB}/cryptography/__init__.pyc
14${PYSITELIB}/cryptography/__init__.pyo 14${PYSITELIB}/cryptography/__init__.pyo
15${PYSITELIB}/cryptography/exceptions.py 15${PYSITELIB}/cryptography/exceptions.py
16${PYSITELIB}/cryptography/exceptions.pyc 16${PYSITELIB}/cryptography/exceptions.pyc
17${PYSITELIB}/cryptography/exceptions.pyo 17${PYSITELIB}/cryptography/exceptions.pyo
18${PYSITELIB}/cryptography/fernet.py 18${PYSITELIB}/cryptography/fernet.py
19${PYSITELIB}/cryptography/fernet.pyc 19${PYSITELIB}/cryptography/fernet.pyc
20${PYSITELIB}/cryptography/fernet.pyo 20${PYSITELIB}/cryptography/fernet.pyo
21${PYSITELIB}/cryptography/hazmat/__init__.py 21${PYSITELIB}/cryptography/hazmat/__init__.py
22${PYSITELIB}/cryptography/hazmat/__init__.pyc 22${PYSITELIB}/cryptography/hazmat/__init__.pyc
23${PYSITELIB}/cryptography/hazmat/__init__.pyo 23${PYSITELIB}/cryptography/hazmat/__init__.pyo
24${PYSITELIB}/cryptography/hazmat/backends/__init__.py 24${PYSITELIB}/cryptography/hazmat/backends/__init__.py
25${PYSITELIB}/cryptography/hazmat/backends/__init__.pyc 25${PYSITELIB}/cryptography/hazmat/backends/__init__.pyc
26${PYSITELIB}/cryptography/hazmat/backends/__init__.pyo 26${PYSITELIB}/cryptography/hazmat/backends/__init__.pyo
27${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/__init__.py 
28${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/__init__.pyc 
29${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/__init__.pyo 
30${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.py 
31${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.pyc 
32${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/backend.pyo 
33${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.py 
34${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.pyc 
35${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/ciphers.pyo 
36${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.py 
37${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.pyc 
38${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hashes.pyo 
39${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.py 
40${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.pyc 
41${PYSITELIB}/cryptography/hazmat/backends/commoncrypto/hmac.pyo 
42${PYSITELIB}/cryptography/hazmat/backends/interfaces.py 27${PYSITELIB}/cryptography/hazmat/backends/interfaces.py
43${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyc 28${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyc
44${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyo 29${PYSITELIB}/cryptography/hazmat/backends/interfaces.pyo
45${PYSITELIB}/cryptography/hazmat/backends/multibackend.py 
46${PYSITELIB}/cryptography/hazmat/backends/multibackend.pyc 
47${PYSITELIB}/cryptography/hazmat/backends/multibackend.pyo 
48${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.py 30${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.py
49${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyc 31${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyc
50${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyo 32${PYSITELIB}/cryptography/hazmat/backends/openssl/__init__.pyo
51${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.py 33${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.py
52${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyc 34${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyc
53${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyo 35${PYSITELIB}/cryptography/hazmat/backends/openssl/backend.pyo
54${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.py 36${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.py
55${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyc 37${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyc
56${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyo 38${PYSITELIB}/cryptography/hazmat/backends/openssl/ciphers.pyo
57${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.py 39${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.py
58${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyc 40${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyc
59${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyo 41${PYSITELIB}/cryptography/hazmat/backends/openssl/cmac.pyo
60${PYSITELIB}/cryptography/hazmat/backends/openssl/decode_asn1.py 42${PYSITELIB}/cryptography/hazmat/backends/openssl/decode_asn1.py
@@ -86,32 +68,26 @@ ${PYSITELIB}/cryptography/hazmat/backend @@ -86,32 +68,26 @@ ${PYSITELIB}/cryptography/hazmat/backend
86${PYSITELIB}/cryptography/hazmat/backends/openssl/utils.pyo 68${PYSITELIB}/cryptography/hazmat/backends/openssl/utils.pyo
87${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.py 69${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.py
88${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyc 70${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyc
89${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyo 71${PYSITELIB}/cryptography/hazmat/backends/openssl/x509.pyo
90${PYSITELIB}/cryptography/hazmat/bindings/__init__.py 72${PYSITELIB}/cryptography/hazmat/bindings/__init__.py
91${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyc 73${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyc
92${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyo 74${PYSITELIB}/cryptography/hazmat/bindings/__init__.pyo
93${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_constant_time.so 75${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_constant_time.so
94${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.so 76${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.so
95${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.so 77${PLIST.py2x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.so
96${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_constant_time.abi3.so 78${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_constant_time.abi3.so
97${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.abi3.so 79${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_openssl.abi3.so
98${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.abi3.so 80${PLIST.py3x}${PYSITELIB}/cryptography/hazmat/bindings/_padding.abi3.so
99${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/__init__.py 
100${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/__init__.pyc 
101${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/__init__.pyo 
102${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.py 
103${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.pyc 
104${PYSITELIB}/cryptography/hazmat/bindings/commoncrypto/binding.pyo 
105${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.py 81${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.py
106${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyc 82${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyc
107${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyo 83${PYSITELIB}/cryptography/hazmat/bindings/openssl/__init__.pyo
108${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.py 84${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.py
109${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyc 85${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyc
110${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyo 86${PYSITELIB}/cryptography/hazmat/bindings/openssl/_conditional.pyo
111${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.py 87${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.py
112${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyc 88${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyc
113${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyo 89${PYSITELIB}/cryptography/hazmat/bindings/openssl/binding.pyo
114${PYSITELIB}/cryptography/hazmat/primitives/__init__.py 90${PYSITELIB}/cryptography/hazmat/primitives/__init__.py
115${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyc 91${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyc
116${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyo 92${PYSITELIB}/cryptography/hazmat/primitives/__init__.pyo
117${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.py 93${PYSITELIB}/cryptography/hazmat/primitives/asymmetric/__init__.py
@@ -149,53 +125,56 @@ ${PYSITELIB}/cryptography/hazmat/primiti @@ -149,53 +125,56 @@ ${PYSITELIB}/cryptography/hazmat/primiti
149${PYSITELIB}/cryptography/hazmat/primitives/ciphers/modes.pyo 125${PYSITELIB}/cryptography/hazmat/primitives/ciphers/modes.pyo
150${PYSITELIB}/cryptography/hazmat/primitives/cmac.py 126${PYSITELIB}/cryptography/hazmat/primitives/cmac.py
151${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyc 127${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyc
152${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyo 128${PYSITELIB}/cryptography/hazmat/primitives/cmac.pyo
153${PYSITELIB}/cryptography/hazmat/primitives/constant_time.py 129${PYSITELIB}/cryptography/hazmat/primitives/constant_time.py
154${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyc 130${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyc
155${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyo 131${PYSITELIB}/cryptography/hazmat/primitives/constant_time.pyo
156${PYSITELIB}/cryptography/hazmat/primitives/hashes.py 132${PYSITELIB}/cryptography/hazmat/primitives/hashes.py
157${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyc 133${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyc
158${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyo 134${PYSITELIB}/cryptography/hazmat/primitives/hashes.pyo
159${PYSITELIB}/cryptography/hazmat/primitives/hmac.py 135${PYSITELIB}/cryptography/hazmat/primitives/hmac.py
160${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyc 136${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyc
161${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyo 137${PYSITELIB}/cryptography/hazmat/primitives/hmac.pyo
162${PYSITELIB}/cryptography/hazmat/primitives/interfaces/__init__.py 138${PYSITELIB}/cryptography/hazmat/primitives/interfaces.py
163${PYSITELIB}/cryptography/hazmat/primitives/interfaces/__init__.pyc 139${PYSITELIB}/cryptography/hazmat/primitives/interfaces.pyc
164${PYSITELIB}/cryptography/hazmat/primitives/interfaces/__init__.pyo 140${PYSITELIB}/cryptography/hazmat/primitives/interfaces.pyo
165${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.py 141${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.py
166${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyc 142${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyc
167${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyo 143${PYSITELIB}/cryptography/hazmat/primitives/kdf/__init__.pyo
168${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.py 144${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.py
169${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyc 145${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyc
170${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyo 146${PYSITELIB}/cryptography/hazmat/primitives/kdf/concatkdf.pyo
171${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.py 147${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.py
172${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyc 148${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyc
173${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyo 149${PYSITELIB}/cryptography/hazmat/primitives/kdf/hkdf.pyo
174${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.py 150${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.py
175${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyc 151${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyc
176${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyo 152${PYSITELIB}/cryptography/hazmat/primitives/kdf/kbkdf.pyo
177${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.py 153${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.py
178${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyc 154${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyc
179${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyo 155${PYSITELIB}/cryptography/hazmat/primitives/kdf/pbkdf2.pyo
180${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.py 156${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.py
181${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyc 157${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyc
182${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyo 158${PYSITELIB}/cryptography/hazmat/primitives/kdf/scrypt.pyo
183${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.py 159${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.py
184${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyc 160${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyc
185${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyo 161${PYSITELIB}/cryptography/hazmat/primitives/kdf/x963kdf.pyo
186${PYSITELIB}/cryptography/hazmat/primitives/keywrap.py 162${PYSITELIB}/cryptography/hazmat/primitives/keywrap.py
187${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyc 163${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyc
188${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyo 164${PYSITELIB}/cryptography/hazmat/primitives/keywrap.pyo
 165${PYSITELIB}/cryptography/hazmat/primitives/mac.py
 166${PYSITELIB}/cryptography/hazmat/primitives/mac.pyc
 167${PYSITELIB}/cryptography/hazmat/primitives/mac.pyo
189${PYSITELIB}/cryptography/hazmat/primitives/padding.py 168${PYSITELIB}/cryptography/hazmat/primitives/padding.py
190${PYSITELIB}/cryptography/hazmat/primitives/padding.pyc 169${PYSITELIB}/cryptography/hazmat/primitives/padding.pyc
191${PYSITELIB}/cryptography/hazmat/primitives/padding.pyo 170${PYSITELIB}/cryptography/hazmat/primitives/padding.pyo
192${PYSITELIB}/cryptography/hazmat/primitives/serialization.py 171${PYSITELIB}/cryptography/hazmat/primitives/serialization.py
193${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyc 172${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyc
194${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyo 173${PYSITELIB}/cryptography/hazmat/primitives/serialization.pyo
195${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.py 174${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.py
196${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyc 175${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyc
197${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyo 176${PYSITELIB}/cryptography/hazmat/primitives/twofactor/__init__.pyo
198${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.py 177${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.py
199${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyc 178${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyc
200${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyo 179${PYSITELIB}/cryptography/hazmat/primitives/twofactor/hotp.pyo
201${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.py 180${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.py
@@ -203,25 +182,28 @@ ${PYSITELIB}/cryptography/hazmat/primiti @@ -203,25 +182,28 @@ ${PYSITELIB}/cryptography/hazmat/primiti
203${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.pyo 182${PYSITELIB}/cryptography/hazmat/primitives/twofactor/totp.pyo
204${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.py 183${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.py
205${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyc 184${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyc
206${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyo 185${PYSITELIB}/cryptography/hazmat/primitives/twofactor/utils.pyo
207${PYSITELIB}/cryptography/utils.py 186${PYSITELIB}/cryptography/utils.py
208${PYSITELIB}/cryptography/utils.pyc 187${PYSITELIB}/cryptography/utils.pyc
209${PYSITELIB}/cryptography/utils.pyo 188${PYSITELIB}/cryptography/utils.pyo
210${PYSITELIB}/cryptography/x509/__init__.py 189${PYSITELIB}/cryptography/x509/__init__.py
211${PYSITELIB}/cryptography/x509/__init__.pyc 190${PYSITELIB}/cryptography/x509/__init__.pyc
212${PYSITELIB}/cryptography/x509/__init__.pyo 191${PYSITELIB}/cryptography/x509/__init__.pyo
213${PYSITELIB}/cryptography/x509/base.py 192${PYSITELIB}/cryptography/x509/base.py
214${PYSITELIB}/cryptography/x509/base.pyc 193${PYSITELIB}/cryptography/x509/base.pyc
215${PYSITELIB}/cryptography/x509/base.pyo 194${PYSITELIB}/cryptography/x509/base.pyo
 195${PYSITELIB}/cryptography/x509/certificate_transparency.py
 196${PYSITELIB}/cryptography/x509/certificate_transparency.pyc
 197${PYSITELIB}/cryptography/x509/certificate_transparency.pyo
216${PYSITELIB}/cryptography/x509/extensions.py 198${PYSITELIB}/cryptography/x509/extensions.py
217${PYSITELIB}/cryptography/x509/extensions.pyc 199${PYSITELIB}/cryptography/x509/extensions.pyc
218${PYSITELIB}/cryptography/x509/extensions.pyo 200${PYSITELIB}/cryptography/x509/extensions.pyo
219${PYSITELIB}/cryptography/x509/general_name.py 201${PYSITELIB}/cryptography/x509/general_name.py
220${PYSITELIB}/cryptography/x509/general_name.pyc 202${PYSITELIB}/cryptography/x509/general_name.pyc
221${PYSITELIB}/cryptography/x509/general_name.pyo 203${PYSITELIB}/cryptography/x509/general_name.pyo
222${PYSITELIB}/cryptography/x509/name.py 204${PYSITELIB}/cryptography/x509/name.py
223${PYSITELIB}/cryptography/x509/name.pyc 205${PYSITELIB}/cryptography/x509/name.pyc
224${PYSITELIB}/cryptography/x509/name.pyo 206${PYSITELIB}/cryptography/x509/name.pyo
225${PYSITELIB}/cryptography/x509/oid.py 207${PYSITELIB}/cryptography/x509/oid.py
226${PYSITELIB}/cryptography/x509/oid.pyc 208${PYSITELIB}/cryptography/x509/oid.pyc
227${PYSITELIB}/cryptography/x509/oid.pyo 209${PYSITELIB}/cryptography/x509/oid.pyo

cvs diff -r1.41 -r1.42 pkgsrc/security/py-cryptography/distinfo (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography/distinfo 2017/05/29 12:07:01 1.41
+++ pkgsrc/security/py-cryptography/distinfo 2017/06/19 21:03:19 1.42
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.41 2017/05/29 12:07:01 wiz Exp $ 1$NetBSD: distinfo,v 1.42 2017/06/19 21:03:19 wiz Exp $
2 2
3SHA1 (cryptography-1.8.2.tar.gz) = 130c444c41bc4de6bae604d9e43d384ab87cf696 3SHA1 (cryptography-1.9.tar.gz) = a997853b98d454e4b9bc404390ce576fb5c2aeed
4RMD160 (cryptography-1.8.2.tar.gz) = 78c0adc7c07f4c9932fbafef4fab7726741ee1af 4RMD160 (cryptography-1.9.tar.gz) = c38ba5a2ec9afdeb32a7cab59a9519a732904d2d
5SHA512 (cryptography-1.8.2.tar.gz) = d9b60979411fa1dca62e947fb1f8627f339d6321eecdda10e4f3617fa0d8c512e6357dbabf599ba538031ad77a82b942da1e1a6bc226a99c06198ecf25fb8fd5 5SHA512 (cryptography-1.9.tar.gz) = 815e9c09366935f8603a3e6e74c28ce79175596d00dbcd19d3792505237bd1cf953a4f401c2b97e4beaa7f2bbdcf9d7f95c4753d001a07fa816830af97cdd24e
6Size (cryptography-1.8.2.tar.gz) = 423774 bytes 6Size (cryptography-1.9.tar.gz) = 409664 bytes