mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

With the upstream check migrated to the simple repo API, a number of the recipes required updates to: 1. Remove outdated UPSTREAM_CHECK_REGEX checks 2. Add recipe specific UPSTREAM_CHECK_PYPI_PACKAGE definitions for packages that use '_', CamelCase, or other deviations from PEP625 in the source archive Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
675 B
BlitzBasic
27 lines
675 B
BlitzBasic
DESCRIPTION = "Bluetooth Python extension module"
|
|
HOMEPAGE = "https://pybluez.github.io/"
|
|
SECTION = "devel/python"
|
|
|
|
DEPENDS = "bluez5"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8a71d0475d08eee76d8b6d0c6dbec543"
|
|
|
|
SRC_URI += "file://0001-Use-Py_ssize_t-when-parsing-buffer-length-fix-426-42.patch \
|
|
file://py-3.11.patch "
|
|
SRC_URI[sha256sum] = "c8f04d2e78951eaa9de486b4d49381704e8943d0a6e6e58f55fcd7b8582e90de"
|
|
|
|
PYPI_PACKAGE = "PyBluez"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
do_configure:prepend() {
|
|
sed -i -e "/use_2to3=True,/d" ${S}/setup.py
|
|
}
|
|
|
|
RDEPENDS:${PN} += "\
|
|
bluez5 \
|
|
python3-fcntl \
|
|
"
|