mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-26 21:55:19 +02:00
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.
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
# Template file for 'python-jupyter_console'
|
|
pkgname=python-jupyter_console
|
|
version=5.2.0
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="jupyter_console-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-ipython python-ipython_ipykernel python-jupyter_client
|
|
python-prompt_toolkit python-Pygments"
|
|
pycompile_module="jupyter_console"
|
|
short_desc="Jupyter terminal console (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/jupyter/jupyter_console"
|
|
license="3-clause-BSD"
|
|
distfiles="${PYPI_SITE}/j/jupyter_console/jupyter_console-${version}.tar.gz"
|
|
checksum=545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd
|
|
alternatives="jupyter-console:jupyter-console:/usr/bin/jupyter-console2"
|
|
|
|
post_install() {
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
|
|
python3-jupyter_console_package() {
|
|
noarch=yes
|
|
depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client
|
|
python3-prompt_toolkit python3-Pygments"
|
|
pycompile_module="jupyter_console"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="jupyter-console:jupyter-console:/usr/bin/jupyter-console3"
|
|
pkg_install() {
|
|
vmove usr/bin/jupyter-console3
|
|
vmove usr/lib/python3*
|
|
vlicense COPYING.md LICENSE
|
|
}
|
|
}
|