
After more than a year the switch to python3 packages, it is time to say them goodbye. So long, and thanks for all the fish.
39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
# Template file for 'python-Cython'
|
|
pkgname=python-Cython
|
|
version=0.27.3
|
|
revision=1
|
|
wrksrc="Cython-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-devel python3-devel"
|
|
makedepends="${hostmakedepends}"
|
|
pycompile_module="Cython pyximport cython.py"
|
|
short_desc="C-Extensions for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="http://cython.org"
|
|
license="Apache-2.0"
|
|
distfiles="${PYPI_SITE}/C/Cython/Cython-${version}.tar.gz"
|
|
checksum=6a00512de1f2e3ce66ba35c5420babaef1fe2d9c43a8faab4080b0dbcc26bc64
|
|
|
|
alternatives="
|
|
cython:cygdb:/usr/bin/cygdb2
|
|
cython:cython:/usr/bin/cython2
|
|
cython:cythonize:/usr/bin/cythonize2"
|
|
|
|
# Skip build phase, otherwise Cython gets confused when cross compiling
|
|
do_build() {
|
|
:
|
|
}
|
|
|
|
python3-Cython_package() {
|
|
alternatives="
|
|
cython:cygdb:/usr/bin/cygdb3
|
|
cython:cython:/usr/bin/cython3
|
|
cython:cythonize:/usr/bin/cythonize3"
|
|
pycompile_module="Cython pyximport cython.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|