diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-13 21:29:27 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-13 21:29:27 +0000 |
commit | 7c50e3504c46bb45dfe3a53dcb50f5c085ba4930 (patch) | |
tree | 5639685d360421bd0f05088ec0d69bef45849d78 /dev-python/pycrypto | |
parent | Update live ebuild syntax to new cmake-utils one. (diff) | |
download | gentoo-2-7c50e3504c46bb45dfe3a53dcb50f5c085ba4930.tar.gz gentoo-2-7c50e3504c46bb45dfe3a53dcb50f5c085ba4930.tar.bz2 gentoo-2-7c50e3504c46bb45dfe3a53dcb50f5c085ba4930.zip |
Version bump.
(Portage version: 15094-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pycrypto')
-rw-r--r-- | dev-python/pycrypto/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pycrypto/pycrypto-2.1.0.ebuild | 75 |
2 files changed, 82 insertions, 1 deletions
diff --git a/dev-python/pycrypto/ChangeLog b/dev-python/pycrypto/ChangeLog index c0018bfab2a4..e6794301fbb5 100644 --- a/dev-python/pycrypto/ChangeLog +++ b/dev-python/pycrypto/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pycrypto # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.79 2009/12/09 18:54:01 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.80 2009/12/13 21:29:27 arfrever Exp $ + +*pycrypto-2.1.0 (13 Dec 2009) + + 13 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pycrypto-2.1.0.ebuild: + Version bump. 09 Dec 2009; nixnut <nixnut@gentoo.org> pycrypto-2.1.0_beta1.ebuild: ppc stable #295698 diff --git a/dev-python/pycrypto/pycrypto-2.1.0.ebuild b/dev-python/pycrypto/pycrypto-2.1.0.ebuild new file mode 100644 index 000000000000..ef656ab9233c --- /dev/null +++ b/dev-python/pycrypto/pycrypto-2.1.0.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.1.0.ebuild,v 1.1 2009/12/13 21:29:27 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils flag-o-matic + +DESCRIPTION="Python Cryptography Toolkit" +HOMEPAGE="http://www.dlitz.net/software/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 )" +RESTRICT_PYTHON_ABIS="3.*" + +DOCS="ACKS ChangeLog README TODO" +PYTHON_MODNAME="Crypto" + +pkg_setup() { + # Some tests fail with some limit of inlining of functions. + append-flags -fno-inline-functions +} + +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 + rst2html.py Doc/pycrypt.rst > Doc/index.html + + # Build documentation only once. + documentation_built="0" + generate_documentation() { + [[ "${documentation_built}" == "1" ]] && return + PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" + documentation_built="1" + } + python_execute_function -q generate_documentation + unset documentation_built + fi +} + +src_test() { + testing() { + PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + if use doc; then + dohtml Doc/index.html || die "dohtml failed" + dohtml Doc/apidoc/* || die "dohtml failed" + fi +} |