aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended
AgeCommit message (Collapse)Author
2021-11-13recipes: Update SRC_URI branch and protocolsArmin Kuster
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-02-16python3-pykickstart: update to 3.32Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1Leon Anavi
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>
2021-02-05python3-pywbem: Upgrade 1.1.0 -> 1.1.3Leon Anavi
Upgrade to release 1.1.3: - MOF compiler: Fixed bug where MOF compiler did not correctly install a CIM schema in a non-default namespace because it tried to get the qualifiers from the default namespace. - Test: Changed dependency to ‘typed-ast’ to match the needs of ‘astroid’ and to install it only on CPython. This allows re-enabling PyPy3 on Travis. - Test: Pinned psutil to <=5.6.3 on PyPy2+3 to avoid an installation error. - Test: Increased the minimum version of ‘pyzmq’ on Python 3.9 to 19.0.0 to avoid an installation error. - Test: Circumvented unicode issue with lxml.etree.fromstring()/XML() on Python 3.9 by passing in binary strings. - Test: Adjusted _format()/_ascii2() testcases to PyPy3 behavior with binary vs unicode results. - Test: Disabled leaktest in travis also on PyPy3 (in addition to PyPy2). - Fixed a DeprecationWarning issued by urllib3 about using the whitelist_methods parameter of Retry. - Fixed issue on GitHub Actions with macos by no longer running “brew update” in pywbem_os_setup.sh. (issue #2544) - Docs: Fixed incorrect attribute name ‘provider_classnames’ in method provider example. (issue #2564) - Mitigated the coveralls HTTP status 422 by pinning coveralls-python to <3.0.0. - 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>
2021-02-05python3-meh: Upgrade 0.49 -> 0.50Leon Anavi
Upgrade to release 0.50: - dump: Use exception's type and value when calculating hash 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>
2021-01-27python3-send2trash_ initial add 1.5.0Andreas Müller
Currently it lives in: * meta-jupyter * meta-microcontroller Seems important so add it to meta-python Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20python3-pyephem: Upgrade 3.7.7.0 -> 3.7.7.1Leon Anavi
Upgrade to release 3.7.7.1: - Fixed a memory leak in readdb() - Fixed the Body.copy() method to correctly copy object-specific fields across to the new object, like Saturn ring tilt and Earth satellite catalog number 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>
2020-10-28python3-pyparted: Upgrade 3.11.6 -> 3.11.7Leon Anavi
Upgrade to release 3.11.7: - Set PY_SSIZE_T_CLEAN for the build - add nvme support - Update RELEASE file to make last step be "make pypi" 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>
2020-10-19python3-pywbemtools: Upgrade 0.7.3 -> 0.8.0Leon Anavi
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 <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13python3-pywbem: Upgrade 1.0.2 -> 1.1.0Leon Anavi
Upgrade to release 1.1.0: - Test: Fixed dependency issues with ‘pyrsistent’ package on Python 2.7 and Python 3.4. - Increased minimum versions of nocasedict to 1.0.0 and nocaselist to 1.0.2 to pick up fixes needed for pywbem. - Windows install: Upgraded WinOpenSSL to 1.1.1h. - Test: Changed collection of .yaml files in function tests to address DeprecationWarning issued by pytest. - Upgraded the minimum versions of nocasedict to 1.0.3 and of nocaselist to 1.0.1, to pick up fixes in these packages. - Removed dependency on package custom-inherit and removed package from pywbem. 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>
2020-10-13python3-pywbemtools: Upgrade 0.7.2 -> 0.7.3Leon Anavi
Upgrade to release 0.7.3: - 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. - Fixed incorrect property order in instance table output, where key properties were not ordered before non-key properties but ordered along with them. - Test: Fixed qualifier definitions in qualifier_filter_model.mof to accomodate improved MOF compiler in pywbem 1.1.0. 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>
2020-10-07python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2Leon Anavi
Upgrade to release 0.7.2: - Test: Fixed attempt in test_class_cmds.py to invoke a non-static method on a class object. - Test: Preventive fix for potential issue with virtualenv raising AttributeError during installtest on Python 3.4. 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>
2020-09-05python3-meh: Upgrade 0.48 -> 0.49Leon Anavi
Upgrade to release 0.49: - Fix make archive command after pot file removal - Add Readme with description and translation badge - Add pot file to the git ignore - Pause release when making bumpver to check and solve translations - Remove unused PREFIX from Makefile - Remove Zanata - Push translations to our translation repository - Download translations from Weblate - Remove pot file 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>
2020-08-25python3-pywbemtools: Add recipeLeon Anavi
Add release 0.7.1 of the python client tools to work with WBEM Servers using the PyWBEM API: - 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. 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>
2020-08-25python3-pywbem: Upgrade 0.17.4 -> 1.0.2Leon Anavi
Upgrade to release 1.0.2: - Fixed erronously raised HeaderParseError when WBEM server returns Content-type: text/xml. This content-type is valid according to DSP0200. Added testcases. - Fixed handling of ReturnQueryResultClass=True in WBEMConnection.OpenQueryInstances(). - Mock: In the mock support, fixed multiple errors in the mocked OpenQueryInstances(), and added testcases for it. - Mock: Added support for more ways the output parameters can be returned in method providers: The container for the output parameters can now also be a Mapping (including pywbem’s internal NocaseDict or nocasedict.NocaseDict), in addition to just the built-in dict. The values in such a Mapping container can now also be CIMParameter objects, in addition to just the CIM data values. This provides consistency with the way the input parameters of the method provider are represented. Removed the wbemcli command that was deprecated in pywbem 0.15.0. The recommended replacement is the pywbemcli command from the 'pywbemtools' package. 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>
2020-08-03python3-pywbem: Upgrade 0.17.3 -> 0.17.4Leon Anavi
Upgrade to release 0.17.4 with the following bug fixes: - Test: On Python 3.8, upgraded the minimum version of lxml from 4.4.1 to 4.4.3, in order to fix an XMLSyntaxError raised when encountering UCS-4 characters. - Test: Fixed issue with Swig when installing M2Crypto on native Windows in the Appveyor CI, reporting mssing files swig.swg and python.swg. This was fixed by pinning the swig version to 4.0.1. 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>
2020-07-12python3-pykickstart: 3.22 -> 3.26Kai Kang
Update python3-pykickstart from 3.22 to 3.26. * Update context of 0001-support-authentication-for-kickstart.patch Signed-off-by: Kai Kang <kai.kang@windriver.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-07-03python3-pywbem: Upgrade 0.17.2 -> 0.17.3Leon Anavi
Upgrade to release 0.17.3: - Improved support for array-typed elements in ValueMapping - Accomodated the newly released flake8 version 3.8.1 by removing the pinning of pyflakes to <2.2.0, and adjusting the source code of pywbem to get around the new flake8 messages E123, E124, E402. 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>
2020-06-30python3-pywbem: Upgrade 0.15.0 -> 0.17.2Leon Anavi
Upgrade to release 0.17.2: - Test: Fixed virtualenv related failures during install test. - Dev: Increased the versions of the base packages ‘pip’, ‘setuptools’ and ‘wheel’ to the content of Ubuntu 18.04 as a minimum, and to the lowest versions that support a particular Python versions beyond that. This only affects development of pywbem. - Setup: Added the scripts for installing OS-level dependencies (pywbem_os_setup.sh/.bat) to the source distribution archive. Note that starting with the upcoming pywbem 1.0.0, these scripts are no longer needed, so this change will not be rolled forward into 1.0.0. - Increased the version of ‘PyYAML’ from 5.1 to 5.3 on Python 2.7, to pick up a fix for dealing with Unicode characters above U+FFFF in narrow Python builds. This could not be fixed for Python 2.6 since PyYAML 3.12 dropped support for Python 2.6 - Fixed raise error for invalid reference_direction in WBEMServer.get_central_instances(). - Fixed raise error for missing ports in WBEMListener.__init__(). 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>
2020-06-30python3-pywbem: Consolidate in a single fileLeon Anavi
Consolidate inc and bb files into a single bb file. 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>
2020-06-30python3-pyparted: Upgrade 3.11.3 -> 3.11.6Leon Anavi
Inherit pypi. Upgrade to release 3.11.6: - Use preprocessor for the _ped module and what constants to include - Reduce libparted requirement to 3.2 - Update the pypi target in the Makefile - Reduce minimum Python required to 3.5 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>
2020-06-30python3-pyparted: Consolidate in a single fileLeon Anavi
Consolidate inc and bb files into a single bb file. 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>
2020-01-22meta-python: rename python2 recipes to python3 eqiuvalentAndrey Zhizhikin
Rename recipes which were previously built with python2 to their python3 equivalents. Use new python3 classes (setuptools3) in those recipes. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-01-22meta-python: remove python2 recipes from layerAndrey Zhizhikin
Remove recipes which require python2 from the layer. Those recipes are moved to meta-python2 and are not required here any longer. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-12-08python-pywbem: Update to 0.15.0Khem Raj
* LICENSE.txt move to toplevel * Use github for SRC_UTI, pypi source does not build Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-21recipes: rename distro_features_check to features_checkDenys Dmytriyenko
Avoid warning due to the class rename in OE-Core. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-21python-pyparted: upgrade 3.11.2 -> 3.11.3Zang Ruochen
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-21python3-pykickstart: upgrade 3.20 -> 3.22Zang Ruochen
-Refresh the following patch: 0003-comment-out-sections-shutdown-and-environment-in-gen.patch Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-20python-pyephem: upgrade 3.7.6.0 -> 3.7.7.0Zang Ruochen
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-20python3-meh: upgrade 0.47 -> 0.48Zang Ruochen
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-08-17python3-blivet: Add python3 to rdepsKhem Raj
Fix do_package_qa error ERROR: QA Issue: /usr/libexec/blivetd contained in package python3-blivet requires /usr/bin/python3, but no providers found in RDEPENDS_python3-blivet? [file-rdeps] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-07-10python3-blivetgui: fix blivet-gui brokenHongxu Jia
In target installer anaconda 30, when they try to go to blivet-gui, anaconda.log shows a traceback: 23:02:49,842 INF threading: Thread Done: AnaExecuteStorageThread (140274838624000) 23:02:49,844 DBG exception: running handleException 23:02:49,845 CRT exception: Traceback (most recent call last): File "/usr/lib/python3.7/site-packages/blivetgui/list_devices.py", line 165, in on_disk_selection_changed selection.select_iter(self.last_iter) TypeError: Argument 1 does not allow None as a value 23:02:49,845 DBG exception: Gtk running, queuing exception handler to the main loop 23:02:49,858 DBG ui.common: Entered spoke: BlivetGuiSpoke 23:02:49,858 DBG exception: running handleException 23:02:49,859 CRT exception: Traceback (most recent call last): File "/usr/lib/python3.7/site-packages/blivetgui/list_devices.py", line 165, in on_disk_selection_changed selection.select_iter(self.last_iter) TypeError: Argument 1 does not allow None as a value Backport a patch from upstream could fix the issue Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-07-10python-pyparted/python3-pyparted: 3.11.1 -> 3.11.2Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-07-10python3-blivet: 3.1.2 -> 3.1.4Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-07-10python3-pykickstart: 3.18 -> 3.20Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-06-15python3-pywbem:solved the conflict with python-pywbemZang Ruochen
-Use update-alternatives class to resolve conflicts with python-pywbem. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-06-15python-pywbem: solved the conflict with python3-pywbemZang Ruochen
-Use update-alternatives class to resolve conflicts with python3-pywbem. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-18python-pyparted/python3-pyparted: drop incorrect and redundant PVHongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-18python3-blivetgui: 2.1.9 -> 2.1.10Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-18python3-blivet: 3.1.1 -> 3.1.2Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-11-27python3-blivet: 3.0.1 -> 3.1.1Hongxu Jia
Drop 0012-remove-dmraid-dependency-check.patch and 0013-add-Z-y-and-y-to-lvm.pvcreate.patch which the new version has fixed the issues Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-11-27python3-blivetgui: 2.1.8 -> 2.1.9Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-11-27python3-pykickstart: 3.15 -> 3.18Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-15python3-blivet: add `-Z y' and `-y' to lvm.pvcreateHongxu Jia
While reinstall a crypt fs, it occasionally failed [snip] |gi.overrides.BlockDev.LVMError: Process reported exit code 5: WARNING: atari signature detected on /dev/mapper/luks-0e5f891c -7701-48bc-a41e-8d626b6ef953 at offset 466. Wipe it? [y/n]: [snip] Add `-Z y' and `-y' to lvm.pvcreate Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-15python3-blivet: remove dmraid from dependency checkHongxu Jia
OE does not have dmraid recipe, so remove it from dependency check. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-15python-pykickstart: fix typoHongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-02python3-blivet: 2.2.0 -> 3.0.1Hongxu Jia
- Drop 0004-Mount-var-volatile-during-install.patch and 0005-update-fstab-by-appending.patch which are moved to python3-anaconda 28.22.11 - Drop 0013-Revert-Adapt-to-logging-module-name-change.patch whichis obsolete Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-02python3-blivetgui: 2.1.5 -> 2.1.8Hongxu Jia
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-02python3-pykickstart: 2.35 -> 3.15Hongxu Jia
- Rebase 0001 ~ 0004 - Drop 0005-tweak-shebang-to-python3.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-07-27python3-meh: update to version 0.47Derek Straka
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>