diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2019-05-06 04:15:27 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2019-05-06 04:15:27 +0000 |
commit | 6e2e0ef75d8bb71328511cd84b85bfef7422b402 (patch) | |
tree | 3a377b027bfdeda5517c9fa1f6a23aff2bfed363 /security/py-libnacl/Makefile | |
parent | d6d3f2622ca4cba90d20edceb95e065476269543 (diff) | |
download | ports-6e2e0ef75d8bb71328511cd84b85bfef7422b402.tar.gz ports-6e2e0ef75d8bb71328511cd84b85bfef7422b402.zip |
security/py-libnacl: Update to 1.6.1
- Remove setup.py patch, use direct unittest invocation instead
Changelog:
https://libnacl.readthedocs.io/en/latest/topics/releases/index.html
Notes
Notes:
svn path=/head/; revision=500887
Diffstat (limited to 'security/py-libnacl/Makefile')
-rw-r--r-- | security/py-libnacl/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/security/py-libnacl/Makefile b/security/py-libnacl/Makefile index 01675ff5e4ba..4ceab32a51a7 100644 --- a/security/py-libnacl/Makefile +++ b/security/py-libnacl/Makefile @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= libnacl -PORTVERSION= 1.5.2 -PORTREVISION= 1 +PORTVERSION= 1.6.1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Python bindings for libsodium/tweetnacl based on ctypes +COMMENT= Python bindings for libsodium based on ctypes LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE @@ -22,7 +21,6 @@ USE_PYTHON= autoplist distutils NO_ARCH= yes do-test: - ${TOUCH} ${WRKSRC}/tests/__init__.py - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + @cd ${WRKSRC} && ${PYTHON_CMD} -m unittest discover --start-directory tests -v .include <bsd.port.mk> |