Wed Nov 13 21:12:20 2019 UTC ()
py-argon2-cffi: updated to 19.2.0

19.2.0:
Backward-incompatible changes:
- Python 3.4 is not supported anymore.
  It has been unsupported by the Python core team for a while now and its PyPI downloads are negligible.
  It's very unlikely that ``argon2-cffi`` will break under 3.4 anytime soon, but we don't test it and don't ship binary wheels for it anymore.

Changes:
- The dependency on ``enum34`` is now protected using a PEP 508 marker.
  This fixes problems when the sdist is handled by a different interpreter version than the one running it.


(adam)
diff -r1.719 -r1.720 pkgsrc/security/Makefile
diff -r0 -r1.1 pkgsrc/security/py-argon2-cffi/DESCR
diff -r0 -r1.1 pkgsrc/security/py-argon2-cffi/Makefile
diff -r0 -r1.1 pkgsrc/security/py-argon2-cffi/PLIST
diff -r0 -r1.1 pkgsrc/security/py-argon2-cffi/distinfo
diff -r1.1 -r0 pkgsrc/security/py-argon2_cffi/DESCR
diff -r1.4 -r0 pkgsrc/security/py-argon2_cffi/Makefile
diff -r1.4 -r0 pkgsrc/security/py-argon2_cffi/distinfo
diff -r1.2 -r0 pkgsrc/security/py-argon2_cffi/PLIST

cvs diff -r1.719 -r1.720 pkgsrc/security/Makefile (expand / switch to unified diff)

--- pkgsrc/security/Makefile 2019/11/07 03:28:19 1.719
+++ pkgsrc/security/Makefile 2019/11/13 21:12:20 1.720
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.719 2019/11/07 03:28:19 jnemeth Exp $ 1# $NetBSD: Makefile,v 1.720 2019/11/13 21:12:20 adam Exp $
2# 2#
3 3
4COMMENT= Security tools 4COMMENT= Security tools
5 5
6SUBDIR+= 2fa 6SUBDIR+= 2fa
7SUBDIR+= Bastille 7SUBDIR+= Bastille
8SUBDIR+= CSP 8SUBDIR+= CSP
9SUBDIR+= CoolKey 9SUBDIR+= CoolKey
10SUBDIR+= EasyPG 10SUBDIR+= EasyPG
11SUBDIR+= HElib 11SUBDIR+= HElib
12SUBDIR+= KeePass 12SUBDIR+= KeePass
13SUBDIR+= PACK 13SUBDIR+= PACK
14SUBDIR+= PortableSigner 14SUBDIR+= PortableSigner
@@ -390,27 +390,27 @@ SUBDIR+= prelude-manager @@ -390,27 +390,27 @@ SUBDIR+= prelude-manager
390SUBDIR+= prelude-pflogger 390SUBDIR+= prelude-pflogger
391SUBDIR+= priv 391SUBDIR+= priv
392SUBDIR+= prngd 392SUBDIR+= prngd
393SUBDIR+= pscan 393SUBDIR+= pscan
394SUBDIR+= putty 394SUBDIR+= putty
395SUBDIR+= pwsafe 395SUBDIR+= pwsafe
396SUBDIR+= py-Des 396SUBDIR+= py-Des
397SUBDIR+= py-OTXv2 397SUBDIR+= py-OTXv2
398SUBDIR+= py-OpenSSL 398SUBDIR+= py-OpenSSL
399SUBDIR+= py-SSLCrypto 399SUBDIR+= py-SSLCrypto
400SUBDIR+= py-acme 400SUBDIR+= py-acme
401SUBDIR+= py-acme-tiny 401SUBDIR+= py-acme-tiny
402SUBDIR+= py-aes 402SUBDIR+= py-aes
403SUBDIR+= py-argon2_cffi 403SUBDIR+= py-argon2-cffi
404SUBDIR+= py-asn1 404SUBDIR+= py-asn1
405SUBDIR+= py-asn1-modules 405SUBDIR+= py-asn1-modules
406SUBDIR+= py-asn1crypto 406SUBDIR+= py-asn1crypto
407SUBDIR+= py-asyncssh 407SUBDIR+= py-asyncssh
408SUBDIR+= py-backports.ssl_match_hostname 408SUBDIR+= py-backports.ssl_match_hostname
409SUBDIR+= py-bcrypt 409SUBDIR+= py-bcrypt
410SUBDIR+= py-certbot 410SUBDIR+= py-certbot
411SUBDIR+= py-certbot-apache 411SUBDIR+= py-certbot-apache
412SUBDIR+= py-certbot-dns-dnsimple 412SUBDIR+= py-certbot-dns-dnsimple
413SUBDIR+= py-certbot-dns-dnsmadeeasy 413SUBDIR+= py-certbot-dns-dnsmadeeasy
414SUBDIR+= py-certbot-dns-gehirn 414SUBDIR+= py-certbot-dns-gehirn
415SUBDIR+= py-certbot-dns-google 415SUBDIR+= py-certbot-dns-google
416SUBDIR+= py-certbot-dns-linode 416SUBDIR+= py-certbot-dns-linode

File Added: pkgsrc/security/py-argon2-cffi/DESCR
Argon2 won the Password Hashing Competition and argon2_cffi is the simplest
way to use it in Python and PyPy.

File Added: pkgsrc/security/py-argon2-cffi/Makefile
# $NetBSD: Makefile,v 1.1 2019/11/13 21:12:20 adam Exp $

DISTNAME=	argon2-cffi-19.2.0
PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
CATEGORIES=	security python
MASTER_SITES=	${MASTER_SITE_PYPI:=a/argon2-cffi/}

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	https://argon2-cffi.readthedocs.io/
COMMENT=	Secure Argon2 password hashing algorithm
LICENSE=	mit

DEPENDS+=	${PYPKGPREFIX}-cffi>=1.0.0:../../devel/py-cffi
DEPENDS+=	${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
TEST_DEPENDS+=	${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis
TEST_DEPENDS+=	${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test

.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} == 27
DEPENDS+=	${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34
.endif

MAKE_ENV+=	ARGON2_CFFI_USE_SYSTEM=1

do-test:
	cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests

.include "../../lang/python/egg.mk"
.include "../../security/argon2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/security/py-argon2-cffi/PLIST
@comment $NetBSD: PLIST,v 1.1 2019/11/13 21:12:20 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/argon2/__init__.py
${PYSITELIB}/argon2/__init__.pyc
${PYSITELIB}/argon2/__init__.pyo
${PYSITELIB}/argon2/__main__.py
${PYSITELIB}/argon2/__main__.pyc
${PYSITELIB}/argon2/__main__.pyo
${PLIST.py2x}${PYSITELIB}/argon2/_ffi.so
${PLIST.py3x}${PYSITELIB}/argon2/_ffi.abi3.so
${PYSITELIB}/argon2/_ffi_build.py
${PYSITELIB}/argon2/_ffi_build.pyc
${PYSITELIB}/argon2/_ffi_build.pyo
${PYSITELIB}/argon2/_legacy.py
${PYSITELIB}/argon2/_legacy.pyc
${PYSITELIB}/argon2/_legacy.pyo
${PYSITELIB}/argon2/_password_hasher.py
${PYSITELIB}/argon2/_password_hasher.pyc
${PYSITELIB}/argon2/_password_hasher.pyo
${PYSITELIB}/argon2/_utils.py
${PYSITELIB}/argon2/_utils.pyc
${PYSITELIB}/argon2/_utils.pyo
${PYSITELIB}/argon2/exceptions.py
${PYSITELIB}/argon2/exceptions.pyc
${PYSITELIB}/argon2/exceptions.pyo
${PYSITELIB}/argon2/low_level.py
${PYSITELIB}/argon2/low_level.pyc
${PYSITELIB}/argon2/low_level.pyo

File Added: pkgsrc/security/py-argon2-cffi/distinfo
$NetBSD: distinfo,v 1.1 2019/11/13 21:12:20 adam Exp $

SHA1 (argon2-cffi-19.2.0.tar.gz) = 2242169e3049395317921badc396298d6d09b788
RMD160 (argon2-cffi-19.2.0.tar.gz) = 10b1ee6604aea30921d4cc3d1ea873f415f727d9
SHA512 (argon2-cffi-19.2.0.tar.gz) = 05e2eea18bb2fc2ab0c7174081634d6c2a227f14f64a2686b369e1bf2c69721149282c2572f1e4044c3f3a3e93003db8aed174aa64d377a145d6a81cc1f52fd2
Size (argon2-cffi-19.2.0.tar.gz) = 1816417 bytes

File Deleted: pkgsrc/security/py-argon2_cffi/Attic/DESCR

File Deleted: pkgsrc/security/py-argon2_cffi/Attic/Makefile

File Deleted: pkgsrc/security/py-argon2_cffi/Attic/distinfo

File Deleted: pkgsrc/security/py-argon2_cffi/Attic/PLIST