Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
24 lines
650 B
BlitzBasic
24 lines
650 B
BlitzBasic
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2023 iris-GmbH infrared & intelligent sensors
|
|
|
|
SUMMARY = "pyproject-api aims to abstract away interaction with pyproject.toml style projects in a flexible way."
|
|
HOMEPAGE = "https://pyproject-api.readthedocs.io"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=11610a9d8fd95649cf8159be12b98cb7"
|
|
|
|
SRC_URI[sha256sum] = "1817dc018adc0d1ff9ca1ed8c60e1623d5aaca40814b953af14a9cf9a5cae538"
|
|
|
|
PYPI_PACKAGE = "pyproject_api"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
inherit pypi python_hatchling
|
|
|
|
DEPENDS += "\
|
|
python3-hatch-vcs-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-packaging \
|
|
python3-tomli \
|
|
"
|