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.
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
# Template file for 'python-jupyter_client'
|
|
pkgname=python-jupyter_client
|
|
version=5.2.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="jupyter_client-${version}"
|
|
build_style=python-module
|
|
pycompile_module="jupyter_client"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-traitlets python-jupyter_core
|
|
python-pyzmq python-dateutil"
|
|
short_desc="Jupyter protocol client APIs (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/jupyter/jupyter_client"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/j/jupyter_client/jupyter_client-${version}.tar.gz"
|
|
checksum=ca30cf1786047925ebacd6f6faa3a993efaa004b584f7d83bc8b807f7cd3f6bb
|
|
alternatives="
|
|
jupyter-client:jupyter-kernel:/usr/bin/jupyter-kernel2
|
|
jupyter-client:jupyter-kernelspec:/usr/bin/jupyter-kernelspec2
|
|
jupyter-client:jupyter-run:/usr/bin/jupyter-run2"
|
|
|
|
post_install() {
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
|
|
python3-jupyter_client_package() {
|
|
noarch=yes
|
|
pycompile_module="jupyter_client"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
depends="python3-setuptools python3-traitlets python3-jupyter_core
|
|
python3-pyzmq python3-dateutil"
|
|
alternatives="
|
|
jupyter-client:jupyter-kernel:/usr/bin/jupyter-kernel3
|
|
jupyter-client:jupyter-kernelspec:/usr/bin/jupyter-kernelspec3
|
|
jupyter-client:jupyter-run:/usr/bin/jupyter-run3"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
}
|