-
Notifications
You must be signed in to change notification settings - Fork 768
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devel/py-libevdev: python wrapper around the libevdev C library
Sponsored by: Serenity Cybersecurity, LLC
- Loading branch information
Жунёва Мария Михайловна
committed
Jul 13, 2024
1 parent
63fe6be
commit 67588b5
Showing
4 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
PORTNAME= libevdev | ||
PORTVERSION= 0.11 | ||
CATEGORIES= devel python | ||
MASTER_SITES= PYPI | ||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Python wrapper around the libevdev C library | ||
WWW= https://pypi.org/project/libevdev/ | ||
|
||
LICENSE= MIT | ||
LICENSE_FILE= ${WRKSRC}/COPYING | ||
|
||
USES= python | ||
USE_PYTHON= autoplist distutils | ||
|
||
NO_ARCH= yes | ||
|
||
.include <bsd.port.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
TIMESTAMP = 1716916929 | ||
SHA256 (libevdev-0.11.tar.gz) = e9ca006a4df2488a60bd9a740011ee948d81904be2364f017e560169508f560f | ||
SIZE (libevdev-0.11.tar.gz) = 27320 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
python-libevdev is a Python wrapper around the libevdev C library. | ||
It provides a Pythonic API to read events from the Linux kernel’s input device | ||
nodes and to read and/or modify the device’s state and capabilities. |