aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-02-19python3-meson-python: move to oe-coreTim Orling
As part of the move of python_mesonpy.bbclass to oe-core. python3-numpy in oe-core declares "mesonpy" as the build-backend in pyproject.toml. This is part of an overall move to replace usage of setuptools3.bbclass. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python_mesonpy.bbclass: move to oe-coreTim Orling
This is now the declared PEP-517 build-backend for python3-numpy Move the support into oe-core Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-gevent: upgrade 23.9.1 -> 24.2.1Wang Mingyu
0001-_setuputils.py-Do-not-add-sys_inc_dir.patch refreshed for 24.2.1 Changelog: =========== -Add support for Python patch releases 3.11.8 and 3.12.2, which changed internal details of threading. -Errors raised from subprocess.Popen may not have a filename set. -SSLSocket.recv_into and SSLSocket.read no longer require the buffer to implement len and now work with buffers whose size is not 1. -gh-108310: Fix CVE-2023-40217: Check for & avoid the ssl pre-close flaw. -Drop setuptools to a soft test dependency. -Drop support for very old versions of CFFI. -Update bundled c-ares from 1.19.1 to 1.26.0. -Locks created by gevent, but acquired from multiple different threads (not recommended), no longer spin to implement timeouts and interruptible blocking. Instead, they use the native functionality of the Python 3 lock. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-engineio: upgrade 4.8.2 -> 4.9.0Wang Mingyu
Changelog: =========== -More robust handling of polling disconnects -Clearer client logs after disconnect Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-elementpath: upgrade 4.2.0 -> 4.3.0Wang Mingyu
Changelog: ========== -Change the purpose of the evaluation with a dynamic schema context, that is now used only for labeling tokens with XSD types -The static evaluation is now performed also when a schema is provided to the parser -First tests with Python 3.13 pre-releases by adding a tox.ini testenv Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-dnspython: upgrade 2.5.0 -> 2.6.0Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-django: upgrade 5.0.1 -> 5.0.2Wang Mingyu
Changelog: =========== -Reallowed, following a regression in Django 5.0.1, filtering against local foreign keys not included in ModelAdmin.list_filter (#35087). -Fixed a regression in Django 5.0 where links in the admin had an incorrect color (#35121). -Fixed a bug in Django 5.0 that caused a crash of Model.full_clean() on models with a GeneratedField (#35127). -Fixed a regression in Django 5.0 that caused a crash of FilteredRelation() with querysets as right-hand sides (#35135). FilteredRelation() now raises a ValueError on querysets as right-hand sides. -Fixed a regression in Django 5.0 that caused a crash of the dumpdata management command when a base queryset used prefetch_related() (#35159). -Fixed a regression in Django 5.0 that caused the request_finished signal to sometimes not be fired when running Django through an ASGI server, resulting in potential resource leaks (#35059). -Fixed a bug in Django 5.0 that caused a migration crash on MySQL when adding a BinaryField, TextField, JSONField, or GeometryField with a db_default (#35162). -Fixed a bug in Django 5.0 that caused a migration crash on models with a literal db_default of a complex type such as dict instance of a JSONField. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-cmake: upgrade 3.28.1 -> 3.28.3Wang Mingyu
Changelog: ========== -chore(deps): bump cmake from 3.27.9 to 3.28.1 -ci: group dependabot updates -chore(deps): update pre-commit hooks -chore(deps): bump the actions group with 1 update -Update to OpenSSL 3.0.13 -chore(ci): use 4 threads to compile on GHA -Update to CMake 3.28.3 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-cantools: upgrade 39.4.3 -> 39.4.4Wang Mingyu
Changelog: slight modification to regex to enable small scaling factors that have scientific numbers in them Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-bidict: upgrade 0.22.1 -> 0.23.0Wang Mingyu
License-Update: Copyright year updated to 2024 Changelog: ============ -Drop support for Python 3.7, which reached end of life on 2023-06-27, and take advantage of features available in Python 3.8+. -Remove FrozenOrderedBidict now that Python 3.7 is no longer supported. -Remove namedbidict due to low usage. -Remove the kv field of OnDup which specified the OnDupAction to take in the case of Key and Value Duplication. -Improve type hints for the inv shortcut alias for inverse. -Fix a bug where calls like bidict(None), bi.update(False) -All __init__(), update(), and related methods now handle SupportsKeysAndGetItem objects that are not Mappings the same way that MutableMapping.update() does, before falling back to handling the provided object as an iterable of pairs. -The repr() of ordered bidicts now matches that of regular bidicts -This tracks with the change to collections.OrderedDict's repr() in Python 3.12. -Test with Python 3.12 in CI. -Drop use of Trove classifiers that declare support for specific Python versions in package metadata. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-awesomeversion: upgrade 23.11.0 -> 24.2.0Wang Mingyu
Changelog: ========== Implement handling of 0x prefixed hex strings Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19python3-aiohue: upgrade 4.7.0 -> 4.7.1Wang Mingyu
Changelog: ========= #281 - Treat EffectStatus.NO_EFFECT the same as None #262 - Allow a scene's palette to be absent Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19ostree: upgrade 2024.1 -> 2024.3Wang Mingyu
Changelog: =========== -prepare-root: Unify root.transient with composefs -libostree: write selinux xattr when on non-selinux systems -ostree.repo-config(5): Fix a typo -Expose MOUNT_ATTR_IDMAP detection result to C code -docs/atomic-rollbacks: Add a section on rollbacks Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19mpich: upgrade 4.1.2 -> 4.2.0Wang Mingyu
Changelog: https://www.mpich.org/2024/02/09/mpich-4-2-0-released/ License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19logwatch: upgrade 7.9 -> 7.10Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19libmime-types-perl: upgrade 2.24 -> 2.26Wang Mingyu
Changelog: ========== - iana updates - support multi-level extensions. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19libmanette: upgrade 0.2.6 -> 0.2.7Wang Mingyu
Changelog: ========== * Allow building as a static library * ManetteMappingManager: - Strip leading and trailing spaces from mappings * ManetteMonitor - Always use file backend in Flatpak - Skip non-evdev devices - Fix object construction * Various cleanups Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19libei: upgrade 1.2.0 -> 1.2.1Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19isomd5sum: upgrade 1.2.3 -> 1.2.4Wang Mingyu
Changelog: =========== -Add support for riscv64 -workflows: Update to use actions/checkout -Fix checksum failure with small isos -test: Update testing to include small iso and larger iso -Add a GitHub Action to run tests -Add mips64 -testpyisomd5sum.py: Support genisoimage, Python 2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19gnome-keyring: upgrade 42.1 -> 46.1Wang Mingyu
0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch refreshed for 46.1 Changelog: ========= * ssh-agent: avoid deadlock when agent process dies before we connect to it * gkm: fix test-sexp with GCC 14 * Updated translations Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19gnome-bluetooth: upgrade 42.7 -> 42.8Wang Mingyu
Changelog: -This update fixes problems with some devices not disappearing from the list of quick settings in GNOME Shell. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19gjs: upgrade 1.78.3 -> 1.78.4Wang Mingyu
Changelog: package: Specify GIRepository version Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19gegl: upgrade 0.4.46 -> 0.4.48Wang Mingyu
Changelog: -GeglColor extended with GBytes API, and space aware accesors for RGB and CMYK. Better runtime handling of mismatched GEGL ops in graphs. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19btop: upgrade 1.3.0 -> 1.3.2Wang Mingyu
Changelog: ========= -fix: Can't detect librocm 6.0.x -GPU: Added support for dynamic loading of ROCm v6 libraries -Increase max network interface name to 15 -Fix OpenBSD UTF-8 locale detection -Add hot-reloading of config file with CTRL+R or SIGUSR2 signal -Add battery power draw for linux and freebsd -Fix crash caused by string exception when cpu clock is exactly between 999.5 and 999.9 Mhz -Write newline at end of config file -Add theme based on Everforest Dark Medium palette -fix: don't mangle memory for zombie processes -Share common code from collect -Fixed incorrect used and available memory for OSX Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19babl: upgrade 0.1.106 -> 0.1.108Wang Mingyu
Changelog: "double" and "half" support in cli-tool, build fixes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19gedit: update 46.1 -> 46.2Markus Volk
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19libgedit-gtksourceview: update 299.0.5 -> 299.1.0Markus Volk
Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-19iwd: update 2.13 -> 2.14Markus Volk
ver 2.14: Fix issue with accepting PTK 4/4 after receiving PTK 2/4. Fix issue with frequency limit for quick scans. Fix issue with limiting DHCPv4 attempts. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-18dropwatch: Use header files from sysroot instead of build hostchenheyun
it does not match with our real head file form kernel.(net_dropmon.h) net_dropmon.h in dropwatch local src/net_dropmon.h. linux kernel also have it in include/uapi/linux/net_dropmon.h for example,our kernel is linux5.10: diff tmp/work/cortexa57-poky-linux/dropwatch/1.5.4+git-r0/recipe-sysroot/usr/ include/linux/net_dropmon.h tmp/work/cortexa57-poky-linux/dropwatch/1.5.4+git-r0/git/src/net_dropmon.h 1c1,3 < 95a94 > NET_DM_ATTR_REASON, /* string */ it will cause mismatch when we use dropwatch in older kernel version(v5.10), will cause dropwatch and kernel drop_monitor module mismatch with netlink talk. we should build it with header from sysroot which comes from matching kernel. Signed-off-by: chenheyun <chen_heyun@163.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-18python3-httpx: respect libdir in packagingMartin Jansa
* hardcoding /usr/lib is always wrong, doesn't match with libdir e.g. for multilib causing: ERROR: QA Issue: python3-httpx: Files/directories were installed but not shipped in any package: /usr/lib64 /usr/lib64/python3.12 /usr/lib64/python3.12/site-packages /usr/lib64/python3.12/site-packages/httpx ... /usr/lib64/python3.12/site-packages/httpx/__pycache__/__version__.cpython-312.pyc /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/entry_points.txt /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/WHEEL /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/METADATA /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/RECORD /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/licenses /usr/lib64/python3.12/site-packages/httpx-0.26.0.dist-info/licenses/LICENSE.md Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. python3-httpx: 63 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17influxdb: Add missing group to static idYoann Congal
The influxdb group is used by the influxdb recipe and created by default by the useradd command. Also, align static passwd file to the USERADD_PARAM in the influxdb recipe and add the missing newline at end of file. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17influxdb: Fix /etc files ownerYoann Congal
"chown root.influxdb" is a typo of "chown root:influxdb" Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17libtinyxml2: allow to build both shared and static librariesFathi Boudra
E.g. if we want to build uuu statically, libtinyxml2 static library is missing as it builds only the shared library by default. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17libtinyxml2: fix the homepage URLFathi Boudra
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17ntp: Add missing 'ntp' static group idYoann Congal
This fixes build in reproducible test environment [0]: ERROR: ntp-4.2.8p17-r0 do_install: ExecutionError[...] | chown: invalid group: ‘ntp:ntp’ Also add a missing newline at end-of-file. [0]: https://autobuilder.yoctoproject.org/typhoon/#/builders/155/builds/12/steps/28/logs/stdio line 12221 Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-17freeradius: Add missing 'radiusd' static group idYoann Congal
This fixes build in reproducible test environment [0]: ERROR: freeradius-3.0.26-r0 do_install: ExecutionError [...] | chown: invalid group: ‘radiusd:radiusd’ [0]: https://autobuilder.yoctoproject.org/typhoon/#/builders/155/builds/12/steps/28/logs/stdio line 12830 Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-pylint: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 * Sort all REDEPENDS alphabetically * Drop trailing whitespace Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-xxhash: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-pyyaml-include: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-execnet: switch to pytest --automakeTim Orling
Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-typeguard: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-pyserial: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-pytoml: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-betamax: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-polyline: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-platformdirs: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 * Sort RDEPENDS for ptest alphabetically Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-semver: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-pillow: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-appdirs: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-02-16python3-simpleeval: switch to pytest --automakeTim Orling
* Also replace ${PYTHON_PN} with python3 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>