-------------------------------- pkgsrc changes: - Adjust EGG_NAME Upstream changes: * Release 0.13 (07 Feb 2015) Fix the argument order for Curve constructor (put openssl_name= at the end, with a default value) to unbreak compatibility with external callers who used the 0.11 convention. * Release 0.12 (06 Feb 2015) Switch to Versioneer for version-string management (fixing the broken `ecdsa.__version__` attribute). Add Curve.openssl_name property. Mention secp256k1 in README, test against OpenSSL. Produce "wheel" distributions. Add py3.4 and pypy3 compatibility testing. Other minor fixes.
21 lines
638 B
Makefile
21 lines
638 B
Makefile
# $NetBSD: Makefile,v 1.7 2015/06/29 17:00:00 gls Exp $
|
|
|
|
DISTNAME= python-ecdsa-0.13
|
|
PKGNAME= ${PYPKGPREFIX}-ecdsa-0.13
|
|
EGG_NAME= ecdsa-${PKGVERSION}
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://github.com/warner/python-ecdsa/archive/
|
|
|
|
MAINTAINER= gls@NetBSD.org
|
|
HOMEPAGE= https://github.com/warner/python-ecdsa/
|
|
COMMENT= Easy-to-use implementation of ECDSA cryptography
|
|
LICENSE= mit
|
|
|
|
WRKSRC= ${WRKDIR}/python-ecdsa-${DISTNAME}
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_PYTHON= ecdsa/ecdsa.py ecdsa/ellipticcurve.py ecdsa/numbertheory.py
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|