8af5c5fe4a
Upstream changes: ----------------- * Release 0.11 (10 Mar 2014) Add signature-encoding functions "sigencode_{strings,string,der}_canonize" which canonicalize the S value (using the smaller of the two possible values). Add "validate_point=" argument to VerifyingKey.from_string() constructor (defaults to True) which can be used to disable time-consuming point validation when importing a pre-validated verifying key. Drop python2.5 support (untested but not explicitly broken yet), update trove classifiers.
21 lines
630 B
Makefile
21 lines
630 B
Makefile
# $NetBSD: Makefile,v 1.6 2014/06/12 00:28:26 gls Exp $
|
|
|
|
DISTNAME= python-ecdsa-0.11
|
|
PKGNAME= ${PYPKGPREFIX}-ecdsa-0.11
|
|
EGG_NAME= ecdsa-0.0.0
|
|
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"
|