mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-06 05:40:29 +00:00
Remove assignments to PYPI_PACKAGE where the value is the default value, that is the recipe name with any python3- prefix removed. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
31 lines
658 B
BlitzBasic
31 lines
658 B
BlitzBasic
DESCRIPTION = "python-libevdev is a Python wrapper around the libevdev C library."
|
|
HOMEPAGE = "https://gitlab.freedesktop.org/libevdev/python-libevdev"
|
|
SECTION = "devel/python"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d94c10c546b419eddc6296157ec40747"
|
|
|
|
SRC_URI[sha256sum] = "dc3369cd1401767b9ecb1117cd6b73faba9038e3bd9e1695a710a9e9d9415e8d"
|
|
|
|
inherit pypi python_hatchling ptest
|
|
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
libevdev \
|
|
python3-ctypes \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/test
|
|
cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
|
|
}
|
|
|