diff options
Diffstat (limited to 'testing/platformio-core')
-rw-r--r-- | testing/platformio-core/APKBUILD | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/testing/platformio-core/APKBUILD b/testing/platformio-core/APKBUILD index c885172328..3093ceaa5d 100644 --- a/testing/platformio-core/APKBUILD +++ b/testing/platformio-core/APKBUILD @@ -1,26 +1,42 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> -# Maintainer: +# Contributor: Marten Ringwelski <git+alpine@maringuu.de> +# Maintainer: Marten Ringwelski <git+alpine@maringuu.de> pkgname=platformio-core -pkgver=4.0.0 -pkgrel=5 +pkgver=6.0.1 +pkgrel=0 pkgdesc="An open source ecosystem for IoT development" url="https://platformio.org" -arch="noarch" +arch="noarch !armhf !ppc64le" # limited by py3-starlette license="Apache-2.0" -depends="py3-bottle py3-click py3-colorama py3-lockfile py3-requests - py3-semantic-version py3-pyserial" +depends=" + py3-aiofiles + py3-ajsonrpc + py3-bottle + py3-click + py3-colorama + py3-marshmallow + py3-elftools + py3-pyserial + py3-requests + py3-semantic-version + py3-starlette + py3-tabulate + py3-wsproto + py3-zeroconf + uvicorn + " makedepends="py3-setuptools" source="$pkgname-$pkgver.tar.gz::https://github.com/platformio/platformio-core/archive/v$pkgver.tar.gz" build() { python3 setup.py build cd "$builddir"/scripts - 2to3 -w *.py } package() { python3 setup.py install --prefix=/usr --root="$pkgdir" - } -sha512sums="e483850e7e1bd73522931da17b934116f44e730868ff424faa7bbb3b7853d0435ebb3fa3e6f8eab2bd57ada1d05140302b827b4724fe7981025cdc7660baff4c platformio-core-4.0.0.tar.gz" +sha512sums=" +c248b7697f76de5daaf6880353115749c4c2f6825ad0dae22d8e4956fb4e4c1c17ef73fe237c1bdcec0801a6793af41d163b7a6f3460856ccc1feeacdcfc7ae0 platformio-core-6.0.1.tar.gz +" |