pkgsrc/security/py-aes/Makefile
kamil 5c86f11853 Import pyaes-1.6.0 as security/py-aes
A pure-Python implmentation of the AES block cipher algorithm and the common
modes of operation (CBC, CFB, CTR, ECB and OFB).

Features:
 - Supports all AES key sizes
 - Supports all AES common modes
 - Pure-Python (no external dependancies)
 - BlockFeeder API allows streams to easily be encrypted and decrypted
 - Python 2.x and 3.x support (make sure you pass in bytes(), not strings for
   Python 3)
2016-06-14 07:58:40 +00:00

18 lines
498 B
Makefile

# $NetBSD: Makefile,v 1.1 2016/06/14 07:58:40 kamil Exp $
DISTNAME= pyaes-1.6.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_GITHUB:=ricmoo/}
GITHUB_PROJECT= pyaes
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/ricmoo/pyaes/
COMMENT= Pure-Python implementation of AES block-cipher
LICENSE= mit
USE_LANGUAGES= # none
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"