svn commit: r345722 - in head/security: . py-cryptography

Kubilay Kocak koobs at FreeBSD.org
Sun Feb 23 13:47:06 UTC 2014


Author: koobs
Date: Sun Feb 23 13:47:04 2014
New Revision: 345722
URL: http://svnweb.freebsd.org/changeset/ports/345722
QAT: https://qat.redports.org/buildarchive/r345722/

Log:
  [NEW PORT] security/py-cryptography: Cryptographic recipes and primitives to Python developers
  
  cryptography is a package designed to expose cryptographic recipes and
  primitives to Python developers. Our goal is for it to be your "cryptographic
  standard library". It supports Python 2.6-2.7, Python 3.2+, and PyPy.
  
  cryptography includes both high level recipes, and low level interfaces to
  common cryptographic algorithms such as symmetric ciphers, message digests
  and key derivation functions.
  
  WWW: http://github.com/pyca/cryptography/

Added:
  head/security/py-cryptography/
  head/security/py-cryptography/Makefile   (contents, props changed)
  head/security/py-cryptography/distinfo   (contents, props changed)
  head/security/py-cryptography/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Feb 23 13:10:28 2014	(r345721)
+++ head/security/Makefile	Sun Feb 23 13:47:04 2014	(r345722)
@@ -756,6 +756,7 @@
     SUBDIR += py-clamav
     SUBDIR += py-cracklib
     SUBDIR += py-cryptkit
+    SUBDIR += py-cryptography
     SUBDIR += py-cybox
     SUBDIR += py-ecdsa
     SUBDIR += py-ed25519ll

Added: head/security/py-cryptography/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-cryptography/Makefile	Sun Feb 23 13:47:04 2014	(r345722)
@@ -0,0 +1,22 @@
+# Created by: Kubilay Kocak <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	cryptography
+PORTVERSION=	0.2.1
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs at FreeBSD.org
+COMMENT=	Expose cryptographic recipes and primitives to Python developers
+
+LICENSE=	APACHE20
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cffi>=0.8:${PORTSDIR}/devel/py-cffi \
+		${PYTHON_PKGNAMEPREFIX}six>=1.4.1:${PORTSDIR}/devel/py-six
+
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-cryptography/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-cryptography/distinfo	Sun Feb 23 13:47:04 2014	(r345722)
@@ -0,0 +1,2 @@
+SHA256 (cryptography-0.2.1.tar.gz) = 5b4b93a9841364396ac75ee3f0f4550752821df5a89078c1e16a716339ba39a3
+SIZE (cryptography-0.2.1.tar.gz) = 13772304

Added: head/security/py-cryptography/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-cryptography/pkg-descr	Sun Feb 23 13:47:04 2014	(r345722)
@@ -0,0 +1,9 @@
+cryptography is a package designed to expose cryptographic recipes and
+primitives to Python developers. Our goal is for it to be your "cryptographic
+standard library". It supports Python 2.6-2.7, Python 3.2+, and PyPy.
+
+cryptography includes both high level recipes, and low level interfaces to
+common cryptographic algorithms such as symmetric ciphers, message digests
+and key derivation functions.
+
+WWW: http://github.com/pyca/cryptography/


More information about the svn-ports-all mailing list