pinenote-dbus-service: remove due to incompatibility with current kernel

Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7459>
This commit is contained in:
Antoine Martin 2025-12-15 11:07:01 -05:00 committed by The Friendly Merge Bot
parent ec4c1d9bfd
commit d5ae5740f8
No known key found for this signature in database
2 changed files with 0 additions and 45 deletions

View file

@ -1,35 +0,0 @@
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
pkgname=pinenote-dbus-service
pkgver=0.2.3
pkgrel=3
pkgdesc="Dbus daemon for controlling driver aspects on Pine64 Pinenote"
url="https://github.com/m-weigand/pinenote_dbus_service"
arch="aarch64"
license="MIT"
makedepends="cargo dbus-dev"
source="
pinenote-dbus-service-$pkgver.tar.gz::https://github.com/m-weigand/pinenote_dbus_service/archive/refs/tags/v$pkgver.tar.gz
pinenote.initd
"
subpackages="$pkgname-openrc $pkgname-systemd"
options="!check" # No testsuite
builddir="$srcdir/pinenote_dbus_service-$pkgver"
build() {
cargo build --release --locked
}
package() {
cargo install --path . --root="$pkgdir/usr"
install -Dm644 dbus_security_configuration/pinenote.conf -t "$pkgdir"/usr/share/dbus-1/system.d/
install -Dm755 "$srcdir"/pinenote.initd "$pkgdir"/etc/init.d/pinenote
install -Dm644 "$builddir"/systemd_units/pinenote_dbus_service.service -t "$pkgdir"/usr/lib/systemd/system/
rm "$pkgdir"/usr/.crates.toml
rm "$pkgdir"/usr/.crates2.json
}
sha512sums="
02bcec9b8681faf0137730c513cfb8f9c3fa59ade6811a98edabe21a4918939822a075d3ad9f8d734b29e683f85f0466e0c2aefdad946a955df78af5a6ae4c89 pinenote-dbus-service-0.2.3.tar.gz
362c20218610e7a5349eef40d54463a05906e258157e590ad1635591a548ddc60050142cfab41a0423797182e5ae392a7fe6476fc71b9c01cece384351e6f148 pinenote.initd
"

View file

@ -1,10 +0,0 @@
#!/sbin/openrc-run
description="Launch DBus service for driver aspects"
command="/usr/bin/pinenote_dbus_service"
command_background=yes
pidfile="/run/${RC_SVCNAME}.pid"
depend() {
need dbus
}