2010-09-20 -- pycryptopp v0.5.25 * make setup backwards-compatible to Python 2.4 * fix incompatibilities between setup script and older versions of darcsver * don't attempt to compile Mac OS X extended attribute files (this fixes the build breaking) * include a version number of the specific version of Crypto++ in extraversion.h * small changes to docs 2010-09-18 -- pycryptopp v0.5.20 * fix bugs in assembly implementation of SHA-256 from Crypto++ * fix it to compile on *BSD (#39) * improve doc strings * add a quick start-up-self-test of SHA256 (#43) * execute the quick start-up-self-tests of AES and SHA256 on module import
19 lines
516 B
Makefile
19 lines
516 B
Makefile
# $NetBSD: Makefile,v 1.4 2010/09/24 18:10:46 gdt Exp $
|
|
#
|
|
|
|
VERSION= 0.5.25
|
|
DISTNAME= pycryptopp-${VERSION}
|
|
PKGNAME= ${PYPKGPREFIX}-cryptopp-${VERSION}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/p/pycryptopp/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://tahoe-lafs.org/trac/pycryptopp
|
|
COMMENT= Python wrapper for (and copy of parts of) crypto++
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|