blob: a0f653d33ea6ceb0e130f8c80e0cf6302abac3e4 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2023
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=python-dbus-fast
10PKG_VERSION:=2.21.1
11PKG_RELEASE:=1
12
13PYPI_NAME:=dbus-fast
14PYPI_SOURCE_NAME:=dbus_fast
15PKG_HASH:=87b852d2005f1d59399ca51c5f3538f28a4742d739d7abe82b7ae8d01d8a5d02
16
17PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk>
18PKG_LICENSE:=MIT
19PKG_LICENSE_FILES:=LICENSE
20
21PKG_BUILD_DEPENDS:=python-poetry-core/host python-cython/host python-wheel/host
22
23include ../pypi.mk
24include $(INCLUDE_DIR)/package.mk
25include ../python3-package.mk
26
27define Package/python3-dbus-fast
28 SECTION:=lang
29 CATEGORY:=Languages
30 SUBMENU:=Python
31 TITLE:=A faster version of dbus-next
32 URL:=https://github.com/Bluetooth-Devices/dbus-fast
33 DEPENDS:=+python3-light +python3-async-timeout +python3-asyncio \
34 +python3-logging +python3-urllib +python3-xml
35endef
36
37define Package/python3-dbus-fast/description
38 dbus-fast is a Python library for DBus that aims to be a performant fully
39 featured high level library primarily geared towards integration of
40 applications into Linux desktop and mobile environments.
41endef
42
43$(eval $(call Py3Package,python3-dbus-fast))
44$(eval $(call BuildPackage,python3-dbus-fast))
45$(eval $(call BuildPackage,python3-dbus-fast-src))