blob: b871a94283958188a76868401dba94ffa5872d0c (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
|
# Mantainer: sgar < swhaat at github >
pkgbase=esphomeyaml
pkgname=esphome
pkgver=2023.5.2
pkgrel=1
pkgdesc="Solution for your ESP8266/ESP32 projects with Home Assistant"
url="https://github.com/esphome/ESPHome"
depends=('python-setuptools'
'python-voluptuous'
'python-yaml'
'python-paho-mqtt'
'python-colorlog'
'python-tornado'
'python-protobuf'
'python-tzlocal'
'python-pyserial'
'python-ifaddr'
'python-pyaes'
'python-ecdsa'
'platformio'
'esptool'
'python-aioesphomeapi')
optdepends=('python-esphome-dashboard: esphome dashboard addition')
license=('MIT')
arch=('any')
replaces=('esphomeyaml')
source=("https://github.com/esphome/ESPHome/archive/${pkgver}.tar.gz")
sha256sums=('8a410e6a00a27b71f8527826e00c9cb43ddad67becc316c236e64b719d000e95')
prepare() {
cd "$srcdir/${pkgname}-${pkgver}"
sed -i 's/==.*//' requirements.txt
}
build() {
cd "$srcdir/${pkgname}-${pkgver}"
python setup.py build
}
package() {
cd "$srcdir/${pkgname}-${pkgver}"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
check() {
cd "$srcdir/${pkgname}-${pkgver}"
## Run tests, takes a while
cp ${pkgname}/__main__.py ${pkgname}.py
# python esphome.py tests/test1.yaml compile
# python esphome.py tests/test2.yaml compile
}
|