diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-09-16 20:24:22 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-09-16 20:24:22 +0000 |
commit | 28da567b00068ab36bd93bc708483764e44fcb14 (patch) | |
tree | 536cb07159b3e2b480b65adb211c00ece7d6c077 /dev-python/slowaes | |
parent | Depend on taglib-1.8 to match upstream #434658 by BT. (diff) | |
download | gentoo-2-28da567b00068ab36bd93bc708483764e44fcb14.tar.gz gentoo-2-28da567b00068ab36bd93bc708483764e44fcb14.tar.bz2 gentoo-2-28da567b00068ab36bd93bc708483764e44fcb14.zip |
Initial commit, needed for net-misc/electrum
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/slowaes')
-rw-r--r-- | dev-python/slowaes/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/slowaes/metadata.xml | 16 | ||||
-rw-r--r-- | dev-python/slowaes/slowaes-0.1.ebuild | 22 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/slowaes/ChangeLog b/dev-python/slowaes/ChangeLog new file mode 100644 index 000000000000..d4bcb086b3d8 --- /dev/null +++ b/dev-python/slowaes/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/slowaes +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/slowaes/ChangeLog,v 1.1 2012/09/16 20:24:22 blueness Exp $ + +*slowaes-0.1 (16 Sep 2012) + + 16 Sep 2012; Anthony G. Basile <blueness@gentoo.org> +slowaes-0.1.ebuild, + +metadata.xml: + Initial commit, needed for net-misc/electrum + diff --git a/dev-python/slowaes/metadata.xml b/dev-python/slowaes/metadata.xml new file mode 100644 index 000000000000..1bc853afbd90 --- /dev/null +++ b/dev-python/slowaes/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>blueness@gentoo.org</email> + <name>Anthony G. Basile</name> + </maintainer> + <maintainer> + <email>luke-jr+gentoobugs@utopios.org</email> + <name>Luke Dashjr</name> + </maintainer> + <maintainer> + <email>maksverver@geocities.com</email> + <name>Maks Verver</name> + </maintainer> +</pkgmetadata> diff --git a/dev-python/slowaes/slowaes-0.1.ebuild b/dev-python/slowaes/slowaes-0.1.ebuild new file mode 100644 index 000000000000..f1959d59271d --- /dev/null +++ b/dev-python/slowaes/slowaes-0.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/slowaes/slowaes-0.1.ebuild,v 1.1 2012/09/16 20:24:22 blueness Exp $ + +EAPI="4" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +MY_P=${P}a1 +DESCRIPTION="AES implementation in pure Python" +HOMEPAGE="http://code.google.com/p/slowaes/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR}/${MY_P} |