217e7d31f2
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.
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'python-greenlet'
|
|
pkgname=python-greenlet
|
|
version=0.4.12
|
|
revision=2
|
|
wrksrc="greenlet-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
makedepends="python-devel python3-devel"
|
|
short_desc="Lightweight in-process concurrent programming (Python2)"
|
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/python-greenlet/greenlet"
|
|
distfiles="${PYPI_SITE}/g/greenlet/greenlet-${version}.tar.gz"
|
|
checksum=e4c99c6010a5d153d481fdaf63b8a0782825c0721506d880403a3b9b82ae347e
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python-greenlet-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove ${py2_inc}
|
|
}
|
|
}
|
|
python3-greenlet-devel_package() {
|
|
depends="python3-greenlet>=${version}_${revision}"
|
|
short_desc="${short_desc/Python2/Python3} - development files"
|
|
pkg_install() {
|
|
vmove ${py3_inc}
|
|
}
|
|
}
|
|
python3-greenlet_package() {
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove ${py3_sitelib}
|
|
vlicense LICENSE
|
|
}
|
|
}
|