build: remove gpiod deps, add python-periphery
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
5d079d8c26
commit
78d7a4f560
|
@ -24,7 +24,8 @@ dependencies = [
|
||||||
"jinja2==3.1.2",
|
"jinja2==3.1.2",
|
||||||
"dbus-next==0.2.3",
|
"dbus-next==0.2.3",
|
||||||
"apprise==1.3.0",
|
"apprise==1.3.0",
|
||||||
"ldap3==2.9.1"
|
"ldap3==2.9.1",
|
||||||
|
"python-periphery==2.4.1"
|
||||||
]
|
]
|
||||||
requires-python = ">=3.7"
|
requires-python = ">=3.7"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -55,9 +55,9 @@ install_packages()
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "Error: system-dependencies.json not found, falling back to legacy pacakge list"
|
echo "Error: system-dependencies.json not found, falling back to legacy pacakge list"
|
||||||
PKGLIST="${PKGLIST} python3-virtualenv python3-dev python3-libgpiod liblmdb-dev"
|
PKGLIST="${PKGLIST} python3-virtualenv python3-dev liblmdb-dev"
|
||||||
PKGLIST="${PKGLIST} libopenjp2-7 libsodium-dev zlib1g-dev libjpeg-dev packagekit"
|
PKGLIST="${PKGLIST} libopenjp2-7 libsodium-dev zlib1g-dev libjpeg-dev"
|
||||||
PKGLIST="${PKGLIST} wireless-tools curl"
|
PKGLIST="${PKGLIST} packagekit wireless-tools curl"
|
||||||
PKGS=${PKGLIST}
|
PKGS=${PKGLIST}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -18,3 +18,4 @@ jinja2==3.1.2
|
||||||
dbus-next==0.2.3
|
dbus-next==0.2.3
|
||||||
apprise==1.3.0
|
apprise==1.3.0
|
||||||
ldap3==2.9.1
|
ldap3==2.9.1
|
||||||
|
python-periphery==2.4.1
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"debian": [
|
"debian": [
|
||||||
"python3-virtualenv",
|
"python3-virtualenv",
|
||||||
"python3-dev",
|
"python3-dev",
|
||||||
"python3-libgpiod",
|
|
||||||
"liblmdb-dev",
|
"liblmdb-dev",
|
||||||
"libopenjp2-7",
|
"libopenjp2-7",
|
||||||
"libsodium-dev",
|
"libsodium-dev",
|
||||||
|
|
Loading…
Reference in New Issue