summaryrefslogtreecommitdiff
path: root/dev-python/evdev
diff options
context:
space:
mode:
authorRepository mirror & CI <repomirrorci@gentoo.org>2026-02-06 04:30:48 +0000
committerRepository mirror & CI <repomirrorci@gentoo.org>2026-02-06 04:30:48 +0000
commitfc37086e95024592aed2977d710ba2b1c6635217 (patch)
tree87c85b5c7dd95905829c0be678f6149e8868ad92 /dev-python/evdev
parent7c341a54e0e3fbef56d4ded193db6628f4cf979c (diff)
parent45aca8f54c38ec9107e4f23197a5b582c3c1ec0a (diff)
downloadgentoo-fc37086e95024592aed2977d710ba2b1c6635217.tar.gz
gentoo-fc37086e95024592aed2977d710ba2b1c6635217.tar.bz2
gentoo-fc37086e95024592aed2977d710ba2b1c6635217.zip
Merge updates from master
Diffstat (limited to 'dev-python/evdev')
-rw-r--r--dev-python/evdev/Manifest1
-rw-r--r--dev-python/evdev/evdev-1.9.3.ebuild46
2 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/evdev/Manifest b/dev-python/evdev/Manifest
index 441a65186fea..5af0d6efc98a 100644
--- a/dev-python/evdev/Manifest
+++ b/dev-python/evdev/Manifest
@@ -1 +1,2 @@
DIST python-evdev-1.9.2.gh.tar.gz 48925 BLAKE2B db6ae75edc292f84c9d8d035b371ab08d50b323562b41ae0ef798a3afc1acebdddbc7a9128011bcdd92cb0a61eba75718a4aac4c7e5253421ebe6f9f0404bed0 SHA512 25caf75925de21f90959be131d4fac3c181a2a57175fe598aec72962604e53a41ca233e1380204bb35048d25937701a7e22cc88a3cb40bba0eb343bb1b815921
+DIST python-evdev-1.9.3.gh.tar.gz 48953 BLAKE2B 93d9cb5f13fb83bbe028d7fe138ced73f369e97e48af9d3e6ce0d846169fe7378ad8f1e23a14e8d96c908d0d6f8f66c30cc69589454318e7de311fcdf16191f5 SHA512 3f78fc21da5afcea7651a36c13fdb3e7c5cfac0327c0a365e2d825c849f4a19664defba07a5ada45665864888301b5b38478b4e7716014877951872ae912bee8
diff --git a/dev-python/evdev/evdev-1.9.3.ebuild b/dev-python/evdev/evdev-1.9.3.ebuild
new file mode 100644
index 000000000000..7a06cfb86435
--- /dev/null
+++ b/dev-python/evdev/evdev-1.9.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+
+inherit distutils-r1
+
+MY_P=python-evdev-${PV}
+DESCRIPTION="Python library for evdev bindings"
+HOMEPAGE="
+ https://python-evdev.readthedocs.io/
+ https://github.com/gvalkov/python-evdev/
+ https://pypi.org/project/evdev/
+"
+SRC_URI="
+ https://github.com/gvalkov/python-evdev/archive/v${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # these tests rely on being able to open /dev/uinput
+ tests/test_uinput.py
+)
+
+python_configure_all() {
+ esetup.py build_ecodes \
+ --evdev-headers \
+ "${ESYSROOT}/usr/include/linux/input.h:${ESYSROOT}/usr/include/linux/input-event-codes.h:${ESYSROOT}:/usr/include/linux/uinput.h"
+}
+
+src_test() {
+ cd tests || die
+ distutils-r1_src_test
+}