summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Arndt2020-12-12 17:50:01 +0100
committerChristopher Arndt2020-12-12 17:50:01 +0100
commit913f21b4040a7a61388a93bfd900fc5a7cc10c64 (patch)
treecda1e08f3166481235faa06086179decb1149ace
parentabff9ae8a4e907bb3d413bfd81c15f2a1d24597f (diff)
downloadaur-913f21b4040a7a61388a93bfd900fc5a7cc10c64.tar.gz
Recent setuptools versions are not a run-time dep any more for entry point scripts
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 53342016763b..e8052c745d7b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = rshell
pkgdesc = A remote shell for working with MicroPython boards.
pkgver = 0.0.28
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/dhylands/rshell
arch = any
license = MIT
+ makedepends = python-setuptools
depends = python-pyudev
depends = python-pyserial
- depends = python-setuptools
source = https://files.pythonhosted.org/packages/source/r/rshell/rshell-0.0.28.tar.gz
sha256sums = d28e6bd872734c68a2b6169adf43b6f71c745fa66ec89ae88a975e38c1a636b3
diff --git a/PKGBUILD b/PKGBUILD
index 2b83aaa9934e..dc015a6bd1ef 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,10 +3,11 @@
pkgname=rshell
pkgver=0.0.28
-pkgrel=1
+pkgrel=2
pkgdesc="A remote shell for working with MicroPython boards."
url="https://github.com/dhylands/rshell"
-depends=('python-pyudev' 'python-pyserial' 'python-setuptools')
+depends=('python-pyudev' 'python-pyserial')
+makedepends=('python-setuptools')
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")