From owner-svn-ports-head@freebsd.org Thu Mar 23 02:33:47 2017 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 04137D18631; Thu, 23 Mar 2017 02:33:47 +0000 (UTC) (envelope-from jrm@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 AF7AD1BB5; Thu, 23 Mar 2017 02:33:46 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2N2XjnA051630; Thu, 23 Mar 2017 02:33:45 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2N2Xj6O051626; Thu, 23 Mar 2017 02:33:45 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201703230233.v2N2Xj6O051626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Thu, 23 Mar 2017 02:33:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436753 - in head/security: . py-pyaes 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.23 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: Thu, 23 Mar 2017 02:33:47 -0000 Author: jrm Date: Thu Mar 23 02:33:45 2017 New Revision: 436753 URL: https://svnweb.freebsd.org/changeset/ports/436753 Log: security/py-pyaes: Pure-Python implementation of AES block-cipher and common modes of operation. WWW: https://github.com/ricmoo/pyaes Approved by: swills (mentor, implicit) Added: head/security/py-pyaes/ head/security/py-pyaes/Makefile (contents, props changed) head/security/py-pyaes/distinfo (contents, props changed) head/security/py-pyaes/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Mar 23 02:32:58 2017 (r436752) +++ head/security/Makefile Thu Mar 23 02:33:45 2017 (r436753) @@ -897,6 +897,7 @@ SUBDIR += py-plone.session SUBDIR += py-potr SUBDIR += py-pow + SUBDIR += py-pyaes SUBDIR += py-pyaff4 SUBDIR += py-pyclamd SUBDIR += py-pycrypto Added: head/security/py-pyaes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/Makefile Thu Mar 23 02:33:45 2017 (r436753) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pyaes +PORTVERSION= 1.6.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Pure-Python implementation of AES block-cipher + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-pyaes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/distinfo Thu Mar 23 02:33:45 2017 (r436753) @@ -0,0 +1,3 @@ +TIMESTAMP = 1490235520 +SHA256 (pyaes-1.6.0.tar.gz) = 9cd5a54d914b1eebfb14fcb490315214b6a0304d9f1bb47e90d1d8e0b15ce92e +SIZE (pyaes-1.6.0.tar.gz) = 28237 Added: head/security/py-pyaes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyaes/pkg-descr Thu Mar 23 02:33:45 2017 (r436753) @@ -0,0 +1,10 @@ +pyaes is a pure-Python implmentation of the AES block cipher algorithm and the +common modes of operation (CBC, CFB, CTR, ECB and OFB). + +- Supports all AES key sizes +- Supports all AES common modes +- Pure-Python (no external dependancies) +- BlockFeeder API allows streams to easily be encrypted and decrypted +- Python 2.x and 3.x support + +WWW: https://github.com/ricmoo/pyaes