From owner-svn-ports-all@FreeBSD.ORG Sun Feb 23 13:47:06 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2154459; Sun, 23 Feb 2014 13:47:05 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA8D21DC2; Sun, 23 Feb 2014 13:47:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1NDl5Sw050828; Sun, 23 Feb 2014 13:47:05 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1NDl55c050823; Sun, 23 Feb 2014 13:47:05 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402231347.s1NDl55c050823@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 23 Feb 2014 13:47:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345722 - in head/security: . py-cryptography 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.17 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: Sun, 23 Feb 2014 13:47:06 -0000 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 +# $FreeBSD$ + +PORTNAME= cryptography +PORTVERSION= 0.2.1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@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 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/