setuptools 64.0.0 deprecated the use of --global-option to pass build parameters[1]. This replaces the use of --global-option with --build-option. [1]: https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=python-evdev
|
|
PKG_VERSION:=1.6.1
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_MAINTAINER:=Paulo Costa <me@paulo.costa.nom.br>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
PYPI_NAME:=evdev
|
|
PKG_HASH:=299db8628cc73b237fc1cc57d3c2948faa0756e2a58b6194b5bf81dc2081f1e3
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-evdev
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=python3-evdev
|
|
URL:=https://github.com/gvalkov/python-evdev
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+python3-ctypes
|
|
endef
|
|
|
|
define Package/python3-evdev/description
|
|
Bindings to the Linux input handling subsystem
|
|
endef
|
|
|
|
LINUX_EVDEV_HEADERS="$(LINUX_DIR)/include/uapi/linux/input.h:$(LINUX_DIR)/include/uapi/linux/input-event-codes.h"
|
|
|
|
PYTHON3_PKG_BUILD_CONFIG_SETTINGS:= \
|
|
--build-option=build \
|
|
--build-option=build_ecodes \
|
|
--build-option=--evdev-headers="$(LINUX_EVDEV_HEADERS)" \
|
|
--build-option=build_ext
|
|
|
|
$(eval $(call Py3Package,python3-evdev))
|
|
$(eval $(call BuildPackage,python3-evdev))
|
|
$(eval $(call BuildPackage,python3-evdev-src))
|