diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-12 18:50:44 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-12 18:50:44 +0000 |
commit | 31ce55a517079f5a30acf65e4dd53eb86b3cd949 (patch) | |
tree | b25f2c698e897e70ac0d876669289f51c9f48342 /dev-python/pycrypto/pycrypto-2.3.ebuild | |
parent | Stable on alpha, bug #327777 (diff) | |
download | gentoo-2-31ce55a517079f5a30acf65e4dd53eb86b3cd949.tar.gz gentoo-2-31ce55a517079f5a30acf65e4dd53eb86b3cd949.tar.bz2 gentoo-2-31ce55a517079f5a30acf65e4dd53eb86b3cd949.zip |
Version bump.
(Portage version: 2.2_rc80/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pycrypto/pycrypto-2.3.ebuild')
-rw-r--r-- | dev-python/pycrypto/pycrypto-2.3.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/pycrypto/pycrypto-2.3.ebuild b/dev-python/pycrypto/pycrypto-2.3.ebuild new file mode 100644 index 000000000000..45b31f1b17cd --- /dev/null +++ b/dev-python/pycrypto/pycrypto-2.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.3.ebuild,v 1.1 2010/09/12 18:50:44 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils eutils + +DESCRIPTION="Python Cryptography Toolkit" +HOMEPAGE="http://www.dlitz.net/software/pycrypto/ http://pypi.python.org/pypi/pycrypto" +SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz" + +LICENSE="public-domain PSF-2.2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc +gmp" + +RDEPEND="gmp? ( dev-libs/gmp )" +DEPEND="${RDEPEND} + doc? ( dev-python/docutils dev-python/epydoc )" + +# Some tests fail with some limit of inlining of functions. +# Avoid warnings about breaking strict-aliasing rules. +PYTHON_CFLAGS=("2.* + -fno-inline-functions -fno-strict-aliasing") + +DOCS="ACKS ChangeLog README TODO" +PYTHON_MODNAME="Crypto" + +src_prepare() { + distutils_src_prepare + epatch "${FILESDIR}/${PN}-2.1.0-gmp.patch" +} + +src_configure() { + use gmp \ + && export USE_GMP="1" \ + || export USE_GMP="0" +} + +src_compile() { + distutils_src_compile + + if use doc; then + einfo "Generation of documentation" + rst2html.py Doc/pycrypt.rst > Doc/index.html + PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" + fi +} + +src_install() { + distutils_src_install + + if use doc; then + dohtml Doc/index.html || die "dohtml failed" + dohtml Doc/apidoc/* || die "dohtml failed" + fi +} |