mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-18 15:40:27 +00:00
Upgrade to release 0.8.1: - Fixed a ValueError on Windows that was raised when the connections file was not on the home drive. - Limit click package to < 8.0 because of a) incompatibility with python 2.7, b) incompatibility between click 8.0 and clicl-repl. - Limit mock package to lt 4.0.3 to avoid issue issue that causes test failure. - Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick up fixes. - Migrated from Travis and Appveyor to GitHub Actions. This required several changes in package dependencies for development. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 KiB
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] = "3cbee091f0a4917394814d7e639ab9fe13ad0859e47288deabf2b09a4382c4ae"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-pyyaml-native \
|
|
${PYTHON_PN}-pywbem-native \
|
|
${PYTHON_PN}-six-native \
|
|
${PYTHON_PN}-click-native \
|
|
"
|
|
|
|
RDEPENDS_${PN}_class-target += "\
|
|
${PYTHON_PN}-ply \
|
|
${PYTHON_PN}-pyyaml \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-pywbem \
|
|
${PYTHON_PN}-click \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-prompt-toolkit \
|
|
${PYTHON_PN}-mock \
|
|
${PYTHON_PN}-packaging \
|
|
${PYTHON_PN}-nocasedict \
|
|
${PYTHON_PN}-yamlloader \
|
|
${PYTHON_PN}-click-repl \
|
|
${PYTHON_PN}-click-spinner \
|
|
${PYTHON_PN}-asciitree \
|
|
${PYTHON_PN}-tabulate \
|
|
${PYTHON_PN}-pydicti \
|
|
${PYTHON_PN}-nocaselist \
|
|
${PYTHON_PN}-custom-inherit \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|