From owner-svn-ports-all@FreeBSD.ORG Thu Feb 12 07:23:57 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A13486A; Thu, 12 Feb 2015 07:23:57 +0000 (UTC) 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 1BFD1632; Thu, 12 Feb 2015 07:23:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1C7NuJS013506; Thu, 12 Feb 2015 07:23:56 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1C7NuCH013500; Thu, 12 Feb 2015 07:23:56 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502120723.t1C7NuCH013500@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 12 Feb 2015 07:23:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378863 - in head/security: . py-libnacl 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.18-1 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, 12 Feb 2015 07:23:57 -0000 Author: koobs Date: Thu Feb 12 07:23:55 2015 New Revision: 378863 URL: https://svnweb.freebsd.org/changeset/ports/378863 QAT: https://qat.redports.org/buildarchive/r378863/ Log: [NEW] security/libnacl: Python bindings for NaCl This library is used to gain direct access to the functions exposed by Daniel J. Bernstein's nacl library via libsodium or tweetnacl. It has been constructed to maintain extensive documentation on how to use nacl as well as being tely portable. The file in libnacl/__init__.py can be pulled out and placed directly in any project to give a single file binding to all of nacl. WWW: https://libnacl.readthedocs.org Added: head/security/py-libnacl/ head/security/py-libnacl/Makefile (contents, props changed) head/security/py-libnacl/distinfo (contents, props changed) head/security/py-libnacl/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Feb 12 06:17:19 2015 (r378862) +++ head/security/Makefile Thu Feb 12 07:23:55 2015 (r378863) @@ -791,6 +791,7 @@ SUBDIR += py-kerberos SUBDIR += py-keyczar SUBDIR += py-keyring + SUBDIR += py-libnacl SUBDIR += py-m2crypto SUBDIR += py-mcrypt SUBDIR += py-mhash Added: head/security/py-libnacl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-libnacl/Makefile Thu Feb 12 07:23:55 2015 (r378863) @@ -0,0 +1,21 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= libnacl +PORTVERSION= 1.4.0 +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 + +.include Added: head/security/py-libnacl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-libnacl/distinfo Thu Feb 12 07:23:55 2015 (r378863) @@ -0,0 +1,2 @@ +SHA256 (libnacl-1.4.0.tar.gz) = fee644e684472b307e864db0d01d81915e7fc2c9fd4a64c15a35e4883102d7d5 +SIZE (libnacl-1.4.0.tar.gz) = 28233 Added: head/security/py-libnacl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-libnacl/pkg-descr Thu Feb 12 07:23:55 2015 (r378863) @@ -0,0 +1,7 @@ +This library is used to gain direct access to the functions exposed by Daniel +J. Bernstein's nacl library via libsodium or tweetnacl. It has been constructed +to maintain extensive documentation on how to use nacl as well as being +completely portable. The file in libnacl/__init__.py can be pulled out and +placed directly in any project to give a single file binding to all of nacl. + +WWW: https://libnacl.readthedocs.org