diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-22 22:16:28 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-22 22:16:28 +0000 |
commit | 170222d6d23f93c0f2ae3ff633ba3c7add5b4c1e (patch) | |
tree | 41d5e4ca9fb2ad389dd3163ea046d0cc985e9a8e /dev-python/keyczar/keyczar-0.71c.ebuild | |
parent | Initial import (bug #345313). (diff) | |
download | historical-170222d6d23f93c0f2ae3ff633ba3c7add5b4c1e.tar.gz historical-170222d6d23f93c0f2ae3ff633ba3c7add5b4c1e.tar.bz2 historical-170222d6d23f93c0f2ae3ff633ba3c7add5b4c1e.zip |
Initial import (bug #345313).
Package-Manager: portage-2.2.8-r1/cvs/Linux x86_64
Manifest-Sign-Key: 0x4AB3E85B4F064CA3
Diffstat (limited to 'dev-python/keyczar/keyczar-0.71c.ebuild')
-rw-r--r-- | dev-python/keyczar/keyczar-0.71c.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/keyczar/keyczar-0.71c.ebuild b/dev-python/keyczar/keyczar-0.71c.ebuild new file mode 100644 index 000000000000..6c06fd3c72db --- /dev/null +++ b/dev-python/keyczar/keyczar-0.71c.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/keyczar/keyczar-0.71c.ebuild,v 1.1 2014/02/22 22:16:23 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +MY_PN=python-${PN} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Toolkit for safe and simple cryptography" +HOMEPAGE="http://www.keyczar.org https://pypi.python.org/pypi/python-keyczar/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + >=dev-python/pycrypto-2.0[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P} + +python_test() { + cd "${S}"/tests/keyczar_tests + ${PYTHON} alltests.py || die "tests fail with ${EPYTHON}" +} |