diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-07 22:29:10 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-07 22:29:10 +0000 |
commit | 0b7f92c4853b8497c07a887b7e992e879471fee3 (patch) | |
tree | d1cebe330d142fe9276263e6bf9a50282df1181f /dev-python/cython | |
parent | x11-libs/libXext: bump to 1.0.5 (diff) | |
download | gentoo-2-0b7f92c4853b8497c07a887b7e992e879471fee3.tar.gz gentoo-2-0b7f92c4853b8497c07a887b7e992e879471fee3.tar.bz2 gentoo-2-0b7f92c4853b8497c07a887b7e992e879471fee3.zip |
Version bump (bug #272571).
(Portage version: 13634-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/cython')
-rw-r--r-- | dev-python/cython/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/cython/cython-0.11.2.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-python/cython/ChangeLog b/dev-python/cython/ChangeLog index 39528718a9a4..dbd6ca030250 100644 --- a/dev-python/cython/ChangeLog +++ b/dev-python/cython/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/cython # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/ChangeLog,v 1.16 2009/04/30 18:26:43 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/ChangeLog,v 1.17 2009/06/07 22:29:10 arfrever Exp $ + +*cython-0.11.2 (07 Jun 2009) + + 07 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +cython-0.11.2.ebuild: + Version bump (bug #272571). 30 Apr 2009; Patrick Lauer <patrick@gentoo.org> +cython-0.9.6.12.ebuild: Restore a 0.9.6 version, we don't want to break ppc diff --git a/dev-python/cython/cython-0.11.2.ebuild b/dev-python/cython/cython-0.11.2.ebuild new file mode 100644 index 000000000000..94d2d3e98fa4 --- /dev/null +++ b/dev-python/cython/cython-0.11.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.11.2.ebuild,v 1.1 2009/06/07 22:29:10 arfrever Exp $ + +NEED_PYTHON="2.2" + +inherit distutils + +MY_PN="Cython" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A language for writing Python extension modules based on pyrex" +HOMEPAGE="http://www.cython.org/" +SRC_URI="http://www.cython.org/${MY_P}.tar.gz" + +LICENSE="PSF-2.4" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc examples" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="${MY_PN}" +DOCS="ToDo.txt USAGE.txt" + +src_install() { + distutils_src_install + + # -A c switch is for Doc/primes.c + use doc && dohtml -A c -r Doc/* + + if use examples; then + # Demos/ has files with .so,~ suffixes. + # So we have to specify precisely what to install. + insinto /usr/share/doc/${PF}/examples + doins Demos/Makefile* Demos/setup.py Demos/*.{py,pyx} + fi +} |