From owner-svn-ports-all@freebsd.org Thu Jun 25 05:48:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5575798CA11; Thu, 25 Jun 2015 05:48:04 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C8E810A8; Thu, 25 Jun 2015 05:48:04 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5P5m48B047562; Thu, 25 Jun 2015 05:48:04 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5P5m3SC047559; Thu, 25 Jun 2015 05:48:03 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201506250548.t5P5m3SC047559@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 25 Jun 2015 05:48:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390533 - in head/security/py-libnacl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 05:48:04 -0000 Author: koobs Date: Thu Jun 25 05:48:02 2015 New Revision: 390533 URL: https://svnweb.freebsd.org/changeset/ports/390533 Log: 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 Added: head/security/py-libnacl/files/ head/security/py-libnacl/files/patch-setup.py (contents, props changed) Modified: head/security/py-libnacl/Makefile head/security/py-libnacl/distinfo Modified: head/security/py-libnacl/Makefile ============================================================================== --- head/security/py-libnacl/Makefile Thu Jun 25 05:42:02 2015 (r390532) +++ head/security/py-libnacl/Makefile Thu Jun 25 05:48:02 2015 (r390533) @@ -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}/se USES= python USE_PYTHON= autoplist distutils +regression-test: build + ${TOUCH} ${WRKSRC}/tests/__init__.py + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + .include Modified: head/security/py-libnacl/distinfo ============================================================================== --- head/security/py-libnacl/distinfo Thu Jun 25 05:42:02 2015 (r390532) +++ head/security/py-libnacl/distinfo Thu Jun 25 05:48:02 2015 (r390533) @@ -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 Added: head/security/py-libnacl/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-libnacl/files/patch-setup.py Thu Jun 25 05:48:02 2015 (r390533) @@ -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', ++)