01556ad76e
- More cleanups, removal of obsolete stuff, and moves towards py3k compatibility. - Add support for EC.get_builtin_curves() and use it for testing. - Enable AES CTR mode - Bundle-in six module v. 1.10.0 - add rand_file_name and rand_status - remove all LHASH fiddling - Extend Travis and GitLab CI configuration to test also py3k (with allowed_failures) and CentOS6 (on GitLab CI). - Add CONTRIBUTORS.rst. Thank you! - Add PEP-484 type hints in comments to all Python files (except for tests) - Use context managers for file handling wherever possible instead of leaking open file descriptors. - Improve defaults handling for SSL_CTX_new(). - Fix PGP tests to actually run
22 lines
729 B
Makefile
22 lines
729 B
Makefile
# $NetBSD: Makefile,v 1.41 2017/02/19 18:54:39 adam Exp $
|
|
|
|
DISTNAME= M2Crypto-0.25.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=M/M2Crypto/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://chandlerproject.org/bin/view/Projects/MeTooCrypto
|
|
COMMENT= Crypto and SSL toolkit for Python
|
|
LICENSE= m2crypto-license
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing
|
|
|
|
PYSETUPBUILDARGS= build_ext --openssl=${BUILDLINK_PREFIX.openssl}
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # not yet ported as of 0.25.1
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../devel/swig/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|