Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-python/cython
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/ChangeLog,v 1.10 2008/05/26 15:29:02 armin76 Exp $
26 May 2008; Raúl Porcel
Add ~sparc
25 May 2008; Markus Rothe
Stable on ppc64; bug #223443
24 May 2008; Jeroen Roovers
Stable for HPPA (bug #223443).
08 Apr 2008; Raúl Porcel
Add ~ia64 wrt #215557
07 Apr 2008; Markus Rothe
Added ~ppc64; bug #215557
31 Mar 2008; Jeroen Roovers
Marked ~hppa (bug #215557).
*cython-0.9.6.12 (20 Mar 2008)
20 Mar 2008; Ali Polatel
Version bump. Thanks to René 'Necoro' Neumann
*cython-0.9.6.10b (04 Jan 2008)
04 Jan 2008; Ali Polatel
Version bump.
07 Oct 2007; Tiziano Müller
Added ~amd64 keyword
*cython-0.9.6.6 (06 Oct 2007)
06 Oct 2007; Ali Polatel
+cython-0.9.6.6.ebuild:
Initial import. Ebuild submitted by Samuele Kaplun
DIST Cython-0.9.6.10b.zip 871097 RMD160 50a1db30bd10d5128645087c648b5d624330e8b6 SHA1 b7ee49dd7e3b9d9b94b3e6dc54d73fbdd28166af SHA256 65b6462083239e68a24b2596995e6db68739b6da32500d757a57491dd347f476
DIST Cython-0.9.6.12.zip 1294449 RMD160 120aa9d6dcbe1357fad6c61d4868039e0f27c0d9 SHA1 1e57efbb48bbd3a8a997300edef325351eef0c77 SHA256 9423dfd5502f3b38699dd3d8cda0aca8cd9fb4b94d0c9160901dfb1c3cb705d6
DIST cython-0.9.6.6.tgz 605842 RMD160 c80500d4b3e75f803207bff9bdf7ce7df1d6acb7 SHA1 259509316bedec4798dbcc9de9834eed635f8cec SHA256 6df7df83f77a3c98032631897bd3b4da864dca8f31afb4c219f1a5539ed60009
EBUILD cython-0.9.6.10b.ebuild 970 RMD160 a8fd25a7046a57caec316529236b7b7684aae6c9 SHA1 7dcaacc7196b3cfc1c52fa8a0ef408f1929e5e73 SHA256 e7943e15712a3c478b99b24c306369352e79ca4ac8c0b1cdc8d6de0014a761a6
EBUILD cython-0.9.6.12.ebuild 991 RMD160 92eb3e5893554096107030bb2ccaeaaa313d65e8 SHA1 8696f3feb28f83de515853deb4fb039a46e51d07 SHA256 7996f227477ed222af937ccb27d6bfa964940538fc793a406bc742e7f6c23740
EBUILD cython-0.9.6.6.ebuild 906 RMD160 10ee6af5ac046a939d89402645d9c0ce995fe95b SHA1 44cba6adba8511aa523e5981e30b46ced1502916 SHA256 e00697330a468c6e1dcc49dcb5c9adfe74b37075f95a006e7ad4c8ed81f4506a
MISC ChangeLog 1379 RMD160 7282e898b5162c0e58f5dbba79bc1f29fa324fa1 SHA1 c4207f07c2b3d877f4a1ecae78e98b0dc52a85a5 SHA256 3a0483d356251f2863dc1367e0a8a3673bd59fcc20fcd5dea8407326f6a6db22
MISC metadata.xml 497 RMD160 c8a3ea3ba222a130465bb9ebde907d801901a4f7 SHA1 d010f21859aeeefc4f54c8aa4c97286f3961f518 SHA256 4faae5140d35949d492a10397ec0f9d1bfafcf2fd79d72d25649986fa1939da4
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.9.6.10b.ebuild,v 1.1 2008/01/04 16:51:19 hawking Exp $
NEED_PYTHON=2.2
inherit distutils eutils
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}.zip"
LICENSE="PSF-2.4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
DEPEND="app-arch/unzip"
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/*.{c,py,pyx,pxd}
fi
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.9.6.12.ebuild,v 1.7 2008/05/26 15:29:02 armin76 Exp $
NEED_PYTHON=2.2
inherit distutils eutils
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}.zip"
LICENSE="PSF-2.4"
SLOT="0"
KEYWORDS="~amd64 hppa ~ia64 ppc64 ~sparc ~x86"
IUSE="doc examples"
DEPEND="app-arch/unzip"
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,pxd}
fi
}
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.9.6.6.ebuild,v 1.2 2007/10/07 21:40:12 dev-zero Exp $
NEED_PYTHON=2.2
inherit distutils eutils
DESCRIPTION="A language for writing Python extension modules based on pyrex"
HOMEPAGE="http://www.cython.org/"
SRC_URI="http://www.cython.org/${P}.tgz"
LICENSE="PSF-2.4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
S="${WORKDIR}/Cython-${PV}"
PYTHON_MODNAME="Cython"
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/*.{c,py,pyx,pxd}
fi
}
Cython is a language that makes writing C extensions for the Python
language as easy as Python itself. It's based on Pyrex, but supports
more cutting edge functionality and optimizations.