71fccbb0d8
Deprecations: - Deprecated ``OpenSSL.rand`` - callers should use ``os.urandom()`` instead. Changes: - Fixed a bug causing ``Context.set_default_verify_paths()`` to not work with cryptography ``manylinux1`` wheels on Python 3.x. - Fixed a crash with (EC)DSA signatures in some cases.
26 lines
929 B
Makefile
26 lines
929 B
Makefile
# $NetBSD: Makefile,v 1.47 2017/07/20 16:52:16 adam Exp $
|
|
|
|
DISTNAME= pyOpenSSL-17.2.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyOpenSSL/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pyca/pyopenssl/
|
|
COMMENT= Python interface to the OpenSSL library
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cryptography>=0.3:../../security/py-cryptography
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six
|
|
# TEST_DEPENDS
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-flaky-[0-9]*:../../devel/py-flaky
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-test>=3.0.1:../../devel/py-test
|
|
|
|
# https://github.com/pyca/pyopenssl/issues/656
|
|
do-test:
|
|
cd ${WRKSRC} && PYTHONPATH=src py.test-${PYVERSSUFFIX} -v
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|