diff options
author | koobs <koobs@FreeBSD.org> | 2015-06-25 13:48:02 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2015-06-25 13:48:02 +0800 |
commit | b0c9fb2d342e41449d991b103e05230ca1b7722e (patch) | |
tree | 1390c1f647e0d89141908388b66e41114b388b23 | |
parent | fd1d8edb018a53d939030bcaacce97bddc5a0f67 (diff) | |
download | freebsd-ports-gnome-b0c9fb2d342e41449d991b103e05230ca1b7722e.tar.gz freebsd-ports-gnome-b0c9fb2d342e41449d991b103e05230ca1b7722e.tar.zst freebsd-ports-gnome-b0c9fb2d342e41449d991b103e05230ca1b7722e.zip |
security/py-libnacl: Update to 1.4.3
- Update to 1.4.3
- Patch setup.py so test command is supported
- Add regression-test target
Changes:
https://libnacl.readthedocs.org/en/latest/topics/releases/1.4.3.html
Based on:
PR: 200830
Submitted by: Christer Edwards <christer dot edwards gmail com>
-rw-r--r-- | security/py-libnacl/Makefile | 7 | ||||
-rw-r--r-- | security/py-libnacl/distinfo | 4 | ||||
-rw-r--r-- | security/py-libnacl/files/patch-setup.py | 10 |
3 files changed, 17 insertions, 4 deletions
diff --git a/security/py-libnacl/Makefile b/security/py-libnacl/Makefile index b27d2680a4a4..540db869e0c9 100644 --- a/security/py-libnacl/Makefile +++ b/security/py-libnacl/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libnacl -PORTVERSION= 1.4.2 -PORTREVISION= 1 +PORTVERSION= 1.4.3 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,4 +18,8 @@ LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium USES= python USE_PYTHON= autoplist distutils +regression-test: build + ${TOUCH} ${WRKSRC}/tests/__init__.py + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + .include <bsd.port.mk> diff --git a/security/py-libnacl/distinfo b/security/py-libnacl/distinfo index 52ca49523839..27e48d857d71 100644 --- a/security/py-libnacl/distinfo +++ b/security/py-libnacl/distinfo @@ -1,2 +1,2 @@ -SHA256 (libnacl-1.4.2.tar.gz) = 2443c9c8835bc3e337de1ba137fd783a1d73ef3d404966d960255c29910e58cf -SIZE (libnacl-1.4.2.tar.gz) = 28162 +SHA256 (libnacl-1.4.3.tar.gz) = 873614913c90c4011f791a8fd1448f6bb3ab7dc8cdd329d1baaa65e7e1d1a929 +SIZE (libnacl-1.4.3.tar.gz) = 28777 diff --git a/security/py-libnacl/files/patch-setup.py b/security/py-libnacl/files/patch-setup.py new file mode 100644 index 000000000000..6e85ddd242e6 --- /dev/null +++ b/security/py-libnacl/files/patch-setup.py @@ -0,0 +1,10 @@ +--- setup.py.orig 2015-03-17 16:11:06 UTC ++++ setup.py +@@ -36,4 +36,6 @@ setup(name=NAME, + 'Intended Audience :: Developers', + 'Topic :: Security :: Cryptography', + ], +- packages=['libnacl']) ++ packages=['libnacl'], ++ test_suite='tests.runtests.run_suite', ++) |