blob: 3093ceaa5dc019023d43d2ca45850b908b15a6a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Marten Ringwelski <git+alpine@maringuu.de>
# Maintainer: Marten Ringwelski <git+alpine@maringuu.de>
pkgname=platformio-core
pkgver=6.0.1
pkgrel=0
pkgdesc="An open source ecosystem for IoT development"
url="https://platformio.org"
arch="noarch !armhf !ppc64le" # limited by py3-starlette
license="Apache-2.0"
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
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
c248b7697f76de5daaf6880353115749c4c2f6825ad0dae22d8e4956fb4e4c1c17ef73fe237c1bdcec0801a6793af41d163b7a6f3460856ccc1feeacdcfc7ae0 platformio-core-6.0.1.tar.gz
"
|