1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-07 11:49:40 +00:00

sha3 wrapper (keccak) for Python. The package is a wrapper around the

optimized reference implementation from http://keccak.noekeon.org/ . Only
the optimizations for 32 and 64bit platforms are used. The optimized SSE and
ARM assembly variants are ignored for now.

The module is a standalone version of the SHA-3 implemention of Python 3.4
(currently under development).

WWW: http://bitbucket.org/tiran/pykeccak

PR:		172606
Submitted by:	Kubilay Kocak <koobs.freebsd at gmail dot com>
Feature safe:   yes
This commit is contained in:
Ruslan Makhmatkhanov 2012-10-17 08:03:42 +00:00
parent e33759adb4
commit 8d11ec6917
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306002
5 changed files with 57 additions and 0 deletions

View File

@ -755,6 +755,7 @@
SUBDIR += py-pycryptopp
SUBDIR += py-pylibacl
SUBDIR += py-pyme
SUBDIR += py-pysha3
SUBDIR += py-rijndael
SUBDIR += py-rsa
SUBDIR += py-ssh

View File

@ -0,0 +1,31 @@
# Created by: Kubilay Kocak <koobs.freebsd@gmail.com>
# $FreeBSD$
PORTNAME= pysha3
PORTVERSION= 0.2.2
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs.freebsd@gmail.com
COMMENT= SHA-3 (Keccak) for Python
# Python3 ready
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/_sha3.so \
%%PYTHON_SITELIBDIR%%/sha3.py \
%%PYTHON_SITELIBDIR%%/sha3.pyc \
%%PYTHON_SITELIBDIR%%/sha3.pyo
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} >= 320
.include "${FILESDIR}/py3k-fix-pkg-plist.inc"
.endif
regression-test: build
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
SHA256 (pysha3-0.2.2.tar.gz) = afedc110ad816ec0d08feff62f5d674b9b90a4028209cbc93a3e362e9fd5a05c
SIZE (pysha3-0.2.2.tar.gz) = 46450

View File

@ -0,0 +1,14 @@
# When Python version is 3.2+ we rewrite all the filenames
# of TMPPLIST that end with .py[co], so that they conform
# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/)
PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())'
add-plist-post:
@${AWK} '\
/\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \
/^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \
{print} \
END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \
' \
pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \
${TMPPLIST} > ${TMPPLIST}.pyc_tmp
@${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST}

View File

@ -0,0 +1,9 @@
sha3 wrapper (keccak) for Python. The package is a wrapper around the
optimized reference implementation from http://keccak.noekeon.org/ . Only
the optimizations for 32 and 64bit platforms are used. The optimized SSE and
ARM assembly variants are ignored for now.
The module is a standalone version of the SHA-3 implemention of Python 3.4
(currently under development).
WWW: http://bitbucket.org/tiran/pykeccak