From owner-svn-ports-head@FreeBSD.ORG Tue Jun 11 18:24:09 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 65020AA7; Tue, 11 Jun 2013 18:24:09 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8FF12DA; Tue, 11 Jun 2013 18:24:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5BIO9Bu040944; Tue, 11 Jun 2013 18:24:09 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5BIO86W040939; Tue, 11 Jun 2013 18:24:08 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201306111824.r5BIO86W040939@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 11 Jun 2013 18:24:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320620 - in head/security: . py-slowaes 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.14 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: Tue, 11 Jun 2013 18:24:09 -0000 Author: rm Date: Tue Jun 11 18:24:08 2013 New Revision: 320620 URL: http://svnweb.freebsd.org/changeset/ports/320620 Log: Implementation of AES in pure Python. As such it will be slow (hence the project name) but still useful when faster ones are not available (for example, for JavaScript clients in browsers, and Python servers on Google App Engine). WWW: https://code.google.com/p/slowaes/ PR: 179447 Submitted by: Neil Booth Added: head/security/py-slowaes/ head/security/py-slowaes/Makefile (contents, props changed) head/security/py-slowaes/distinfo (contents, props changed) head/security/py-slowaes/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jun 11 18:22:13 2013 (r320619) +++ head/security/Makefile Tue Jun 11 18:24:08 2013 (r320620) @@ -774,6 +774,7 @@ SUBDIR += py-pysha3 SUBDIR += py-python-registry SUBDIR += py-rsa + SUBDIR += py-slowaes SUBDIR += py-ssh SUBDIR += py-sslstrip SUBDIR += py-tlslite Added: head/security/py-slowaes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-slowaes/Makefile Tue Jun 11 18:24:08 2013 (r320620) @@ -0,0 +1,21 @@ +# Created by: Neil Booth +# $FreeBSD$ + +PORTNAME= slowaes +DISTVERSION= 0.1a1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kyuupichan@gmail.com +COMMENT= Implementation of AES in pure Python + +LICENSE= AL2 + +USE_PYTHON= -2.7 +USE_PYDISTUTILS=easy_install +PYDISTUTILS_PKGVERSION= ${DISTVERSION} + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include Added: head/security/py-slowaes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-slowaes/distinfo Tue Jun 11 18:24:08 2013 (r320620) @@ -0,0 +1,2 @@ +SHA256 (slowaes-0.1a1.tar.gz) = 83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09 +SIZE (slowaes-0.1a1.tar.gz) = 7017 Added: head/security/py-slowaes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-slowaes/pkg-descr Tue Jun 11 18:24:08 2013 (r320620) @@ -0,0 +1,7 @@ +Implementation of AES in pure Python. + +As such it will be slow (hence the project name) but still useful when +faster ones are not available (for example, for JavaScript clients in +browsers, and Python servers on Google App Engine). + +WWW: https://code.google.com/p/slowaes/