Date: Thursday, November 10, 2022 @ 12:33:43
  Author: arojas
Revision: 1346410

New spyder dependency

Added:
  python-pylint-venv/
  python-pylint-venv/trunk/
  python-pylint-venv/trunk/PKGBUILD

----------+
 PKGBUILD |   26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

Added: python-pylint-venv/trunk/PKGBUILD
===================================================================
--- python-pylint-venv/trunk/PKGBUILD                           (rev 0)
+++ python-pylint-venv/trunk/PKGBUILD   2022-11-10 12:33:43 UTC (rev 1346410)
@@ -0,0 +1,26 @@
+# Maintainer:
+# Contributor: Stijn Seghers <stijnseghers at gmail dot com>
+
+pkgname=python-pylint-venv
+_pyname=pylint-venv
+pkgver=2.3.0
+pkgrel=2
+pkgdesc='Make pylint respect virtualenvs'
+arch=(any)
+url="https://github.com/jgosmann/$_pyname";
+license=(MIT)
+depends=(python-pylint python-virtualenv)
+makedepends=(python-build python-installer python-wheel python-poetry-core)
+source=(https://github.com/jgosmann/$_pyname/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('82c0181f4fa0b862141f784bbd90207409642a6e6d74407e27b7d73f0f8bfe4d')
+
+build() {
+    cd $_pyname-$pkgver
+    python -m build --wheel --no-isolation
+}
+
+package() {
+    cd $_pyname-$pkgver
+    python -m installer --destdir="$pkgdir" dist/*.whl
+    install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+}

Reply via email to