Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Feb 2015 07:23:56 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378863 - in head/security: . py-libnacl
Message-ID:  <201502120723.t1C7NuCH013500@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <koobs@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502120723.t1C7NuCH013500>