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

Add pyppmd, a PPMd compression/decompression library. Version 1.1.0 provides: - Add Python 3.12 support - Minimum required python to be 3.8 - Export PPMD8_RESTORE_METHOD* constants - Drop setup.cfg - Drop github actions workflows - README: Add SPDX identifier - CI run on python 3.10, 3.11 and 3.12 This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
574 B
BlitzBasic
21 lines
574 B
BlitzBasic
SUMMARY = "PPMd compression/decompression library"
|
|
HOMEPAGE = "https://pyppmd.readthedocs.io/en/latest/"
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
SECTION = "devel/python"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
SRC_URI[sha256sum] = "1d38ce2e4b7eb84b53bc8a52380b94f66ba6c39328b8800b30c2b5bf31693973"
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-setuptools-scm-native \
|
|
${PYTHON_PN}-toml-native \
|
|
${PYTHON_PN}-wheel-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-email \
|
|
${PYTHON_PN}-importlib-metadata \
|
|
"
|