Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jun 2013 18:24:08 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r320620 - in head/security: . py-slowaes
Message-ID:  <201306111824.r5BIO86W040939@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <kyuupichan@gmail.com>

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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306111824.r5BIO86W040939>