summaryrefslogtreecommitdiffstats
path: root/meta
Commit message (Collapse)AuthorAgeFilesLines
...
* libsoup-2.4: Drop recipe as obsoleteRichard Purdie2025-05-1510-502/+0
| | | | | | | | | | The last user in OE-Core was gst-examples. This has been upgraded and the dependency dropped, all other users can use libsoup3 instead. Therefore remove the obsolete and deprecated version. (From OE-Core rev: 94ebc5b798aed6eea642c5e2a4df24b386520636) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gst-examples: Update 1.18.6 -> 1.26.1Richard Purdie2025-05-152-17/+17
| | | | | | | | | | | | | Update to the version from the gstreamer monorepo, bringing it back into line with the other gstreamer revisions. Drop the libsoup-2.4 dependency which disables the webrtc code, we weren't building that anyway as it needs libnice enabled in gstreamer-plugins-bad. (From OE-Core rev: 446fadaa147be6656e37c612de772fa04607130f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* u-boot: ensure keys are generated before assembling U-Boot FIT imageRogerio Guerra Borin2025-05-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the task dependency: do_uboot_assemble_fitimage -> virtual/kernel:do_kernel_generate_rsa_keys to ensure the kernel FIT image signing keys are available when creating the U-Boot DTB. This is done only if the signing of the kernel FIT image is enabled (UBOOT_SIGN_ENABLE="1"). The lack of the dependency causes build errors when executing a build with no kernel FIT keys initially present in the keys directory. In such cases one would see an output like this in the Bitbake logs: Log data follows: | DEBUG: Executing shell function do_uboot_assemble_fitimage | Couldn't open RSA private key: '/workdir/build/keys/fit/dev.key': No such file or directory | Failed to sign 'signature' signature node in 'conf-1' conf node | FIT description: Kernel Image image with one or more FDT blobs | ... This issue was introduced by commit 259bfa86f384 where the dependency between U-Boot and the kernel was removed (for good reasons). Before that commit the dependency was set via DEPENDS so that, in terms of tasks, one had: u-boot:do_configure -> virtual/kernel:do_populate_sysroot and the chain leading to the key generation was: virtual/kernel:do_populate_sysroot -> virtual/kernel:do_install virtual/kernel:do_install -> virtual/kernel:do_assemble_fitimage virtual/kernel:do_assemble_fitimage -> virtual/kernel:do_kernel_generate_rsa_keys With the removal of the first dependency, no more guarantees exist that the keys would be present when assembling the U-Boot FIT image. That's the situation we are solving with the present commit. Fixes: 259bfa86f384 ("u-boot: kernel-fitimage: Fix dependency loop if UBOOT_SIGN_ENABLE and UBOOT_ENV enabled") (From OE-Core rev: 036f20156b3c7d0a8b912e90aa29a9b986106d5a) Signed-off-by: Rogerio Guerra Borin <rogerio.borin@toradex.com> Cc: Marek Vasut <marex@denx.de> Cc: Sean Anderson <sean.anderson@seco.com> Cc: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rpm-sequoia: add ptestInes KCHELFI2025-05-153-2/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In rpm-sequoia, some default paths in test code (OUT_DIR, CARGO_MANIFEST_DIR) are invalid at runtime and cause test failures. To fix this, patch the test code (symbols.rs) to support overriding these paths via optional environment variables: FORCE_RUNTIME_PATH_LIB and FORCE_RUNTIME_PATH_SRC. Also make -ptest package RDEPEND on -dev package. Tests take less than a second so this is added to PTEST_FAST. ptest result: |root@qemux86-64:~# ptest-runner rpm-sequoia |START: ptest-runner |2025-05-02T15:57 |BEGIN: /usr/lib/rpm-sequoia/ptest | |running 1 test |test symbols ... ok | |test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s | | |running 2 tests |test tests::merge_certs_mismatch ... ok |test tests::merge_certs ... ok | |test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s | |DURATION: 0 |END: /usr/lib/rpm-sequoia/ptest |2025-05-02T15:57 |STOP: ptest-runner |TOTAL: 1 FAIL: 0 (From OE-Core rev: 16499cf903718e6bf022a13baa09df610cd43d62) Signed-off-by: Ines KCHELFI <ines.kchelfi@smile.fr> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ptest-cargo: fix tests output format for testimageInes KCHELFI2025-05-151-1/+11
| | | | | | | | | | | | | | | | | | | | | In testimage, the ptest-runner output parser expects test results to follow a specific format,with lines beginning with PASS:, FAIL:, or SKIP:. ptest-cargo, currently, does not emit any of those lines and the parser treats the test section as having no results, causing a test failure with : AssertionError: ptests which had no test results: ['<package>'] This patch ensures that the recipes using ptest-cargo class explicitly emits PASS: or FAIL: lines, making the results compatible with the test parser and preventing test failures. (From OE-Core rev: 6a9356346f13556a06d4a99bd7924992c7e29d66) Signed-off-by: Ines KCHELFI <ines.kchelfi@smile.fr> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cython: upgrade 3.0.12 -> 3.1.0Trevor Gamblin2025-05-152-75/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Many changes are included with this release, including support for freethreading builds of CPython 3.13, cleanup of legacy code, and many other features and bug fixes. Changelog: https://github.com/cython/cython/blob/master/CHANGES.rst Patch '0001-Output-import-relative-paths-in-generated-C-code.-GH.patch' is included in 3.1.0, so we no longer need the backport: |tgamblin@megalith ~/workspace/git/pythonsrc/cython (master)$ git tag --contains 20bceea6b19ffc2f65b9fba2e4f737f09e5a2b20 |3.1.0 |3.1.0-1 |3.1.0a1 |3.1.0b1 |3.1.0rc1 |3.1.0rc2 Reproducibility looks OK. (From OE-Core rev: 26a73392524f648015d55bf421a9b1bf5ac0d955) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3: upgrade 3.13.2 -> 3.13.3Trevor Gamblin2025-05-152-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds some security fixes and many new changes to the library. Changelog: https://docs.python.org/3/whatsnew/changelog.html#python-3-13-3-final Modify 0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch to remove 'test_types' from the pgo-wrapper call, since that fails now under qemu. Reproducibility looks OK. ptest results OK: |== Tests result: SUCCESS == | |29 tests skipped: | test.test_asyncio.test_windows_events | test.test_asyncio.test_windows_utils test.test_gdb.test_backtrace | test.test_gdb.test_cfunction test.test_gdb.test_cfunction_full | test.test_gdb.test_misc test.test_gdb.test_pretty_print | test_android test_apple test_asdl_parser test_clinic test_devpoll | test_free_threading test_generated_cases test_idle test_ioctl | test_kqueue test_launcher test_msvcrt test_startfile test_tcl | test_tkinter test_ttk test_ttk_textonly test_turtle test_winapi | test_winconsoleio test_winreg test_wmi | |9 tests skipped (resource denied): | test_curses test_peg_generator test_pyrepl test_smtpnet | test_socketserver test_urllib2net test_urllibnet test_winsound | test_zipfile64 | |442 tests OK. | |Total duration: 2 min 48 sec |Total tests: run=43,896 skipped=2,268 |Total test files: run=471/480 skipped=29 resource_denied=9 |Result: SUCCESS |DURATION: 169 |END: /usr/lib/python3/ptest |2025-05-12T12:34 |STOP: ptest-runner |TOTAL: 1 FAIL: 0 |root@qemux86-64:~# (From OE-Core rev: 063d5a5fb2f71b523f378b95167553b28804c3ad) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-firmware: upgrade 20250410 -> 20250509Vivek Puar2025-05-151-3/+6
| | | | | | | | | | | | | Adding QUPv3 firmware for QCS9100 platform License-Update: additional files (From OE-Core rev: a9830286bf09ed5153bceecd0bec2c63bfbcd1a9) Signed-off-by: Vivek Puar <vpuar@qti.qualcomm.com> Cc: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* compiler-rt-sanitizers: Fix native builds on aarch64 build hostsKhem Raj2025-05-151-6/+11
| | | | | | | | | | | | | Add logic to deduce compiler-rt target architecture based on tune features Cleanup the cmake options for native/nativesdk/target recipes (From OE-Core rev: 579d4d85574624e39140fb74f6d37dcd7bf363a6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* compile-rt: Fix building compiler-native on aarch64 build hosts.Khem Raj2025-05-151-2/+4
| | | | | | | | | | | | | | | | | | Using target triple confuses the native system compiler to find libgcc and C runtime during compiler-rt-native build Fixes | /home/khem/yoe/build/tmp/hosttools/ld: cannot find crtbeginS.o: No such file or directory | /home/khem/yoe/build/tmp/hosttools/ld: cannot find -lgcc: No such file or directory | /home/khem/yoe/build/tmp/hosttools/ld: cannot find -lgcc_s: No such file or directory | clang: error: linker command failed with exit code 1 (use -v to see invocation) | ninja: build stopped: subcommand failed. (From OE-Core rev: 1d4676d6b7c0fe40ab4f808dda436dc2f2915fd8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go: upgrade 1.24.2 -> 1.24.3Peter Marko2025-05-157-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to latest 1.24.x release [1]: $ git --no-pager log --oneline go1.24.2..go1.24.3 34c8b14ca9 (release-branch.go1.24) [release-branch.go1.24] go1.24.3 8947f3395e [release-branch.go1.24] os: avoid escape from Root via paths ending in ../ 06fd2f115b [release-branch.go1.24] cmd/compile: remove no-longer-necessary recursive inlining checks f66ab6521c [release-branch.go1.24] cmd/internal/obj/wasm: use i64 for large return addr c1f9c2c7b0 [release-branch.go1.24] cmd/go/internal/load: join incompatible and dirty build specifiers with . 0ab64e2caa [release-branch.go1.24] runtime: cleanup M vgetrandom state before dropping P 56eb99859d [release-branch.go1.24] internal/runtime/maps: pass proper func PC to race.WritePC/race.ReadPC 43130aff52 [release-branch.go1.24] runtime: fix 9-arg syscall on darwin/amd64 b2c005e7b2 [release-branch.go1.24] crypto/tls: fix ECH compatibility a9d9b55709 [release-branch.go1.24] cmd/link: choose one with larger size for duplicated BSS symbols fa7217f74d [release-branch.go1.24] os: avoid panic in Root when symlink references the root Fixes CVE-2025-22873 [1] https://github.com/golang/go/compare/go1.24.2...go1.24.3 (From OE-Core rev: b317570acf1e25a4cfaa0c66a2630d082b4d0bae) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* compiler-rt: Exclude sync builtins from build when arm < v6Khem Raj2025-05-152-0/+62
| | | | | | | | | | | arm architecture < v6 does not have the dmb support, therefore do not add the sync primitives to compiler-rt builtins build (From OE-Core rev: e1b143860b221600f7dab5c08e5b187aefb851dd) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* compiler-rt: Map the COMPILER_RT_DEFAULT_TARGET_ARCHKhem Raj2025-05-151-1/+10
| | | | | | | | | | | COMPILER_RT_DEFAULT_TARGET_ARCH is not 1 to 1 match with HOST_ARCH especially for armv5/arm4 (From OE-Core rev: 71f7db2e5d264bc6ed50fae48567ae674af9a700) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* openssl: add fips supportYi Zhao2025-05-151-2/+17
| | | | | | | | | | | | | | | | | | | * Add PACKAGECONFIG[fips] to enable fips build. * Split a new package openssl-ossl-module-fips for fips.so. * Add pkg_postinst_ontarget for openssl-ossl-module-fips to ensure the config file fipsmodule.cnf is created on target. This is because we should not use the same fipsmodule.cnf on different machines. The 'openssl fipsinstall' commandline in pkg_postinst_ontarget will do the following things: 1. Run the FIPS module self tests on target. 2. Generate config file fipsmodule.conf containing information about the FIPS module such as the calculated MAC of the module. (From OE-Core rev: 29979937e2d40885e7e91bb9a7e7dca6763e3d52) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux/cve-exclusion: Update exclusions after kernel updateMathieu Dubois-Briand2025-05-131-13/+907
| | | | | | | (From OE-Core rev: c695edcc33ecd5bc01b5fc91ce08a87475a9ace9) Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* swig: upgrade 4.3.0 -> 4.3.1Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 43b1e1af671cbe5a76be1b97d185bb95b767efde) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shaderc: upgrade 2025.1 -> 2025.2Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | Changelog: =========== - Update dependencies: Glslang, SPIRV-Tools, SPIRV-Headers - Supports BFloat16 floating point types (From OE-Core rev: 15d14a61b1c299f7697e91e9e15452e2ee6f6010) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* resolvconf: upgrade 1.92 -> 1.93Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 0b7db214bb01284521be27656e31f9892b07441d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* repo: upgrade 2.53 -> 2.54Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: a7b791ad8fd32a48febc2e3aeb81785ff561a163) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* re2c: upgrade 4.1 -> 4.2Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Added Swift backend - Added options: "--lang swift" "--computed-gotos-relative" - Added configurations: "re2c:cgoto:relative", "re2c:computed-gotos:relative" "re2c:yyfn:throw" - Added syntax file code templates: "code:cgoto" "code:cgoto_data" "code:yytarget_filter" "code:type_yyctable" - Added syntax file conditionals: ".cgoto.relative" ".yyfn.throw" - Added some C++ benchmarks without submatch extraction. (From OE-Core rev: 7e3df01de59b55bb3fc8fef9fb36a98ca9b007fd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-yamllint: upgrade 1.37.0 -> 1.37.1Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ============= - Rule comments: tell how many spaces are expected - Rule quoted-strings: Fix only-when-needed on multiline with backslash - Config: Report if rules is not a dict - Fix test_codec_built_in_equivalent() test when run with pytest - CI: Fix TestPyPI "dev0" versions for master commits on tags - Docs: Add links to GitHub repository and releases - Docs: Fix GitLab integration example - Docs: Fix GitLab integration link - Fix the tests badge link on the README (From OE-Core rev: b49426b3577546e197c42aa28b5af4a0f3ea1c53) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-typing-extensions: upgrade 4.13.1 -> 4.13.2Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | Changelog: ============= - Fix TypeError when taking the union of typing_extensions.TypeAliasType and a typing.TypeAliasType on Python 3.12 and 3.13. - Backport from CPython PR #132160 to avoid having user arguments shadowed in generated __new__ by @typing_extensions.deprecated. (From OE-Core rev: f01c7ece71f4d9887763ee5062c56d454f88ae3d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pycairo: upgrade 1.27.0 -> 1.28.0Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | Changelog: https://pycairo.readthedocs.io/en/latest/changelog.html#v1-28-0 (From OE-Core rev: 96baa620e4ce198c0042eaba85e0935b4a2741e9) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-poetry-core: upgrade 2.1.2 -> 2.1.3Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Changed ---------- - Update list of supported licenses Fixed -------- - Fix an issue where the union of specific inverse or partially inverse markers was not simplified - Fix an issue where optional dependencies defined in the project section were treated as non-optional when a source was defined for them in the tool.poetry section - Fix an issue where markers with === were not parsed correctly - Fix an issue where local versions with upper case letters caused an error - Fix an issue where extra markers with a value starting with "in" were not validated correctly - Fix an issue where inheriting from WheelBuilder was unnecessarily difficult (From OE-Core rev: ca51448b82abd9333ad2763d52c473cbe876d5c5) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pip: upgrade 25.0.1 -> 25.1.1Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 76556fab9ef0fe07a0eb7b308a4c875d0a2d5e19) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-pdm: upgrade 2.23.1 -> 2.24.1Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Features & Improvements ------------------------ - New command pdm new that behaves like pdm init but creates a new project. - Support use --name as project name for command pdm new e.g. pdm new hello --name world - Support exporting to pylock.toml format as described by PEP 751. Bug Fixes --------- - Pass the --quiet option to pdm sync command. - If a .python-version file is found and it contains multiple lines, the file will be ignored. The usage of the .python-version file can be disabled, if configuration value python.use_python_version (or environment variable PDM_USE_PYTHON_VERSION) is False. - fix pdm config -e command to open read-only file under linux - Replace project names and import names in both README.md and pyproject.toml when running pdm init <template>. - Fix a bug that URL dependency hashes are not updated if running pdm lock --update-reuse. - Install the project when using the BaseSynchronizer with install_self set to True. This fixes the bug that when calling pdm sync --quiet, it skips installing the project itself. - Mark one additional test as requiring network, and fix another one not to require it anymore. (From OE-Core rev: 01cacd208c7a3e1fa2923ef346d7a1c65a4005c0) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-packaging: upgrade 24.2 -> 25.0Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | Changelog: ============ - Re-add a test for Unicode file name parsing - Upgrade to ruff 0.9.1 - Add support for PEP 738 Android tags - feat(markers): support 'extras' and 'dependency_groups' markers (From OE-Core rev: 1f6a72bf37297a362119375523750544a11a23ea) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-meson-python: upgrade 0.17.1 -> 0.18.0Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 70ccf82bcff9bca772c518837c7be11241aaf316) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-markdown: upgrade 3.7 -> 3.8Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== Changed ------- - DRY fix in abbr extension by introducing method create_element - Clean up test directory by removing some redundant tests and port non-redundant cases to the newer test framework. - Improved performance of the raw HTML post-processor Fixed --------- - Backslash Unescape IDs set via attr_list on toc - Ensure md_in_html processes content inside "markdown" blocks as they are parsed outside of "markdown" blocks to keep things more consistent for third-party extensions - md_in_html handle tags within inline code blocks better - md_in_html fix handling of one-liner block HTML handling - Ensure <center> is treated like a block-level element - Ensure that abbr extension respects AtomicString and does not process perceived abbreviations in these strings - Ensure smarty extension correctly renders nested closing quotes (From OE-Core rev: 662d586edb3afed8273ec4910ea1a4c090f8b757) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-mako: upgrade 1.3.9 -> 1.3.10Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | Changelog: - Fix undefined variable errors when strict_undefined=True when using a nested list comprehension. (From OE-Core rev: 40a60f0ca45116604430f8b0d1ee4f70e1f9843e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-lxml: upgrade 5.3.2 -> 5.4.0Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | Bugfix: -Binary wheels use libxml2 2.13.8 and libxslt 1.1.43 to resolve several CVEs. (Binary wheels for Windows continue to use a patched libxml2 2.11.9 and libxslt 1.1.39.) (From OE-Core rev: 4e15eededc4c67665c48c0fcdcfa41cfd0d3bf40) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-jsonschema-specifications: upgrade 2024.10.1 -> 2025.4.1Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | Changelog: - Add SPDX license identifier (From OE-Core rev: f3fb3e621c9c3b3e286002b6b6a6dede640e2866) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-hypothesis: upgrade 6.131.0 -> 6.131.14Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: af58c48b2c9163a50c0b02b2eb193f9a2344e448) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-hatch-fancy-pypi-readme: upgrade 24.1.0 -> 25.1.0Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | Changelog: ========== - $HFPR_PACKAGE_NAME is now replaced by the package name in the PyPI readme. - Support for Python 3.7. (From OE-Core rev: 5d3f3f8f9770e81bd7c2d53a1512577792ba4fa2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-certifi: upgrade 2025.1.31 -> 2025.4.26Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: f45a8bbe689ae7d006f8463fd156ebbd8e745227) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-calver: upgrade 2025.04.02 -> 2025.04.17Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | Changelog: - test: Delete SOURCE_DATE_EPOCH envvar if already present for robustness (From OE-Core rev: ac2ea906568bdb6aaf1f0ca4d35da87ceb39304d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pixman: upgrade 0.44.2 -> 0.46.0Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 40f3ecb75c1b17e7436293dc83a287b47c3fd989) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* man-db: upgrade 2.13.0 -> 2.13.1Wang Mingyu2025-05-133-101/+2
| | | | | | | | | | | 0001-check-for-_nl_msg_cat_cntr-in-configure.patch flex.patch removed since they're included in 2.13.1 (From OE-Core rev: b0314975312d10dd80fba77a53383425c85addc9) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxkbcommon: upgrade 1.8.1 -> 1.9.2Wang Mingyu2025-05-131-2/+2
| | | | | | | (From OE-Core rev: 3700a4e66c1972b9f214c2e9c960cedb2f179ccc) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxft: upgrade 2.3.8 -> 2.3.9Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== - manpage formatting-fixes - meson: Add option to build with meson - Require xproto >= 7.0.22 for _X_UNUSED - Remove support for building with pre-C89 versions of C - Remove support for building with pre-X11R7 versions of X - fix potential buffer overrun in _XftGlyphDefault - issue 21: remove redundant/out-of-place prototype for XftNameUnparse - build-fix for older versions of freetype2: FT_HAS_SVG was added late in 2021 - issue 19: Problem loading "SourceCodePro-Regular" font in Fedora (From OE-Core rev: 29fb884f0160496bc2ede2cb168a206cac1a46c6) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuv: upgrade 1.50.0 -> 1.51.0Wang Mingyu2025-05-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== * win: fix leak in uv_os_tmpdir * docs: fix RTD build * win: lazy-load [GS]etThreadDescription symbols * linux: try preadv64/pwritev64 before preadv/pwritev * win: check cwd length before spawning a child process * macos,bsd: handle missing /dev/null in chroot env * doc: fix README link text * win: fix order of FILE_STAT_BASIC_INFORMATION struct fields * macos: increase child process stdio buffer size * doc: add C3 bindings to LINKS.md * unix: remove unnecessary errno.h include in poll.c * win: fix the inconsistency in volume serial number * unix: add thread affinity support on openharmony * unix: enable getrusage for SunOS * unix,win: accept NAN/INFINITY as file timestamps * win: add ENABLE_VIRTUAL_TERMINAL_INPUT raw tty mode * test: handle UV_ENOTSUP in platform_output * doc: fix rendering of threading.html * unix,sunos: enable use of sendmmsg on Solaris and Illumos * unix: handle out of memory in iface name copy * openbsd: do not error out if cpuspeed is not available * test: skip thread_name_threadpool on AIX/IBMi * aix,ibmi: fix undeclared identifiers * unix,sunos: prefer SO_REUSEPORT for load balancing * doc: free lib pointer before function return * test: link with libm * style: rename parameter to match definition * test: support partial output lines in test runner * build: switch from c90 to c11 * linux: allow nul bytes in abstract socket address * sunos: use pipe2 on solaris and illumos * unix: remove TOCTOU issues from uv_pipe_chmod * unix: use pipe_fname if getsockname returns nothing * haiku: use uint32 instead of uint32_t * doc: update thread pool stack size comment * unix: improve uv_loop_init OOM handling * test: merge uv_tcp_connect callbacks * test: skip multievent tests on macOS with TSAN enabled * linux: align CPU quota calculation with Rust * kqueue: improve fs event watcher OOM handling * sunos: improve fs event watcher OOM handling * build: shorten instructions for cmake build (From OE-Core rev: d79b2a4cfcc439d430790500d46ad8966502e7b6) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liburcu: upgrade 0.15.1 -> 0.15.2Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== * fix: __atomic_always_lock_free() not a constant expression on g++ < 5.1 * fix: urcu assert fallback for pre-C11 builds * doc: update uatomic-api for static assert * Add uatomic size static assert for 's390' * Add uatomic size static assert for 'sparc64' * Add uatomic size static assert for 'ppc' * Add uatomic size static assert for 'x86' * Add uatomic size static assert for 'generic' * Add uatomic size static assert * Use UATOMIC_HAS_ATOMIC_INT/LLONG in generic implementation * Add UATOMIC_HAS_ATOMIC_INT/LLONG for x86 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for tile * Add UATOMIC_HAS_ATOMIC_INT/LLONG for sparc64 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for s390 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for riscv * Add UATOMIC_HAS_ATOMIC_INT/LLONG for ppc * Add UATOMIC_HAS_ATOMIC_INT/LLONG for nios2 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for mips * Add UATOMIC_HAS_ATOMIC_INT/LLONG for m68k * Add UATOMIC_HAS_ATOMIC_INT/LLONG for loongarch * Add UATOMIC_HAS_ATOMIC_INT/LLONG for ia64 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for hppa * Add UATOMIC_HAS_ATOMIC_INT/LLONG for 'gcc' arch * Add UATOMIC_HAS_ATOMIC_INT/LLONG for arm * Add UATOMIC_HAS_ATOMIC_INT/LLONG for alpha * Add UATOMIC_HAS_ATOMIC_INT/LLONG for aarch64 * Add UATOMIC_HAS_ATOMIC_INT/LLONG for atomic builtins * Add builtin atomics size static asserts * cleanup: use URCU_GCC_VERSION from compiler.h * fix: atomic builtins defines for type support * Move back CMM_LOAD/STORE_SHARED to volatile access * Add cmm_annotate_mem_acquire() to URCU_DEREFERENCE_USE_VOLATILE rcu_dereference * Use uatomic_load CMM_RELAXED in URCU_DEREFERENCE_USE_VOLATILE * Fix: Re-introduce URCU_DEREFERENCE_USE_VOLATILE read barrier depends for alpha * Tree-wide: Rename to uatomic_load/uatomic_store * src: Use __*__ for attribute names * API: Use __*__ for attribute names * Fix Changelog 0.15.1 date (From OE-Core rev: e9b7585ca81d72962f4e7d57b3d0ff3524e5762b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsdl2: upgrade 2.32.4 -> 2.32.6Wang Mingyu2025-05-131-1/+1
| | | | | | | (From OE-Core rev: 001ac84a9934caa55df1e693d6bb1dda7c1fb06a) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpng: upgrade 1.6.47 -> 1.6.48Wang Mingyu2025-05-131-1/+1
| | | | | | | | | | | | | | | | Changelog: ============ - Fixed the floating-point version of the mDCv setter 'png_set_mDCv'. - Added #error directives to discourage the inclusion of private libpng implementation header files in PNG-supporting applications. - Added the CMake build option 'PNG_LIBCONF_HEADER', to be used as an alternative to 'DFA_XTRA'. - Removed the Travis CI configuration files (From OE-Core rev: 521fb67a6ae80752c8d3cba1de0e4946e26f6c2f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libjpeg-turbo: upgrade 3.0.1 -> 3.1.0Wang Mingyu2025-05-131-2/+2
| | | | | | | | | License-Update: zlib License clarifications (From OE-Core rev: 256ead099457cb3f4d3a7139e14aac15bb2d0ed5) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libjitterentropy: upgrade 3.6.2 -> 3.6.3Wang Mingyu2025-05-131-2/+2
| | | | | | | | | | | | | Changelog: ================ - Correct time stamp processing on AIX - Use high-resolution time stamp on Apple Silicon - GCD power-up test: consider OSR (From OE-Core rev: b08ca541d00f8154d66dbdbace7102c88c9cdc39) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgpg-error: upgrade 1.51 -> 1.55Wang Mingyu2025-05-132-4/+4
| | | | | | | | | | 0001-Do-not-fail-when-testing-config-scripts.patch refreshed for 1.55 (From OE-Core rev: b340702af103c1d116f8434f6e7509605954b28a) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libffi: upgrade 3.4.7 -> 3.4.8Wang Mingyu2025-05-132-4/+4
| | | | | | | | | | not-win32.patch refreshed for 3.4.8 (From OE-Core rev: ca7f1abfba5462a8f09b328c34380e6faeae8b32) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcgroup: upgrade 3.1.0 -> 3.2.0Wang Mingyu2025-05-132-41/+2
| | | | | | | | | | 0001-include-Makefile-install-systemd.h-by-default.patch removed since it's included in 3.2.0 (From OE-Core rev: 38f3346423fe7362d901d8f78e61aa96a67db867) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libadwaita: upgrade 1.7.0 -> 1.7.2Wang Mingyu2025-05-132-40/+1
| | | | | | | | | | 90d68222c184f681472d9d9ce2ae443ebd76386e.patch removed since it's included in 1.7.2 (From OE-Core rev: 96efd90646223c6de2fac2b01c17ff5b00c1f5bb) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>