summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* cpp-argparse: added recipeYishai Jaffe2025-07-091-0/+13
| | | | | | | Added recipe for C++ argparse library Signed-off-by: Yishai Jaffe <yishai1999@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jsonschema-default: added recipeYishai Jaffe2025-07-091-0/+14
| | | | | | | Added jsonschema-default python package Signed-off-by: Yishai Jaffe <yishai1999@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rstr: added recipeYishai Jaffe2025-07-091-0/+12
| | | | | | | Added rstr python package Signed-off-by: Yishai Jaffe <yishai1999@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* iwd: update 3.8 -> 3.9Markus Volk2025-07-091-1/+1
| | | | | | | | | | | ver 3.9: Fix issue with Access Point mode and frequency unlocking. Fix issue with network configuration and BSS retry logic. Fix issue with handling busy notification from Access Point. Fix issue with handling P-192, P-224 and P-521 for SAE. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire: update 1.4.5 -> 1.4.6Markus Volk2025-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PipeWire 1.4.6 (2025-06-27) This is a bugfix release that is API and ABI compatible with previous 1.x releases. Highlights - Fix a crasher bug in filter-chain and one in the ALSA plugin. - Improve latency reporting in module-combine-stream. - Some smaller fixes and cleanups. modules - Improve latency handling in module-combine-stream. (#4731) - Improve save activation/deactivation of the filter-graph in module-filter-chain to avoid crashes. (#4700, #4750) - Add an option to disable RAOP with a context.property. SPA - Handle NULL io in alsa wakeup code. This can happen when there is negotiation happening. (#4734) - Enable interrupts after an ALSA error to keep the dataflow going. - Reset some stats better after an ALSA error. - Support the alsa.use-ucm property for the ALSA udev plugin. pulse-server - Mark empty buffers. This improves some code paths in the mixer. GStreamer - Fix a refcount issue in the device provider. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlsec1: fix build with gnutls or openssl PACKAGECONFIG not enabledMartin Jansa2025-07-091-1/+1
| | | | | | | | | | | the .pc files might not be installed based on the PACKAGECONFIG value fixes: https://git.openembedded.org/meta-openembedded/commit/?id=cce20b5124e28ee55adf03fe062084f38d065580 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: update to v2.2.2Bartosz Golaszewski2025-07-081-1/+1
| | | | | | | | This is a bugfix release addressing issues in tools and core library. No API changes. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsoup-2.4: fix CVE-2025-4945Changqing Li2025-07-082-0/+118
| | | | | | | | Refer: https://gitlab.gnome.org/GNOME/libsoup/-/issues/448 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* json-schema-validator: Upgrade 2.2.0 -> 2.3.0 to allow CMake 4+ compatibilityAlper Ak2025-07-085-193/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Drop patches because all of them fixed in the newer version. A few explanation for 0001-Set-Json_validator-Install-off-if-it-finds-it-via-li.patch: For newer version CMakeLists.txt, this logic is now handled automatically using the PROJECT_IS_TOP_LEVEL variable. The JSON_VALIDATOR_INSTALL option is set to ON only when the project is being built as the top-level project, and it is automatically disabled when included as a dependency. As a result, the patch is no longer needed and the behavior it intended to provide is already covered by the new build system logic. Changelog: - Some bugfixes, but mainly a big re-work of the CMakeLists.txt making it use and usable for FetchContent-users. Fix: | CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Upgrade 2.3.2 -> 2.5.0 to allow CMake 4+ compatibilityAlper Ak2025-07-083-66/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Drop 0001-Do-not-download-the-catch-framework-during-configure.patch The cli11 recipe previously included a patch to disable downloading of the Catch2 test framework during the build, and manually copied the catch.hpp file into the source tree. With the new change, we now declare a dependency on the catch2 recipe, allowing the build system to use the system provided Catch2 headers instead of downloading or copying them. The patch to remove the download logic is no longer needed and has been dropped for a cleaner and more maintainable recipe. Also, If Catch2 is already found, it doesn't enter the block of the download step accordingly to CMakeLists.txt. - The LICENSE file has changed so updated LIC_FILES_CHKSUM to match the new md5sum. Changelog: https://github.com/CLIUtils/CLI11/blob/v2.5.0/CHANGELOG.md Fix: | CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* apitrace: Upgrade 11.1 -> 13.0 to allow CMake 4+ compatibilityAlper Ak2025-07-082-48/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | - Drop 0001-Explicit-header-stdint.patch because already fixed in newer version. Changelog: https://github.com/apitrace/apitrace/releases/tag/13.0 https://github.com/apitrace/apitrace/releases/tag/12.0 Fix: | CMake Error at thirdparty/libbacktrace.cmake:32 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | Call Stack (most recent call first): | thirdparty/CMakeLists.txt:13 (include) | thirdparty/CMakeLists.txt:55 (include_with_scope) Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* json-spirit: Add patch for CMake 4+ compatibilityAlper Ak2025-07-082-0/+41
| | | | | | | | | | | | | | | | | | | Fix: | CMake Error at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cdrkit: Add patch for CMake 4+ compatibilityAlper Ak2025-07-082-0/+38
| | | | | | | | | | | | | | | | | | | Fix: | CMake Error in CMakeLists.txt: | No cmake_minimum_required command is present. A line of code such as | | cmake_minimum_required(VERSION 4.0) | | should be added at the top of the file. The version specified may be lower | if you wish to support older CMake versions for this project. For more | information run "cmake --help-policy CMP0000". | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* docopt.cpp: Add patch for CMake 4+ compatibilityAlper Ak2025-07-082-2/+41
| | | | | | | | | | | | | | | | | | | Fix: | CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbpoll: Add patch for CMake 4+ compatibilityAlper Ak2025-07-082-2/+44
| | | | | | | | | | | | | | | | | | | Fix: | CMake Error at CMakeLists.txt:3 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* avro-c++: Upgrade 1.11.3 -> 1.12 to allow CMake 4+ compatibilityAlper Ak2025-07-085-75/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Drop workaround flag for dangling reference - Refresh patches and drop 0003-Update-CXX-standard-to-CXX14.patch because already assigned to C++17 - Drop xz and zlib because they aren't shown as build dependency and without them the build completes without errors - Fetch the fmt in SRC_URI and put it in the right place so the CMake doesn't need to run FetchContent - The LICENSE file has changed so updated LIC_FILES_CHKSUM to match the new md5sum Changelog: https://github.com/apache/avro/releases/tag/release-1.12.0 Fix: | CMake Error at CMakeLists.txt:19 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. ---- | CMake Warning at /opt/yocto-masternext-contribute/sources/build/tmp/work/core2-64-poky-linux/avro-c++/1.12/recipe-sysroot-native/usr/share/cmake-4.0/Modules/FetchContent.cmake:2111 (message): | FETCHCONTENT_FULLY_DISCONNECTED is set to true, which requires the source | directory for dependency fmt to already be populated. This generally means | it must not be set to true the first time CMake is run in a build | directory. The following source directory should already be populated, but | it doesn't exist: | | /opt/yocto-masternext-contribute/sources/build/tmp/work/core2-64-poky-linux/avro-c++/1.12/build/_deps/fmt-src | | Policy CMP0170 controls enforcement of this requirement. | Call Stack (most recent call first): | /opt/yocto-masternext-contribute/sources/build/tmp/work/core2-64-poky-linux/avro-c++/1.12/recipe-sysroot-native/usr/share/cmake-4.0/Modules/FetchContent.cmake:2384 (__FetchContent_Populate) | CMakeLists.txt:93 (FetchContent_MakeAvailable) | | | -- Could NOT find Snappy (missing: SNAPPY_LIBRARIES SNAPPY_INCLUDE_DIR) | Disabled snappy codec. libsnappy not found. | -- Configuring done (0.4s) | CMake Error at CMakeLists.txt:149 (target_link_libraries): | Target "avrocpp" links to: | | fmt::fmt-header-only | | but the target was not found. Possible reasons include: | | * There is a typo in the target name. | * A find_package call is missing for an IMPORTED target. | * An ALIAS target is missing. | | | | CMake Error at CMakeLists.txt:138 (target_link_libraries): | Target "avrocpp_s" links to: | | fmt::fmt-header-only | | but the target was not found. Possible reasons include: | | * There is a typo in the target name. | * A find_package call is missing for an IMPORTED target. | * An ALIAS target is missing. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liblightmodbus: Upgrade 2.0.2 -> 3.0 to allow CMake 4+ compatibilityAlper Ak2025-07-083-51/+17
| | | | | | | | | | | | | | | | | | | | | | - Drop 0001-cmake-Use-GNUInstallDirs-instead-of-hardcoding-lib-p.patch because it's no longer exists. - Drop pkgconfig and cmake inherit since library is now header-only and does not require build tools - Install lightmodbusConfig.cmake for consumers using CMake. Changelog: https://github.com/Jacajack/liblightmodbus/releases/tag/v3.0 Fix: | CMake Error at CMakeLists.txt:2 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xterm: upgrade 394 -> 401Wang Mingyu2025-07-081-2/+2
| | | | | | | License-Update: Copyright year updated to 2025 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk: upgrade 9.0.1 -> 9.0.2Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-transitions: upgrade 0.9.2 -> 0.9.3Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-scikit-build-core: upgrade 0.11.4 -> 0.11.5Wang Mingyu2025-07-082-4/+4
| | | | | | | | | | | | | | | 0001-builder.py-Check-PYTHON_INCLUDE_DIR.patch refreshed for 0.11.5 Changelog: =============== - Improve .gitignore iteration speed - Warn on 3.13.4 on Windows - Add debug logging explaining why a file is included/excluded - Fix a typo in a column-name of the platform-machine table Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pystemd: upgrade 0.13.2 -> 0.13.4Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | Changelog: ============= - Fix deprecation warning: LICENSE is autodetected - fixing DbusRemote - enable user_mode in futures - add apt-get update to release Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyais: upgrade 2.9.4 -> 2.11.1Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | | | | | Changelog: =========== * apply fix from https://gitlab.com/holado_framework/python * pyais now handles type 16 messages shorter than 96 bit correctly * breaking: added two classes for type 16 - 'isinstance(msg, MessageType16)' checks will need updating * apply fixes from https://gitlab.com/holado_framework/python * closes: https://github.com/M0r13n/pyais/issues/183 * renamed custom 'JSONEncoder' to 'AISJSONEncoder' to avoid confusion with 'json.JSONEncoder' * refactored main.py ('ais-decode') for better error handling * added examples/ais-encode Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pillow: upgrade 11.2.1 -> 11.3.0Wang Mingyu2025-07-081-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-multidict: upgrade 6.5.1 -> 6.6.3Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-mlcommons-loadgen: upgrade 5.0.22 -> 5.1.0Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ipython: upgrade 9.3.0 -> 9.4.0Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eventlet: upgrade 0.40.0 -> 0.40.1Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | | | Changelog: =============== * "Fix" fork() so it "works" on Python 3.13, and "works" better on older Python versions * Fix patching of removed URLopener class in Python 3.14 * ReferenceError except while count rlock * Replace deprecated datetime.utcfromtimestamp * Remove duplicate steps * Replace deprecated datetime.datetime.utcnow Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-elementpath: upgrade 5.0.2 -> 5.0.3Wang Mingyu2025-07-081-1/+1
| | | | | | | | | Changelog: =============== Fix for XPath 1.0 processing of schema annotated XML data Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: upgrade 7.9.1 -> 7.9.2Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | Changelog: ============== - Fix: complex conditionals within a line might cause a KeyError when using sys.monitoring - Fix: we can now measure coverage for code in Python archive (.par) files. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bleak: upgrade 0.22.3 -> 1.0.1Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-asgiref: upgrade 3.8.1 -> 3.9.0Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | | | | Changelog: ============= * Adds support for Python 3.13. * Drops support for (end-of-life) Python 3.8. * Fixes an error with conflicting kwargs between AsyncToSync and the wrapped function. * Fixes Local isolation between asyncio Tasks. * Fixes a reference cycle in Local * Fixes a deadlock in CurrentThreadExecutor with nested async_to_sync -> sync_to_async -> async_to_sync -> create_task calls. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiosignal: upgrade 1.3.2 -> 1.4.0Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | | Changelog: =============== - Added decorator functionality to Signal as a convenient way to add a callback - Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a Signal callback should now be defined like Signal[int, str] - Removed the sphinxcontrib-asyncio documentation dependency. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* parallel: upgrade 20250522 -> 20250622Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libssh: upgrade 0.11.1 -> 0.11.2Wang Mingyu2025-07-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Security: * CVE-2025-4877 - Write beyond bounds in binary to base64 conversion * CVE-2025-4878 - Use of uninitialized variable in privatekey_from_file() * CVE-2025-5318 - Likely read beyond bounds in sftp server handle management * CVE-2025-5351 - Double free in functions exporting keys * CVE-2025-5372 - ssh_kdf() returns a success code on certain failures * CVE-2025-5449 - Likely read beyond bounds in sftp server message decoding * CVE-2025-5987 - Invalid return code for chacha20 poly1305 with OpenSSL * Compatibility * Fixed compatibility with CPM.cmake * Compatibility with OpenSSH 10.0 * Tests compatibility with new Dropbear releases * Removed p11-kit remoting from the pkcs11 testsuite * Bugfixes * Implement missing packet filter for DH GEX * Properly process the SSH2_MSG_DEBUG message * Allow escaping quotes in quoted arguments to ssh configuration * Do not fail with unknown match keywords in ssh configuration * Process packets before selecting signature algorithm during authentication * Do not fail hard when the SFTP status message is not sent by noncompliant servers Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnet-dns-perl: upgrade 1.50 -> 1.51Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | Changelog: =========== - Resync with IANA DNS Parameters registry. - Add prototype DELEG RR package. - Minor code and documentation improvements. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdivecomputer: upgrade 0.8.0 -> 0.9.0Wang Mingyu2025-07-081-3/+3
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdex: upgrade 0.10.0 -> 0.10.1Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | | | | Changelog: ============ * Fix autoptr usage * Raise critical on finalization of thread-pool-scheduler which should not happen in proper usage of libdex * Avoid extra pointer chase when dispatching to thread pool workers * Don't dispatch blocks while on fibers, wait for scheduler * Fix leak of unix signal futures * Improve management of fiber run queues Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2: upgrade 2.03.32 -> 2.03.33Wang Mingyu2025-07-081-2/+2
| | | | | | | | | | | | Changelog: ============ * Use 'lvconvert --repair' to repair raid arrays with transiently lost devices. * Override 'LC_NUMERIC' locale if unsuitable for 'json_std' report format. * Fail 'dm_report_group_create' if radix char from locale unsuitable for 'json_std'. * Escape the escape character itself on JSON report format output. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdaq: upgrade 3.0.19 -> 3.0.20Wang Mingyu2025-07-081-2/+2
| | | | | | | | | | Changelog: ============= - decode: add check for ipv4 fragmentation for decode_ip - example: added IP configs for other systems Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* icewm: upgrade 3.7.5 -> 3.8.0Wang Mingyu2025-07-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ghex: upgrade 46.2 -> 46.3Wang Mingyu2025-07-081-1/+1
| | | | | | | | | | | | Changelog: ============== - appwin: Put each window in its own group - widget: improve pointer accuracy on recent versions of GTK - Fix erroneous error message when writing empty files - ci: Do not explicitly define tarball-artifact-path Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* genimage: upgrade 18 -> 19Wang Mingyu2025-07-071-2/+2
| | | | | | | | | | | | License-Update: =============== Update COPYING with current FSF contact information Include the most recent GPLv2 version https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt This avoids rpmlint errors like E: incorrect-fsf-address Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cryptsetup: upgrade 2.7.5 -> 2.8.0Wang Mingyu2025-07-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* btop: upgrade 1.4.3 -> 1.4.4Wang Mingyu2025-07-071-1/+1
| | | | | | | | | | | | | | | Changelog: =========== - Fix auto-detection of CPU temp on Ampere boards - Fixed floating_humanizer() to work correctly when numeric delimiter isn't a dot. - Add command line option to set an inital filter - Make 100ms the minimal refresh rate. Exit gracefully if integer conversion in CLI parser fails. - Lock/unlock config to avoid infinite recursio - Fix incorrect positioning and start symbol of second title - Fix dangling reference warnings for GCC 13 and later Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* blueman: upgrade 2.4.4 -> 2.4.6Wang Mingyu2025-07-071-2/+2
| | | | | | | | | | | | Changelog: =========== - Make connection notifications transient - StatusNotifierItem: announce children-display - Manager: Hide bt status switch when PowerManager is not available - Handling for new StatusNotifierWatcher Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: upgrade 25.04.0 -> 25.06.0Yogita Urade2025-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes fix for CVE-2025-52886 poppler 25.06.0 changelog: ========================== core: * Fix writing dates back to file * Internal code improvements * Fix crashes in malformed documents glib: * Add the ink annotation type * Add missing autopointers definitions utils: * pdfsig: Add assert-signer feature * pdfsig: Return error code on error poppler 25.05.0 changelog: ========================== core: * Fix re-fetching after xref reconstruction. Issue #1584 * Fix compilation with ENABLE_ZLIB_UNCOMPRESS=ON * Various annotation improvements. Issues #642, #1558, #1055 * CairoFontEngine: invalidate broken embedded fonts. Issue #1453 * Splash: Performance improvements * Internal code improvements glib: * Small signature improvements Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-txaio: Upgrade 23.1.1 -> 25.6.1Leon Anavi2025-07-072-12/+12
| | | | | | | | | | | | | | | | | | | | Upgrade to release 25.6.1: - new: announcement of upcoming (but not yet effective) new AI policy clarifying matter with respect to AI assisted contributions - fix: update license file to include contributors (#188) - fix: remove obsolete dependency on six (#186) - fix: update pypy version in CI workflow (#187) - fix: setupcfg.py:508: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. - Copyrights transferred from Crossbar.io Technologies GmbH (Germany) to typedef int GmbH (Germany) License-Update: Update license file to include contributors Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework: Upgrade 7.3.1 -> 7.3.2Leon Anavi2025-07-071-1/+1
| | | | | | | | | | | | | | | | | | Upgrade to release 7.3.2: - Embedded arguments matching only after replacing variables do not work with Run Keyword or setup/teardown - French Etant donne, Et and Mais BDD prefixes don't work with keyword names starting with que or qu' - Messages and keywords by listener end_test method override original body when using JSON outputs if test has teardown - --flattenkeywords doesn't work with JSON outputs - --flattenkeywords doesn't remove GROUP, VAR or RETURN - ExecutionResult ignores include_keywords argument with JSON outputs - Suite teardown failures are not handled properly with JSON outputs Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-moteus: upgrade 0.3.88 -> 0.3.89Richard Leitner2025-07-071-1/+1
| | | | | | | | | | | | | | | | Update python3-moteus to the latest release. Since no formal changelog is available, here's the git shortlog of the moteus python library [1] for the corresponding release: Josh Pieper (2): Add some more register definitions Add --version options to moteus_tool and tview [1] https://github.com/mjbots/moteus/commits/main/lib/python Signed-off-by: Richard Leitner <dev@g0hl1n.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>