aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools
AgeCommit message (Collapse)Author
2022-04-11python3-wxgtk4: Require DISTRO_FEATURES as gtk3Robert Yang
It can't be built without gtk3: No package 'gtk+-3.0' found So make it have the same DISTRO_FEATURES as gtk3. It may also support gtk2, but it depends on wxwidgets which doesn't support gtk2, so we don't have to consider that. And python3-wxgtk4 doesn't have PACKAGECONFIG, so remove the checking for PACKAGECONFIG. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-11python3-wxgtk4: pass '--baselib' to WX_CONFIGKai Kang
Pass option '--baselib=${baselib}' to WX_CONFIG to support multilib build. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-10Revert "python3-cppy: upgrade 1.2.0 -> 1.2.1"Khem Raj
This reverts commit c4c2a90040bf3ab472d3d1a733bbda47d5f86ec6. This update fails to build python3-kiwisolver, it works ok with 1.2.0 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Wang Mingyu <wangmy@fujitsu.com>
2022-04-06python3-qface: upgrade 2.0.6 -> 2.0.7Samuli Piippo
Adds compatibility with jinja 3.1.1 Signed-off-by: Samuli Piippo <samuli.piippo@qt.io> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-werkzeug: upgrade 2.0.3 -> 2.1.1wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-websocket-client: upgrade 1.3.1 -> 1.3.2wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-tzlocal: upgrade 4.1 -> 4.2wangmy
Add dependency : python3-datetime Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-twine: upgrade 3.8.0 -> 4.0.0wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-trafaret: upgrade 2.1.0 -> 2.1.1wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-sqlalchemy: upgrade 1.4.32 -> 1.4.34wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-redis: upgrade 4.2.0 -> 4.2.1wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-pychromecast: upgrade 10.3.0 -> 11.0.0wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-protobuf: upgrade 3.19.4 -> 3.20.0wangmy
License-Update: modify the description of License: change from 3-Clause BSD License to BSD-3-Clause Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-pandas: upgrade 1.4.1 -> 1.4.2wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-cppy: upgrade 1.2.0 -> 1.2.1wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-click: upgrade 8.0.4 -> 8.1.2wangmy
Changelog from 8.0.4 to 8.1.2: ============================== - Fix error message for readable path check that was mixed up with the executable check. #2236 - Restore parameter order for Path, placing the executable parameter at the end. It is recommended to use keyword arguments instead of positional arguments. #2235 - Fix an issue with decorator typing that caused type checking to report that a command was not callable. #2227 - Drop support for Python 3.6. #2129 - Remove previously deprecated code. #2130 - Group.resultcallback is renamed to result_callback. - autocompletion parameter to Command is renamed to shell_complete. - get_terminal_size is removed, use shutil.get_terminal_size instead. - get_os_args is removed, use sys.argv[1:] instead. - Rely on PEP 538 and PEP 540 to handle selecting UTF-8 encoding instead of ASCII. Click's locale encoding detection is removed. #2198 - Single options boolean flags with show_default=True only show the default if it is True. #1971 - The command and group decorators can be applied with or without parentheses. #1359 - The Path type can check whether the target is executable. #1961 - Command.show_default overrides Context.show_default, instead of the other way around. #1963 - Parameter decorators and @group handles cls=None the same as not passing cls. @option handles help=None the same as not passing help. #1959 - A flag option with required=True requires that the flag is passed instead of choosing the implicit default value. #1978 - Indentation in help text passed to Option and Command is cleaned the same as using the @option and @command decorators does. A command's epilog and short_help are also processed. #1985 - Store unprocessed Command.help, epilog and short_help strings. Processing is only done when formatting help text for output. #2149 - Allow empty str input for prompt() when confirmation_prompt=True and default="". #2157 - Windows glob pattern expansion doesn't fail if a value is an invalid pattern. #2195 - It's possible to pass a list of params to @command. Any params defined with decorators are appended to the passed params. #2131. - @command decorator is annotated as returning the correct type if a cls argument is used. #2211 - A Group with invoke_without_command=True and chain=False will invoke its result callback with the group function's return value. #2124 - to_info_dict will not fail if a ParamType doesn't define a name. #2168 - Shell completion prioritizes option values with option prefixes over new options. #2040 - Options that get an environment variable value using autoenvvar_prefix treat an empty value as None, consistent with a direct envvar. #2146 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-bitarray: upgrade 2.4.0 -> 2.4.1wangmy
Changelog: ========== * improve 'resize()', see #167 * optimize 'copy_n()' by avoiding loops, #171 * '.bytereverse()' no longer sets unused bits to zero Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-06python3-wxgtk4: add distro feature check to match dependencyDavide Gardenal
Add REQUIRED_DISTRO_FEATURE to match wxwidgets, this fix build error (not buildable target) when x11 is not supported Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-kiwisolver: upgrade 1.4.0 -> 1.4.2zhengrq.fnst
Changelog: ========= This allows to buil with setuptools >= 61.2 Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-jdatetime: upgrade 4.0.0 -> 4.1.0zhengrq.fnst
Changelog: =========== feat(strptime):handle %b and %B directive. Improve README. ZWNJ Replacement. feat(strptime):handle %z directive. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-grpcio: upgrade 1.44.0 -> 1.45.0Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-itsdangerous: upgrade 2.1.1 -> 2.1.2Xu Huan
changelog: Handle date overflow in timed unsign on 32-bit systems. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-google-api-python-client: upgrade 2.36.0 -> 2.42.0Xu Huan
changelog: =============================================================================== https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-evdev: upgrade 1.4.0 -> 1.5.0Xu Huan
changelog: =============================================================================== -Fix documentation. -Re-enable TTY echo at evtest exit. -Fix ImportError: sys.meta_path is None, Python is likely shutting down. -Closing the input device file descriptor in InputDevice.close() now happens in the main thread, instead of in a new thread. -Fix util.find_ecodes_by_regex not working across all supported Python versions. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-04-04python3-cheetah: upgrade 3.2.6.post2 -> 3.2.6Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-wxgtk4: Use cross prefix with native wx-configKhem Raj
This ensures that it relocates the returns of queries w.r.t. target sysroot and not based on native sysroot where this tool itself resides and uses that by default. Fixes build issues seen on mips architecture Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Kai Kang <kai.kang@windriver.com>
2022-03-30python3-wxgtk4: add recipeKai Kang
Add recipe for python3-wxgtk4 which is a python3 interface to the wxWidgets Cross-platform C++ GUI toolkit. Add patches to * add back build options for oe * fixup build scripts for cross compile * fix sip oevrride functions compile errors Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-03-30python3-evdev: fix host header contaminationS. Lockwood-Childs
The attempt to pass in correct headers was being ignored, because it never got updated after distutils class was removed. Switch to SETUPTOOLS_BUILD_ARGS, which setuptools3 class does pay attention to. Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-03-30python3-pytest-metadata: upgrade 1.11.0 -> 2.0.1Wang Mingyu
Changelog from 1.11.0 to 2.0.1: ========= Fix issues with switching to pyproject.toml Drop support for python 2.7 and 3.6 Add support for python 3.9 and 3.10 Introduce pyproject.toml Provide metadata via JSON file Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-watchdog: upgrade 2.1.6 -> 2.1.7Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-tqdm: upgrade 4.63.0 -> 4.63.1Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-robotframework: upgrade 4.1.3 -> 5.0Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-redis: upgrade 4.1.4 -> 4.2.0Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-pymisp: upgrade 2.4.155.1 -> 2.4.157Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-pylint: upgrade 2.12.2 -> 2.13.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-autobahn: upgrade 22.2.2 -> 22.3.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-30python3-astroid: upgrade 2.11.0 -> 2.11.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-paramiko: upgrade 2.9.2 -> 2.10.3Trevor Gamblin
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-h5py: upgrade 3.5.0 -> 3.6.0Trevor Gamblin
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-protobuf: upgrade 3.19.3 -> 3.19.4Trevor Gamblin
From the release notes (https://github.com/protocolbuffers/protobuf/releases): - Make libprotobuf symbols local on OSX to fix issue #9395 (#9435) Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-intervals: upgrade 1.10.0.post1 -> 1.10.0Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-cantools: upgrade 37.0.1 -> 37.0.7Xu Huan
Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-cachetools: upgrade 4.2.4 -> 5.0.0Xu Huan
changelog: =============================================================================== -Require Python 3.7 or later (breaking change). -Remove deprecated submodules (breaking change). The cache, fifo, lfu, lru, mru, rr and ttl submodules have been deleted. Therefore, statements like from cachetools.ttl import TTLCache will no longer work. Use from cachetools import TTLCacheinstead. -Pass self to @cachedmethod key function (breaking change). The key function passed to the @cachedmethod decorator is now called as key (self, *args, **kwargs). The default key function has been changed to ignore its first argument, so this should only affect applications using custom key functions with the @cachedmethod decorator. -Change exact time of expiration in TTLCache (breaking change). TTLCache items now get expired if their expiration time is less than or equal to timer(). For applications using the default timer(), this should be barely noticable, but it may affect the use of custom timers with larger tick intervals. Note that this also implies that a TTLCache with ttl=0 can no longer hold any items, since they will expire immediately. -Change Cache.__repr__() format (breaking change). String representations of cache instances now use a more compact and efficient format, e.g.LRUCache({1: 1, 2: 2}, maxsize=10, currsize=2) -Add TLRU cache implementation. -Documentation improvements. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-arpeggio: upgrade 1.10.2 -> 2.0.0Xu Huan
changelog: Added eval_attrs call to NoMatch exceptions (ebfd60). Dropped support for deprecated Python versions. The lowest supported version is 3.6. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-28python3-alembic: upgrade 1.7.6 -> 1.7.7Xu Huan
changelog: =============================================================================== -[bug] [operations] Fixed issue where using Operations.create_table() in conjunction with a CheckConstraint that referred to table-bound Column objects rather than string expressions would be added to the parent table potentially multiple times, resulting in an incorrect DDL sequence. Pull request courtesy Nicolas CANIART. -[bug] [environment] The logging.fileConfig() line in env.py templates, which is used to setup Python logging for the migration run, is now conditional on Config.config_file_name not being None. Otherwise, the line is skipped as there is no default logging configuration present. -[bug] [mssql] Fixed bug where an Operations.alter_column() operation would change a “NOT NULL” column to “NULL” by emitting an ALTER COLUMN statement that did not specify “NOT NULL”. (In the absence of “NOT NULL” T-SQL was implicitly assuming “NULL”). An Operations.alter_column() operation that specifies Operations.alter_column.type should also specify include either Operations.alter_column.nullable or Operations.alter_column.existing_nullable to inform Alembic as to whether the emitted DDL should include “NULL” or “NOT NULL”; a warning is now emitted if this is missing under this scenario. Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-23python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDSTrevor Gamblin
Now that the recipe for python3-pytest-lazy-fixture exists, add it to RDEPENDS to fix the broken python3-prettytable ptests. Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-23python3-pytest-lazy-fixture: add recipeTrevor Gamblin
This is a minor extension of pytest that is used by some ptests, such as python3-prettytable. There is a set of ptests included (run-ptest script is based on the one from python3-aspectlib). Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-23python3-urllib3: RemoveScott Murray
This recipe has been moved to oe-core. Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-23python3-requests: RemoveScott Murray
This recipe has been moved to oe-core. Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2022-03-23python3-pysocks: RemoveScott Murray
This recipe has been moved to oe-core. Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>