Date: Tuesday, October 25, 2022 @ 06:59:45
Author: arojas
Revision: 1334692
Add missing setuptools makedepends (FS#76288)
Modified:
jupyter_console/trunk/PKGBUILD
----------+
PKGBUILD | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-25 06:50:32 UTC (rev 1334691)
+++ PKGBUILD 2022-10-25 06:59:45 UTC (rev 1334692)
@@ -9,18 +9,18 @@
license=('BSD')
depends=('ipython' 'python-jupyter_client' 'python-ipykernel'
'python-pygments' 'python-prompt_toolkit')
-makedepends=('python-build' 'python-installer' 'python-wheel')
+makedepends=('python-build' 'python-installer' 'python-wheel'
'python-setuptools')
#source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_console/archive/$pkgver.tar.gz")
source=("https://files.pythonhosted.org/packages/source/j/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('a5e0426e44738c96c0a63663cdc0cfb1')
build() {
- cd "$srcdir/jupyter_console-$pkgver"
+ cd jupyter_console-$pkgver
python -m build --wheel --no-isolation
}
package() {
- cd "$srcdir/jupyter_console-$pkgver"
+ cd jupyter_console-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}