Date: Wednesday, February 3, 2021 @ 08:24:45 Author: alucryd Revision: 842442
home-assistant 2021.1.5-2: FS#69411 lift pip < 20.3 requirement Modified: home-assistant/trunk/PKGBUILD ----------+ PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-02-03 08:22:40 UTC (rev 842441) +++ PKGBUILD 2021-02-03 08:24:45 UTC (rev 842442) @@ -7,7 +7,7 @@ pkgname=home-assistant pkgdesc='Open source home automation that puts local control and privacy first' pkgver=2021.1.5 -pkgrel=1 +pkgrel=2 arch=(any) url=https://home-assistant.io/ license=(APACHE) @@ -72,7 +72,9 @@ patch -Np1 -i ../home-assistant-astral2.2.patch # lift hard dep constraints, we'll deal with breaking changes ourselves - sed 's/==/>=/g' -i setup.py homeassistant/package_constraints.txt + sed 's/==/>=/g' -i requirements.txt setup.py homeassistant/package_constraints.txt + # allow pip >= 20.3 to be used + sed 's/,<20.3//g' -i requirements.txt setup.py homeassistant/package_constraints.txt } build() {
