diff options
author | 2014-04-03 01:43:23 +0000 | |
---|---|---|
committer | 2014-04-03 01:43:23 +0000 | |
commit | 566c5f8bffb8ac0b906e16352f1436a4a303146f (patch) | |
tree | 14686ce655e96d44ff264836e385cfbfc19fe373 /dev-python/cryptography | |
parent | Initial import, test data for dev-python/cryptography. (diff) | |
download | gentoo-2-566c5f8bffb8ac0b906e16352f1436a4a303146f.tar.gz gentoo-2-566c5f8bffb8ac0b906e16352f1436a4a303146f.tar.bz2 gentoo-2-566c5f8bffb8ac0b906e16352f1436a4a303146f.zip |
Version bump, add python3_4 support.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/cryptography')
-rw-r--r-- | dev-python/cryptography/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/cryptography/cryptography-0.3.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-python/cryptography/ChangeLog b/dev-python/cryptography/ChangeLog index 40dd46bc0934..b2e725fc7962 100644 --- a/dev-python/cryptography/ChangeLog +++ b/dev-python/cryptography/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/cryptography # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.9 2014/03/31 20:59:29 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/ChangeLog,v 1.10 2014/04/03 01:43:23 radhermit Exp $ + +*cryptography-0.3 (03 Apr 2014) + + 03 Apr 2014; Tim Harder <radhermit@gentoo.org> +cryptography-0.3.ebuild: + Version bump, add python3_4 support. 31 Mar 2014; Michał Górny <mgorny@gentoo.org> cryptography-0.2.1.ebuild, cryptography-0.2.2.ebuild: diff --git a/dev-python/cryptography/cryptography-0.3.ebuild b/dev-python/cryptography/cryptography-0.3.ebuild new file mode 100644 index 000000000000..d957169e4195 --- /dev/null +++ b/dev-python/cryptography/cryptography-0.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cryptography/cryptography-0.3.ebuild,v 1.1 2014/04/03 01:43:23 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 ) + +inherit distutils-r1 + +DESCRIPTION="Library providing cryptographic recipes and primitives" +HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd" +IUSE="test" + +RDEPEND="dev-libs/openssl:0 + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] + >=dev-python/cffi-0.8[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + =dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + dev-python/pretend[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst ) + +python_test() { + py.test -v || die "Tests fail with ${EPYTHON}" +} |