From owner-svn-ports-head@freebsd.org Fri Dec 4 14:43:37 2015 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 B8880A404EA; Fri, 4 Dec 2015 14:43:37 +0000 (UTC) (envelope-from amdmi3@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 6CDDB1B1D; Fri, 4 Dec 2015 14:43:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB4EhaWh056310; Fri, 4 Dec 2015 14:43:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB4Eha3f056306; Fri, 4 Dec 2015 14:43:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512041443.tB4Eha3f056306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 4 Dec 2015 14:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402990 - in head/security: . py-pyelliptic 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: Fri, 04 Dec 2015 14:43:37 -0000 Author: amdmi3 Date: Fri Dec 4 14:43:36 2015 New Revision: 402990 URL: https://svnweb.freebsd.org/changeset/ports/402990 Log: Python OpenSSL wrapper. For modern cryptography with ECC, AES, HMAC, Blowfish, ... WWW: https://github.com/yann2192/pyelliptic PR: 201390 Submitted by: yuri@rawbw.com Added: head/security/py-pyelliptic/ head/security/py-pyelliptic/Makefile (contents, props changed) head/security/py-pyelliptic/distinfo (contents, props changed) head/security/py-pyelliptic/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Dec 4 14:36:40 2015 (r402989) +++ head/security/Makefile Fri Dec 4 14:43:36 2015 (r402990) @@ -848,6 +848,7 @@ SUBDIR += py-pycrypto SUBDIR += py-pycryptopp SUBDIR += py-pydeep + SUBDIR += py-pyelliptic SUBDIR += py-pylibacl SUBDIR += py-pyme SUBDIR += py-pyptlib Added: head/security/py-pyelliptic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyelliptic/Makefile Fri Dec 4 14:43:36 2015 (r402990) @@ -0,0 +1,24 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pyelliptic +PORTVERSION= 1.5.6 +CATEGORIES= security python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python OpenSSL wrapper + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl + +USE_GITHUB= yes +GH_ACCOUNT= yann2192 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/security/py-pyelliptic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyelliptic/distinfo Fri Dec 4 14:43:36 2015 (r402990) @@ -0,0 +1,2 @@ +SHA256 (yann2192-pyelliptic-1.5.6_GH0.tar.gz) = 00ef8c16c4b542dcb8bd6cf7b59f823d4c3f32ac6de46a8d97dfd0176c14f8c4 +SIZE (yann2192-pyelliptic-1.5.6_GH0.tar.gz) = 11567 Added: head/security/py-pyelliptic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyelliptic/pkg-descr Fri Dec 4 14:43:36 2015 (r402990) @@ -0,0 +1,4 @@ +Python OpenSSL wrapper. For modern cryptography with ECC, AES, HMAC, +Blowfish, ... + +WWW: https://github.com/yann2192/pyelliptic