python3-jupyter_console: revert to using tarball from pypi

This reverts #23446 and instead patches setup.py to use setuptools
instead of distutils which automatically generates the necessary
jupyter-console script.
This commit is contained in:
Adam Beckmeyer 2020-07-08 12:47:54 -04:00 committed by Piraty
parent 18a4aadd79
commit fc0132f0d5
2 changed files with 14 additions and 4 deletions

View file

@ -0,0 +1,11 @@
--- setup.py
+++ setup.py
@@ -51,7 +51,7 @@
import os
from glob import glob
-from distutils.core import setup
+from setuptools import setup
pjoin = os.path.join
here = os.path.abspath(os.path.dirname(__file__))

View file

@ -1,7 +1,7 @@
# Template file for 'python3-jupyter_console'
pkgname=python3-jupyter_console
version=6.1.0
revision=2
revision=3
archs=noarch
wrksrc="jupyter_console-${version}"
build_style=python3-module
@ -13,9 +13,8 @@ short_desc="Jupyter terminal console (Python3)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="BSD-3-Clause"
homepage="https://github.com/jupyter/jupyter_console"
# pypi release of jupyter_console v6.1.0 does not include scripts dir
distfiles="${homepage}/archive/${version}.tar.gz"
checksum=838c95c99ce52978e1660e7a30dd933dede158e2f4da1bc5fad1a8fad44570b7
distfiles="${PYPI_SITE}/j/jupyter_console/jupyter_console-${version}.tar.gz"
checksum=6f6ead433b0534909df789ea64f0a14cdf9b6b2360757756f08182be4b9e431b
# alternatives will be a conflict
conflicts="python-jupyter_console<=6.0.0_2"