Index: head/security/py-libnacl/Makefile =================================================================== --- head/security/py-libnacl/Makefile (revision 409593) +++ head/security/py-libnacl/Makefile (revision 409594) @@ -1,25 +1,27 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= libnacl -PORTVERSION= 1.4.3 +PORTVERSION= 1.4.4 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Python bindings for libsodium/tweetnacl based on ctypes LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium USES= python USE_PYTHON= autoplist distutils -regression-test: build +NO_ARCH= yes + +do-test: ${TOUCH} ${WRKSRC}/tests/__init__.py @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Index: head/security/py-libnacl/distinfo =================================================================== --- head/security/py-libnacl/distinfo (revision 409593) +++ head/security/py-libnacl/distinfo (revision 409594) @@ -1,2 +1,2 @@ -SHA256 (libnacl-1.4.3.tar.gz) = 873614913c90c4011f791a8fd1448f6bb3ab7dc8cdd329d1baaa65e7e1d1a929 -SIZE (libnacl-1.4.3.tar.gz) = 28777 +SHA256 (libnacl-1.4.4.tar.gz) = f2ee401a78dc693fcbc2051befcee2f76bb13ce75a933420646abfa47a39a6db +SIZE (libnacl-1.4.4.tar.gz) = 30965 Index: head/security/py-libnacl/files/patch-setup.py =================================================================== --- head/security/py-libnacl/files/patch-setup.py (revision 409593) +++ head/security/py-libnacl/files/patch-setup.py (revision 409594) @@ -1,10 +1,10 @@ ---- setup.py.orig 2015-03-17 16:11:06 UTC +--- setup.py.orig 2016-01-04 16:47:15 UTC +++ setup.py -@@ -36,4 +36,6 @@ setup(name=NAME, +@@ -29,4 +29,6 @@ setup(name=NAME, 'Intended Audience :: Developers', 'Topic :: Security :: Cryptography', ], - packages=['libnacl']) + packages=['libnacl'], + test_suite='tests.runtests.run_suite', +)