From 15e05da9d1d2818ccdbf9e997034dba7231496ad Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 14 Oct 2020 10:32:53 +0300 Subject: python3-pywbemtools: Upgrade 0.7.3 -> 0.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 0.8.0: - Moving the commands “server profiles” and “serve centralinsts” to the new group profiles with the commmand names “profile list” and “profile centralinsts” added a command group and removed 2 commands from the server command group. - The –deprecation-warnings / –no-deprecation-warnings general option has been remamed to –warn / –no-warn, and it now controls the display of all Python warnings. - Order display of instance names when the .? is used to pick an instance name so the same order of instance names is displayed for all versions of Python. - Pinned prompt-toolkit to <3.0 on Python 3.8 on Windows to avoid WinError 995. - Fixed exception when command entered in interactive mode, on Python 2. - Test: Default connection file does not get restored in some cases during test. - AssociationShrub produces instancename slightly different table output in some cases for pywbem 1 vs previous versions(inclusion of “/:” prefix). - Test: Fixed attempt in test_class_cmds.py to invoke a non-static method on a class object. - Fix help message for “–deprecated” to be unicode so python 2.7 help does not fail. - Upgraded nocasedict and nocaselist packages to pick up fixes. - Error in test defintion for qualdecl Indication causes failure with pywbem i.1.0 where mocker validates qualifiers scopes. - Test: Preventive fix for potential issue with virtualenv raising AttributeError during installtest on Python 3.4. - Test: Added checking for no expected warning. - Fixed incorrect property order in instance table output, where key properties were not ordered before non-key properties but ordered along with them. - Docs/Test: Fixed failing install of Jinja2 on Python 3.4 by adding it to dev-requirements.txt and pinning it to <2.11 for Python 3.4. - Test: Aligned qualifier definitions in test MOF with CIM Schema. - Upgraded pywbem to 1.1.1 to pick up fixes and enhancements. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../pywbemtools/python3-pywbemtools_0.7.3.bb | 40 ---------------------- .../pywbemtools/python3-pywbemtools_0.8.0.bb | 40 ++++++++++++++++++++++ 2 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.3.bb create mode 100644 meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.3.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.3.bb deleted file mode 100644 index 8620057f59..0000000000 --- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.7.3.bb +++ /dev/null @@ -1,40 +0,0 @@ -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[md5sum] = "e3f8cadb8d1253b1b51afabcce4c3461" -SRC_URI[sha256sum] = "b475da4389ac77901191c886f4348660f3c0fd59365feb18ede47a086442efff" - -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" diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb new file mode 100644 index 0000000000..03caec539f --- /dev/null +++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_0.8.0.bb @@ -0,0 +1,40 @@ +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[md5sum] = "e41ef654a0af0461d6c164752963fdfb" +SRC_URI[sha256sum] = "b869bb217613cdfee1e97e8afc28fe3f9bf3b88f8fc99e588d03c4be0922c319" + +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" -- cgit 1.2.3-korg