From owner-svn-ports-all@freebsd.org Sun Jan 10 13:44:03 2016 Return-Path: Delivered-To: svn-ports-all@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 6E447A699BE; Sun, 10 Jan 2016 13:44:03 +0000 (UTC) (envelope-from miwi@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 48D451EA7; Sun, 10 Jan 2016 13:44:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0ADi28Y020453; Sun, 10 Jan 2016 13:44:02 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0ADi2K2020449; Sun, 10 Jan 2016 13:44:02 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601101344.u0ADi2K2020449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sun, 10 Jan 2016 13:44:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405696 - in head/security: . py-pycryptodome 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.20 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, 10 Jan 2016 13:44:03 -0000 Author: miwi Date: Sun Jan 10 13:44:01 2016 New Revision: 405696 URL: https://svnweb.freebsd.org/changeset/ports/405696 Log: PyCryptodome is a fork of PyCrypto. It brings the following enhancements with respect to the last official version of PyCrypto (2.6.1): * Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB) * Accelerated AES on Intel platforms via AES-NI * First class support for PyPy * SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms * Salsa20 and ChaCha20 stream ciphers * scrypt and HKDF * Deterministic DSA * Password-protected PKCS#8 key containers * Shamir's Secret Sharing scheme * Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace) * Simplified install process, including better support for Windows * Cleaner RSA and DSA key generation (largely based on FIPS 186-4) * Major clean ups and simplification of the code base WWW: https://pypi.python.org/pypi/pycryptodome/ PR: 206095 Submitted by: Yuri Victorovich Added: head/security/py-pycryptodome/ head/security/py-pycryptodome/Makefile (contents, props changed) head/security/py-pycryptodome/distinfo (contents, props changed) head/security/py-pycryptodome/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jan 10 13:20:59 2016 (r405695) +++ head/security/Makefile Sun Jan 10 13:44:01 2016 (r405696) @@ -850,6 +850,7 @@ SUBDIR += py-pyaff4 SUBDIR += py-pyclamd SUBDIR += py-pycrypto + SUBDIR += py-pycryptodome SUBDIR += py-pycryptopp SUBDIR += py-pydeep SUBDIR += py-pyelliptic Added: head/security/py-pycryptodome/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pycryptodome/Makefile Sun Jan 10 13:44:01 2016 (r405696) @@ -0,0 +1,27 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pycryptodome +PORTVERSION= 3.3.1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Cryptographic library for Python + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Cipher/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Hash/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Util/*.so + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/security/py-pycryptodome/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pycryptodome/distinfo Sun Jan 10 13:44:01 2016 (r405696) @@ -0,0 +1,2 @@ +SHA256 (pycryptodome-3.3.1.tar.gz) = 1b52d5643e243a6d5ba4b5706e6ae59ee61b14e800ff812c1e47ec4dfe8e4761 +SIZE (pycryptodome-3.3.1.tar.gz) = 3050117 Added: head/security/py-pycryptodome/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pycryptodome/pkg-descr Sun Jan 10 13:44:01 2016 (r405696) @@ -0,0 +1,20 @@ +PyCryptodome is a fork of PyCrypto. It brings the following +enhancements with respect to the last official version of +PyCrypto (2.6.1): + +* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB) +* Accelerated AES on Intel platforms via AES-NI +* First class support for PyPy +* SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms +* Salsa20 and ChaCha20 stream ciphers +* scrypt and HKDF +* Deterministic DSA +* Password-protected PKCS#8 key containers +* Shamir's Secret Sharing scheme +* Random numbers get sourced directly from the OS (and not from + a CSPRNG in userspace) +* Simplified install process, including better support for Windows +* Cleaner RSA and DSA key generation (largely based on FIPS 186-4) +* Major clean ups and simplification of the code base + +WWW: https://pypi.python.org/pypi/pycryptodome/