From owner-svn-ports-head@freebsd.org Mon Jan 4 07:55:33 2016 Return-Path: Delivered-To: svn-ports-head@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 17804A6102C; Mon, 4 Jan 2016 07:55:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 E976A1DBE; Mon, 4 Jan 2016 07:55:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u047tWbC098344; Mon, 4 Jan 2016 07:55:32 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u047tVm4098339; Mon, 4 Jan 2016 07:55:31 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601040755.u047tVm4098339@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 4 Jan 2016 07:55:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405221 - in head/security: . py-pynacl py-pynacl/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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2016 07:55:33 -0000 Author: miwi Date: Mon Jan 4 07:55:31 2016 New Revision: 405221 URL: https://svnweb.freebsd.org/changeset/ports/405221 Log: PyNaCl is a Python binding to the Networking and Cryptography library, a crypto library with the stated goal of improving usability, security and speed. WWW: https://pypi.python.org/pypi/PyNaCl/ PR: 205060 Submitted by: Yuri Victorovich Added: head/security/py-pynacl/ head/security/py-pynacl/Makefile (contents, props changed) head/security/py-pynacl/distinfo (contents, props changed) head/security/py-pynacl/files/ head/security/py-pynacl/files/patch-setup.py (contents, props changed) head/security/py-pynacl/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jan 4 07:22:15 2016 (r405220) +++ head/security/Makefile Mon Jan 4 07:55:31 2016 (r405221) @@ -853,6 +853,7 @@ SUBDIR += py-pyelliptic SUBDIR += py-pylibacl SUBDIR += py-pyme + SUBDIR += py-pynacl SUBDIR += py-pyptlib SUBDIR += py-pyscard SUBDIR += py-pysha3 Added: head/security/py-pynacl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pynacl/Makefile Mon Jan 4 07:55:31 2016 (r405221) @@ -0,0 +1,28 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pynacl +PORTVERSION= 0.3.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyNaCl-${PORTVERSION} + +MAINTAINER= yuri@rawbw.com +COMMENT= PyNaCl is a Python binding to the Networking and Cryptography library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/lib/libnacl.a:${PORTSDIR}/security/nacl \ + ${PYTHON_PKGNAMEPREFIX}cffi>0:${PORTSDIR}/devel/py-cffi +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:${PORTSDIR}/devel/py-cffi + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/nacl/_lib/_cffi__xfc5fefe5xfb751af7.so + +.include Added: head/security/py-pynacl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pynacl/distinfo Mon Jan 4 07:55:31 2016 (r405221) @@ -0,0 +1,2 @@ +SHA256 (PyNaCl-0.3.0.tar.gz) = 124997314455605f61afae6cf8b99b32d10f2dba22f114acb4c80d352eed76c2 +SIZE (PyNaCl-0.3.0.tar.gz) = 2569604 Added: head/security/py-pynacl/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pynacl/files/patch-setup.py Mon Jan 4 07:55:31 2016 (r405221) @@ -0,0 +1,14 @@ +--- setup.py.orig 2015-03-04 07:00:53 UTC ++++ setup.py +@@ -167,9 +167,10 @@ class build_clib(_build_clib): + build_temp = os.path.abspath(self.build_temp) + + # Ensure our temporary build directory exists ++ print("YURI build_temp="+build_temp) + try: + os.makedirs(build_temp) +- except IOError: ++ except: + pass + + # Ensure all of our executanle files have their permission set Added: head/security/py-pynacl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pynacl/pkg-descr Mon Jan 4 07:55:31 2016 (r405221) @@ -0,0 +1,4 @@ +PyNaCl is a Python binding to the Networking and Cryptography library, a crypto +library with the stated goal of improving usability, security and speed. + +WWW: https://pypi.python.org/pypi/PyNaCl/