mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-03-09 22:00:00 +00:00
Changelog: =========== -Increased minimum version of pywbem to 1.6.3 to pick up fixes -Fixed use of pytest.warns(None) -Resolved pylint issue on using max() -Test: Upgraded GitHub Actions plugins to use node.js 20 -Development: Fixed dependency issue with safety 3.0.0 by pinning it -Added RTD default config file -Test py27hang with subprocess32 package pywbemlistener py27 tests disabled (#1341) -Split safety run into separate make target and moved to end of test -Test: Circumvented a pip-check-reqs issue by excluding its version 2.5.0 -Fixed PyYAML install issue due to Cython 3 -Circumvented removal of Python 2.7 from setup-python -Set limit in requirements.txt to not use click-repl 0.3.0. -Added package level to .done files -Commits on May 28, 2023 -Add .safety-policy.yaml file. -Limits on use of urllib3 to < version 2.0. -Fixed coveralls issues with KeyError and HTTP 422 Unprocessable Entity Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
873 B
BlitzBasic
33 lines
873 B
BlitzBasic
SUMMARY = "A set of tools using pywbem"
|
|
DESCRIPTION = "A set of tools using pywbem to communicate with WBEM servers"
|
|
HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
|
|
|
|
SRC_URI[sha256sum] = "d2ad6c383490ddb3bbb0f737d23a07c7e8c345df65f8309bc554d8455cc913dc"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS:${PN}:class-target += "\
|
|
python3-ply \
|
|
python3-pyyaml \
|
|
python3-six \
|
|
python3-pywbem \
|
|
python3-click \
|
|
python3-requests \
|
|
python3-prompt-toolkit \
|
|
python3-mock \
|
|
python3-packaging \
|
|
python3-nocasedict \
|
|
python3-yamlloader \
|
|
python3-click-repl \
|
|
python3-click-spinner \
|
|
python3-asciitree \
|
|
python3-tabulate \
|
|
python3-pydicti \
|
|
python3-nocaselist \
|
|
python3-custom-inherit \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|