diff options
author | 2012-05-26 12:19:48 +0000 | |
---|---|---|
committer | 2012-05-26 12:19:48 +0000 | |
commit | 329031f77ab15823a764a0694afe29ea9401b711 (patch) | |
tree | e37859e4ce0c3caf60e2d8a67789d4595c518cc1 /dev-python | |
parent | [bump] dev-perl/text-wrapper-1.40.0 (diff) | |
download | gentoo-2-329031f77ab15823a764a0694afe29ea9401b711.tar.gz gentoo-2-329031f77ab15823a764a0694afe29ea9401b711.tar.bz2 gentoo-2-329031f77ab15823a764a0694afe29ea9401b711.zip |
Bump to 2.6, fixes security bug 417625. Thanks to Agostino Sarubbo <ago@gentoo.org>
(Portage version: 2.1.10.63/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pycrypto/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pycrypto/pycrypto-2.6.ebuild | 61 |
2 files changed, 68 insertions, 1 deletions
diff --git a/dev-python/pycrypto/ChangeLog b/dev-python/pycrypto/ChangeLog index 49e329c344f9..7fb77f93bc3d 100644 --- a/dev-python/pycrypto/ChangeLog +++ b/dev-python/pycrypto/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pycrypto # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.116 2012/04/01 15:20:17 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/ChangeLog,v 1.117 2012/05/26 12:19:48 maksbotan Exp $ + +*pycrypto-2.6 (26 May 2012) + + 26 May 2012; Maxim Koltsov <maksbotan@gentoo.org> +pycrypto-2.6.ebuild: + Bump to 2.6, fixes security bug 417625. Thanks to Agostino Sarubbo + <ago@gentoo.org> 01 Apr 2012; Raúl Porcel <armin76@gentoo.org> pycrypto-2.4.1.ebuild: alpha/ia64/m68k/s390/sh/sparc stable wrt #406439 diff --git a/dev-python/pycrypto/pycrypto-2.6.ebuild b/dev-python/pycrypto/pycrypto-2.6.ebuild new file mode 100644 index 000000000000..97b69b02d85c --- /dev/null +++ b/dev-python/pycrypto/pycrypto-2.6.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.6.ebuild,v 1.1 2012/05/26 12:19:48 maksbotan Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" +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="PSF-2 public-domain" +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 ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc +gmp" + +RDEPEND="gmp? ( dev-libs/gmp )" +DEPEND="${RDEPEND} + doc? ( dev-python/docutils >=dev-python/epydoc-3 )" + +# 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 +} + +src_configure() { + #Mimic behavoir of 2.5 ebuild about disabling mpir + econf \ + $(use_with gmp) \ + --without-mpir || die "econf failed" +} + +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 +} |