git: ab1ad7904dc3 - main - security/py-pysha3: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 17 Feb 2024 06:06:10 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=ab1ad7904dc3d9e82cba48375f7a93f52e045287 commit ab1ad7904dc3d9e82cba48375f7a93f52e045287 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2024-02-17 04:08:45 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2024-02-17 06:05:47 +0000 security/py-pysha3: Remove expired port security/py-pysha3 --- security/Makefile | 1 - security/py-pysha3/Makefile | 34 ---------------------------------- security/py-pysha3/distinfo | 3 --- security/py-pysha3/pkg-descr | 7 ------- 4 files changed, 45 deletions(-) diff --git a/security/Makefile b/security/Makefile index 40fff6073d01..2e02d0665fa6 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1006,7 +1006,6 @@ SUBDIR += py-pysaml24 SUBDIR += py-pysaml26 SUBDIR += py-pyscard - SUBDIR += py-pysha3 SUBDIR += py-pysodium SUBDIR += py-pyspnego SUBDIR += py-python-axolotl diff --git a/security/py-pysha3/Makefile b/security/py-pysha3/Makefile deleted file mode 100644 index 3381390deea6..000000000000 --- a/security/py-pysha3/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -PORTNAME= pysha3 -DISTVERSION= 1.0.2 -CATEGORIES= security python -MASTER_SITES= PYPI -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= bofh@FreeBSD.org -COMMENT= SHA-3 (Keccak) for Python -WWW= https://bitbucket.org/tiran/pykeccak - -LICENSE= PSFL -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Merged into python standard library since version 3.6 -EXPIRATION_DATE= 2024-02-16 -BROKEN_mips64= fails to compile: KeccakP-1600-opt64.c: error: Not yet implemented - -# Actually Python 2.7,3.4+ -USES= python:-3.6 -USE_PYTHON= autoplist distutils - -.include <bsd.port.pre.mk> - -.if ${PYTHON_REL} > 30600 -IGNORE= Does not support python 3.9 and later -.endif - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pysha3*.so - -do-test: - @cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test - -.include <bsd.port.post.mk> diff --git a/security/py-pysha3/distinfo b/security/py-pysha3/distinfo deleted file mode 100644 index ebc59973e195..000000000000 --- a/security/py-pysha3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1556168652 -SHA256 (pysha3-1.0.2.tar.gz) = fe988e73f2ce6d947220624f04d467faf05f1bbdbc64b0a201296bb3af92739e -SIZE (pysha3-1.0.2.tar.gz) = 829192 diff --git a/security/py-pysha3/pkg-descr b/security/py-pysha3/pkg-descr deleted file mode 100644 index 80a3759e7d49..000000000000 --- a/security/py-pysha3/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -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).