summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* release-notes-4.0.18: specify backported licenseLee Chee Yang2024-05-291-1/+1
| | | | | | | | | | Align with finalized text-based release notes. (From yocto-docs rev: 0ee5078d1f042d3dc57e7b3b15174398c574b8a5) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: bb: Use namedtuple for Task dataJoshua Watt2024-05-282-18/+39
| | | | | | | | | | | | Task dependency data is becoming unwieldy with the number of indices it contains. Convert it to use a named tuple instead, which allows members to be indexed by a named property or an index (which allows it to retain backward compatibility). (Bitbake rev: 26446cca4d22734c3f1b328a205c169dadb7e494) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: bitbake-hashclient: Improve ping command line optionsJoshua Watt2024-05-281-3/+10
| | | | | | | | | | Adds a --quiet option to suppress the message for each ping, and report the median ping time. (Bitbake rev: 3c85b5e2d9b9c39507ed362aaa115b7f6f155966) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Improve rehash get_unihash parallelismRichard Purdie2024-05-281-2/+10
| | | | | | | | | Improve the rehash code to query unihashes in parallel since this is more efficient on slower links. (Bitbake rev: c1949d5350342eaaf6ab988d7bfba99496d55523) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Process unihashes in parallel at initRichard Purdie2024-05-282-9/+10
| | | | | | | | | | | | | | Improve the runqueue init code to call unihash queries in parallel since this is faster and more efficient, particularly on slower links with longer round trip times. The call to the function from cooker is unneeded since that function calls prepare() and hence this functionality will already have run, so drop that obsolete call. (Bitbake rev: 721c97a115a7a4bf21955be79391bd6e0099f40e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Allow rehash loop to exit in case of interruptsRichard Purdie2024-05-281-1/+3
| | | | | | | | | | The initial hash serve loop exits in the case where interrupts are present but probably checks a bit too often. Tweak that and also allow the slow rehash loop to break on interrupt, improving bitbake Ctrl+C response. (Bitbake rev: 4534365591fd17bcc2b684900863b67bc69519ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: runqueue: Add timing warnings around slow loopsRichard Purdie2024-05-281-0/+22
| | | | | | | | | | | | | With hashserve enabled, there are two slow paths/loops, one at initial runqueue generation and also during the rehash process when new outhashes are found. Add timing information at the hashserve log level for when these loops take longer than 30s or 60s overall. This will leave evidence in the logs when things are running particularly slowly. (Bitbake rev: 6c357ede08e0b2a93bdaad2c1d631994faf2b784) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* selftest/rust: correctly form the PATH environment variableAlexander Kanavin2024-05-281-3/+2
| | | | | | | | | | | | | | | | | | There were two issues here: - the path to native python was not included, so the test suite was running with host python, causing failures due to host python being given native libraries: https://autobuilder.yoctoproject.org/typhoon/#/builders/148/builds/1711/steps/12/logs/stdio (rust recipe uses native python throughout) - tmp/hosttools was listead ahead of native-sysroot/usr/bin (From OE-Core rev: aec96b5aec8d6b4a5ae8a719ca05bb727a6197cb) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: build the default set of toolsAlexander Kanavin2024-05-282-1/+2
| | | | | | | | | | | | | | | | | | | | | | Setting it explicitly replaces rust's default choice which is rustdoc (needed for example in selftests and otherwise expected to be present in typical rust installations): https://github.com/rust-lang/rust/blob/master/config.example.toml#L320 This addresses some of the rust selftest failures but not all. Help is appreciate to restore the selftest. Unfortunately, this also breaks rust reproducibility (or rather exposes that it was never properly fixed, as explained here: https://lists.openembedded.org/g/openembedded-core/message/199288 ) (From OE-Core rev: 58eaf2ee6c0809bf0a0d3c1d177e62bda7241651) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: use rust-snapshot binaries only in rust-nativeAlexander Kanavin2024-05-281-2/+12
| | | | | | | | | | | | | | | | | | | | Otherwise, use rust-native and cargo-native binaries as that allows our native tweaks in them to be used for target/nativesdk rust - same as for everything else written in rust. In particular, this allows building target rust with cargo-native that includes important reproducibility tweaks. Unfortunately, this also breaks rust selftest, and that is partially addressed by the following commit. [YOCTO #15185] (From OE-Core rev: 8f2230cb51fe22ef4711a56fecfab4858c04e35b) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: add reproducibility patch to eliminate host leakageAlexander Kanavin2024-05-282-0/+52
| | | | | | | | | | [YOCTO #15185] (From OE-Core rev: 924df18b47e9a69fa295bafe37bdb39d8eaea2bb) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: ui/buildinfohelper: Add exception treatment to fix missing target_fileMarlon Rodriguez Garcia2024-05-281-1/+4
| | | | | | | | | | | Based on the discution on https://lists.yoctoproject.org/g/toaster/message/6157 in some cases the value for Target_file could be missing and is needed to bypass it to finish build. (Bitbake rev: c60f6d20911632b41473f7c8577949be2f99ad80) Signed-off-by: Marlon Rodriguez Garcia <marlon.rodriguez-garcia@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pseudo: Update to pull in python 3.12+ fixRichard Purdie2024-05-281-1/+1
| | | | | | | | | | Pull in a fix which avoids syntax warnings with python 3.12. (From OE-Core rev: 51aa0217e595939f15bd3ffd7625907aef142c05) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* layer.conf: Add os-release to SIGGEN_EXCLUDERECIPES_ABISAFERichard Purdie2024-05-281-0/+1
| | | | | | | | | | | | This rebuilds whenever DISTRO_VERSION changes (i.e. any commit is made) and systemd depends upon it so lots of things end up rebuilding which isn't necessary, (From OE-Core rev: 002a2a9d977ed5b86138333c567d25616d38c60b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pythonn3-rpds-py: enable ptestTim Orling2024-05-283-1/+20
| | | | | | | | | | | * Add RDEPENDS for ptest from tests/requirements.txt * Tests take ~14 seconds, so add to PTEST_FAST (From OE-Core rev: 6a1c551629defd3c241b30452496c580501dc781) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-rpds-py: upgrade 0.18.0 -> 0.18.1Tim Orling2024-05-282-13/+15
| | | | | | | | | | | | https://github.com/crate-py/rpds/compare/v0.18.0...v0.18.1 * Refresh -crates.inc (From OE-Core rev: f476c2d986ff4a2b89348fe1e5628300ff212f3a) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd.bbclass: Clarify error messageKhem Raj2024-05-281-1/+1
| | | | | | | | | | | | | | | | When this error is triggered, its a bit vague in specifying where the issue is e.g. ERROR: nbd-3.26.1-r0 do_package: nbd does not appear in package list, please add it Some packages may intentionally remove PN from packages and find it confusing as to why the system is still asking this to be in PACKAGES (From OE-Core rev: 025a5e4529dff37a6423d305b12b7a51ceedd9e5) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-bcrypt: upgrade 4.1.2 -> 4.1.3Tim Orling2024-05-283-175/+65
| | | | | | | | | | | | | | | | https://github.com/pyca/bcrypt/compare/4.1.2...4.1.3 Upstream release notes: Bump Rust dependency versions * Drop 0001-Bump-pyo3-from-0.20.0-to-0.20.3-in-src-_bcrypt-746.patch -- merged * Refresh -crates.inc (From OE-Core rev: d2404135fd263947bcfd448657d3d0312e12122a) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mmc-utils: fix URLQuentin Schulz2024-05-281-2/+2
| | | | | | | | | | | | The current mmc-utils git URL still (for now?) redirects to the URL in this patch, but the homepage doesn't, so let's just migrate both to the new URL. (From OE-Core rev: 59870f6d87bb516d74081fde1c670e4838e6e134) Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemtap: upgrade 5.0 -> 5.1Victor Kamensky2024-05-286-197/+2
| | | | | | | | | | removed all backported patches (From OE-Core rev: 322cab17151bbc8ce05ca8a14cb34d600d1bb934) Signed-off-by: Victor Kamensky <victor.kamensky7@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/manual: remove obsolete CROPS and Eclipse manually testing scriptsRoss Burton2024-05-282-616/+0
| | | | | | | | | | | | | The Eclipse plugin is very dead, we don't need to carry the manual test guide for it. CROPS has its own automated testing, nobody is doing the testing by hand. (From OE-Core rev: f74a634f199782ce5fa3023d02079c1534bc4aeb) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd-bootchart: Fix build on muslKhem Raj2024-05-282-0/+60
| | | | | | | | (From OE-Core rev: 8243183f807d0f50d2cbd2add41d32ffc47857b3) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kexec-tools: Fix build with GCC-14 on muslKhem Raj2024-05-282-0/+55
| | | | | | | | (From OE-Core rev: 704f51f72c301bd081a635dbe94e52aa97ffb827) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xwayland: upgrade 23.2.6 -> 24.1.0Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: 04ccb375e6ff6f01b842818fa130bd5cb2be7e18) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wireless-regdb: upgrade 2024.01.23 -> 2024.05.08Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: 0823e8ea83ac907b37bc9eb0ec7dc32862997eff) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shaderc: upgrade 2024.0 -> 2024.1Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | Changelog: =========== - Update dependencies - Propagate test/install options to Glslang (From OE-Core rev: 3410d8864429ca8cd9e63775b0f6e788b6a0405b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-zipp: upgrade 3.18.1 -> 3.18.2Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: b1565222ac6d59af2c395207d82af5cf289d0629) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-mako: upgrade 1.3.3 -> 1.3.5Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | Changelog: - Reverted the fix for #400 as it caused new issues when traversing some bracketed situations. (From OE-Core rev: 3f840ff8f3ff4b25077e788f94995c9982f667f2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-lxml: upgrade 5.2.1 -> 5.2.2Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | Changelog: =========== - The test_feed_parser test could fail if lxml_html_clean was not installed. - The minimum CPU architecture for the Linux x86 binary wheels was set back to "core2", without SSE 4.2. - If libxml2 uses iconv, the compile time version is available as etree.ICONV_COMPILED_VERSION. (From OE-Core rev: 322de0498af81fb8cd62be1d517d3269e7ed1f9b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-jsonschema: upgrade 4.21.1 -> 4.22.0Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | Changelog: ============ - Improve best_match (and thereby error messages from jsonschema.validate) in cases where there are multiple sibling errors from applying anyOf / allOf - (Micro-)optimize equality checks when comparing for JSON Schema equality by first checking for object identity, as == would. (From OE-Core rev: 4143346f3975504895a568569927af9884797231) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ninja: upgrade 1.12.0 -> 1.12.1Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | Changelog: =========== - Screen updates extremely slow on Windows - Dry run error if the build directory does not exist - New critical path scheduler performance improvements (From OE-Core rev: ac98c4850b8bf3eb6c87fbace1f038a52a6162e9) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nghttp2: upgrade 1.61.0 -> 1.62.0Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | Changelog: https://github.com/nghttp2/nghttp2/releases/tag/v1.62.0 (From OE-Core rev: 3401e3ce13b9148d00f75331c90ec4555a55545e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* msmtp: upgrade 1.8.25 -> 1.8.26Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | Changelog: =========== - Add support for SCRAM-SHA-256-PLUS and SCRAM-SHA-1-PLUS authentication, and prefer SCRAM methods over the PLAIN method because of their superior properties. - With --read-envelope-from, a Resent-From header is now used if it is present and appears before any From header (From OE-Core rev: 10057cd37f0216f1963474a149e9d3bdd8d99ede) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: upgrade 24.0.5 -> 24.0.7Wang Mingyu2024-05-283-1/+1
| | | | | | | | | | | Changelog: https://docs.mesa3d.org/relnotes/24.0.7.html (From OE-Core rev: 55d962ff7e3475d2c46e1a76d9efa55e1de6e940) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* llvm: upgrade 18.1.5 -> 18.1.6Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Fixes issues where LLVM is either generating the incorrect thunk for a function with aligned parameters or didn't correctly pass through the return value when StructRet was used. - -Xclang -target-feature -Xclang +unaligned-scalar-mem can be used to enable unaligned scalar memory accesses for CPUs that do not support unaligned vector accesses. -mno-strict-align will enable unaligned scalar and vector memory accesses. - Don't replace an aliasee with an alias that has weak linkage. This avoids incorrect linkage that can lead to using the wrong symbols during linking time. - This patch fixes build failures when compiling AVX512 code using -march=native on machines without AVX512. - Fixes crash in AArch64 backend when having true or false as operand for a fcmp instruction on IR level. - Fixes compiler crash when user specifies -mno-evex512 with AVX512 features but no AVX512VL. - Fixes a bug that tries to do VBROADCAST_LOAD for f16 without AVX2. (From OE-Core rev: 3cd5c40f5736506b2cfc23b180fa915b01d8220c) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxmlb: upgrade 0.3.18 -> 0.3.19Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | Changelog: ============ - Add xb_version_string() to get the runtime ABI version - Add the runtime version as the default XMLb invalidation GUID (From OE-Core rev: 1d304dd55ca9c306346a058f60810828b78aaaba) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxml2: upgrade 2.12.6 -> 2.12.7Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | Changelog: ========= - Fix buffer overread with 'xmllint --htmlout' - xmllint: Fix --pedantic option - save: Handle invalid parent pointers in xhtmlNodeDumpOutput (From OE-Core rev: 64e16e2ca71a4dcf285f3dc36789077aa3beaf50) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libslirp: upgrade 4.7.0 -> 4.8.0Wang Mingyu2024-05-281-2/+2
| | | | | | | | (From OE-Core rev: c1e109eac0c7fa729ca8751c351306cba5f58564) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgpg-error: upgrade 1.48 -> 1.49Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | Changelog: ============ * Two new functions to improve the logging interface. * Add a "trunc" keyword to gpgrt_log_printhex. * Avoid an endless loop in the argparser due to a conf file read error. (From OE-Core rev: ca95c0731056bf1299e6a0cb293c904da643f887) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libedit: upgrade 20230828-3.1 -> 20240517-3.1Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: 661d9e84e3236870126f9d6a3bc67376b2a1c696) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iw: upgrade 6.7 -> 6.9Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: 27261cda1232ef1a84d1b0d8ba52dc9eb578db81) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* iproute2: upgrade 6.8.0 -> 6.9.0Wang Mingyu2024-05-281-1/+1
| | | | | | | | (From OE-Core rev: f516215f213d809cf89bc8e2e3b36119a80bee63) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gtk+3: upgrade 3.24.41 -> 3.24.42Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== * GtkFileChooser: - Avoid warnings about floating refs - Improve performance of recursive search - Populate search model in an idle * GtkGLArea: - Fix a regression in transparency handling * Printing: - Avoid accessing freed printers * Accessibility: - Drop support for the deprecated atk_focus_tracker * Wayland: - Fix monitor sizes - Fix a crash related to tablet removal - Infer resizable edges for tiled windows - Always commit soon after acking a configure * Windows: - Avoid committing NULL strings to IME * gdk: - Use css cursor names as far as possible - Sync DND cursor use with GTK4 * macOs: - Fix cocoa pasteboard constants * build: - Allow building against sysprof-capture-4 * Translation updates: Georgian Hebrew Kabyle Persian (From OE-Core rev: 2f4cdc1ef16f1b86f5632fded21792d71d58de16) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ed: upgrade 1.20.1 -> 1.20.2Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | Changelog: ============= - main_loop.c (command_s): Fix g/x/s/x/x, which failed to skip the final newline, printing lines twice. (From OE-Core rev: d726710f7b1d707a55777d486bf06b0021f9dcfb) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dnf: upgrade 4.19.2 -> 4.20.0Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Prepare man pages for switch to dnf5 as the default package manager - Do not add user site-packages directory to sys.path - Remove --duplicates and --oldinstallonly exit with 0 when nothing to remove - repoquery: Fix loading filelists when -f is used - Prepare for switch of dnf5 in Rawhide (From OE-Core rev: 07bd7732e5d4b08f43956dc58d3d457a6707ecdc) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* dmidecode: upgrade 3.5 -> 3.6Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Use -DALIGNMENT_WORKAROUND on arm. - Read SMBIOS entry point via kenv on DragonFly BSD. - Support for SMBIOS 3.6.0. This includes new memory device types, new processor upgrades, and Loongarch support. - Support for SMBIOS 3.7.0. This includes new port types, new processor upgrades, new slot characteristics and new fields for memory modules. - Add bash completion. - Decode HPE OEM records 197, 239 and 245. - Implement options --list-strings and --list-types. - Update HPE OEM records 203, 212, 216, 221, 233, 236, 237, 238 and 242. - Update Redfish support. - Bug fixes: Fix option --from-dump for user root Fix enabled slot characteristics not being printed - Minor improvements: Print slot width on its own line Use standard strings for slot width (From OE-Core rev: 8f4a5c380e9c0400e9c8a6a0ea4203358fd3b2e8) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* diffoscope: upgrade 265 -> 267Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== * Use "xz --list" to supplement the output when comparing .xz archives; essential when some underlying metadata differs. * Actually append the xz --list after the container differences, as it simplifies tests and the output. * Add 7zip to <!nocheck> Build-Depends in debian/control. * Update copyright years. * Maintain an in-header boolean state to determine whether to drop from-file/to-file lines. This fixes an issue where HTML differences were being inadvertendly neglected. * Include "xz --verbose --verbose" (ie. double --verbose) output, not just the single --verbose. * Only include "xz --list" output if the xz has no other differences. (From OE-Core rev: 577d2f29c4bbeb182d45331dbe77b15758746d00) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* createrepo-c: upgrade 1.1.0 -> 1.1.1Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | Changelog: =========== * Add detection of %posttrans and %pretrans scriptlet from rpm header * Onboard packit tests * Build ARM packages for all Python versions * Fix minor bug w/ new API (From OE-Core rev: 66c422c2c5c21d32664666bdf50964078e57bd14) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* btrfs-tools: upgrade 6.8 -> 6.8.1Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== * mkfs: fix writing on zoned device when block-group-tree is selected * tune: fix writing on zoned device with option --convert-to-block-group-tree * check: * more progress and error messages * unify handling of unknown command line options with other commands * subvolume delete: remove options --delete-qgroup and --no-delete-qgroup (added in 6.6.3), qgroup deletion does not always work due to delayed background processing of subvolume or set value in sysfs:ggroup/drop_subtree_threshold * other: * misc refactoring * error handling fixes reported by gcc -fanalyzer * documentation updates * new and updated tests (From OE-Core rev: 8fd6322166d9e7d9e1ba61e18dd0b28db1fb95a7) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bind: upgrade 9.18.26 -> 9.18.27Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | | Changelog: ========= * Skip to next RRSIG if signature has expired or is in the future rather than failing immediately. * Implement signature jitter for dnssec-policy. (From OE-Core rev: ccf45d3cbd06abd48ca2c82a790587457021e6e3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>