summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-01-11rootfs_rpm.bbclass: distutils -> sysconfig moduletimo/deprecate_distutils_14610_v2Tim Orling
Change a comment to reference our custom changes to the sysconfig module, as dnf no longer uses distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3native.bbclass: distutils -> sysconfigTim Orling
In the comment it says we patch distutils modules, but we now are patching sysconfig and not using distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11dnf: drop python3-distutils dependencyTim Orling
Upstream dropped the now deprecated distutils: 18995d65 Remove distutils which are deprecated in python3.10 (RhBug:1950229) Usage was replaced with sysconfig, which is in python3-core [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11waf.bbclass: drop usage of distutilsTim Orling
Refactor to use bb.utils.vercmp_string_op() instead of StrictVersion from distutils [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11recipetool/create_buildsys_python.py: less distutilsTim Orling
'distutils' is deprecated in Python 3.10 with removal in Python 3.12 (~October 2023). Replace 'distutils.command.build_py' with 'setuptools.command.build_py'. To avoid an AttributeError, we call super().__init__() which provides the missing 'distribution' attribute. However, for some reason, __init__() in 'setuptools.command.build_py.build_py' class requires a 'dist' positional argument which must be a 'Distribution' instance. It is not clear why 'distutils.command.build_py.build_py' class does not require this. There is still a check which decides to inherit setuptools3 vs distutils3 that will need to be refactored when we add pyproject.toml and setup.cfg support for more modern PEP 517 packaging. Once distutils3.bbclass is dropped, any recipe inheriting distutils3 will throw a parsing error. The plan is to move distutils*.bbclasses to meta-python. However if meta-python is not in bblayers, the parsing error would still occur. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11gstreamer1.0-python: inherit setuptools3-baseTim Orling
Drop distutils3-base usage as it is now deprecated. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3-setuptools: do not depend on distutilsTim Orling
No longer depend on python3-distutils, current versions of setuptools vendor as _distutils. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11bind: inherit setuptools3-base instead of distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3-pygobject: setuptools instead of distuilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11btrfs-tools: use setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11librepo: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11createrepo-c: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11libcomps: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11systemtap: use setuptools-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3-pip: inherit setuptools3 not distuils3Tim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11gpgme: inherit setuptools-base not distuilsTim Orling
What was distutils-common-base has been merged into setuptools3-base, since we no longer need to support python2 and python3. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3-dbus: inherit setuptools3-base not distuilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11libdnf: inherit setuptools3-base not distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11dnf: inherit setuptools3-base instead of distutilsTim Orling
[YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11python3-cython: DISTUTILS_* -> SETUPTOOLS_*Tim Orling
Refactor to new SETUPTOOLS_* variables [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11setuptools3: refactor for no distutils bbclassesTim Orling
Add setuptools3-base.bbclass as a re-usable starting point similar to what used to be distutils-common-base.bbclass and disutils3-base.bbclass. We no longer need to support python2, so no need for a setuptools-common-base.bbclass. Refactor setuptools3.bbclass to use setuptools3-base.bbclass instead of the distulis*.bbclasses. Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11classes/distutils-*: add warning of deprecationTim Orling
distutils has been deprecated in Python 3.10 and will be removed in Python 3.12 (predicted release date October 2023). Add a warning now that recommends using the roughly equivalent setuptools-* classes. [YOCTO #14610] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2022-01-11oeqa/sstate: Fix allarch samesigs testRichard Purdie
The allarch sstate sigs test is supposed to compare the allarch sigs but does not. Fix this. Also rename the common function to make it clear it isn't just used by the allarch test. (From OE-Core rev: 549597d422c7bcb467f34139ff25d2bee96bf851) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11sstatetests: Add OLDEST_KERNEL to allarch testsRichard Purdie
Some architectures vary OLDEST_KERNEL and this shouldn't change the allarch signatures but in current OE-Core can/does. Add differing values to the test configs to ensure we catch this in future (we want to keep a 32 and 64 bit machine here to test that as well). (From OE-Core rev: 151ce55ec8ebc91b83bf0d09b9196f11646df1f1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11xserver-xorg: 21.1.2 -> 21.1.3Kai Kang
Upgrade xserver-xorg from 21.1.2 to 21.1.3. And adjust indent as well. (From OE-Core rev: c32dfebbab45122dc005c1ae9c49dc15a4f350b2) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11maintainers.inc: Add myself as maintainer for curlRobert Joslyn
I'll give it a go to try and help out. (From OE-Core rev: af33fe0f82e5b10757e3fdfa52c028fb9bd7e1d6) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11curl: Rework openssl and random PACKAGECONFIGsRobert Joslyn
The existing ssl PACKAGECONFIG makes it slightly annoying to use another crypto provider while removing openssl. Since --with-ssl is just a deprecated version of --with-openssl, rename the PACKAGECONFIG to use the newer preferred name. Note that --without-ssl implies no crypto provider at all, and should only be used when trying to disable all crypto support. Move --with-random to it's own option, since it is useful for other crypto providers, not just openssl. (From OE-Core rev: eef6c45fc6ec0a496791123e8ba2f400a5d9d468) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11curl: Update to 7.81.0Robert Joslyn
Update URLs to refelct what upstream is presently using and add zstd PACKAGECONFIG. (From OE-Core rev: cc029e5e1331b3a8f4181bbfdbe72c547916f458) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11classes/create-spdx: handle if IMAGE_LINK_NAME is emptyPaul Eggleton
If IMAGE_LINK_NAME is set to "" (supported in other classes) then skip creating symlinks for the spdx manifest files. (From OE-Core rev: c2d5e2dbbba78d8d7036f6418360b2e84bcdc169) Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11tclibc-baremetal: Supply missing /bin/sh target in the baremetal sdkAlejandro Hernandez Samaniego
SDK recipes now require a provider for /bin/sh, this should come from nativesdk-sdk-provides-dummy which is added by default to Linux SDKs, however tclibc-baremetal requires us to explicitly add its new dependency to TOOLCHAIN_HOST_TASK, otherwise we get a packaging error while generating an SDK. e.g. package packagegroup-cross-canadian-qemuriscv32-1.0-r0.x86_64_nativesdk requires gdb-cross-canadian-riscv32, but none of the providers can be installed - conflicting requests - nothing provides /bin/sh needed by gdb-cross-canadian-riscv32-11.1-r0.x86_64_nativesdk (From OE-Core rev: 8acb88cfe56735530280bab53a871c236f2fd54f) Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11tclibc-newlib: Supply missing /bin/sh target in newlib sdkAlejandro Hernandez Samaniego
SDK recipe now require a provider for /bin/sh, this should come from nativesdk-sdk-provides-dummy which is added by default to Linux SDKs, however tclibc-newlib requires us to explicitly add its new dependency to TOOLCHAIN_HOST_TASK, otherwise we get a packaging error while generating an SDK. e.g. package packagegroup-cross-canadian-qemuriscv32-1.0-r0.x86_64_nativesdk requires gdb-cross-canadian-riscv32, but none of the providers can be installed - conflicting requests - nothing provides /bin/sh needed by gdb-cross-canadian-riscv32-11.1-r0.x86_64_nativesdk (From OE-Core rev: 9efcde387b31335d16394ce6b30e4abb1525185f) Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11rootfs-postcommands.bbclass: Make two comments use the new variable syntaxPeter Kjellerstedt
(From OE-Core rev: cb17cccaf2f51558bd1d320559bd792d5869688e) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11diffoscope: upgrade 196 -> 199wangmy
Changelog: ========= * Support both variants of "odt2txt", including the one provided by unoconv. (Closes: reproducible-builds/diffoscope#298) * Add external tool reference on Arch Linux for xb-tool. (From OE-Core rev: 763c44e30c20ebcd4199d41fa76dae3d3b4ec5c3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11gcc: Fix typo in linux64.h install patchAndrei Gherzan
The "gcc: Fix compile of gcc plugins" patch had a typo making it a noop. This was due to a rework to make it specific to the linux64.h header. (From OE-Core rev: 5f0f00f0988c02d7fe0fa62edf3e4901ce9941a6) Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11libpipeline: upgrade 1.5.4 -> 1.5.5wangmy
(From OE-Core rev: 680892aedaec656d4ac405c3c295017120b3970e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11less: upgrade 598 -> 600wangmy
License-Update: year updated to 2022. Changelog: ========== Add the --header option. Add the --no-number-headers option. Add the --status-line option. Add the --redraw-on-quit option. Add the --search-options option. Add 'H' color type to set color of header lines. Add #version conditional to lesskey. Add += syntax to variable section in lesskey files. Allow option name in -- command to end with '=' in addition to '\n'. Add $HOME/.config to possible locations of lesskey file. Add $XDG_STATE_HOME and $HOME/.local/state to possible locations of history file. Don't read or write history file in secure mode. Fix display of multibyte and double-width chars in prompt. Fix ESC-BACKSPACE command when BACKSPACE key does not send 0x08. Add more \k codes to lesskey format. Fix bug when empty file is modified while viewing it. Fix bug when parsing a malformed lesskey file. Fix bug scrolling history when --incsearch is set. Fix buffer overflow when invoking lessecho with more than 63 -m/-n options. Fix bug restoring color at end of highlighted text. Fix bug in parsing lesskey file. Defer moving cursor to lower left in some more cases. Suppress TAB filename expansion in some cases where it doesn't make sense. (From OE-Core rev: 30047fb4fcdef868c6d45cb6a71fbc9278600ba2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11iso-codes: upgrade 4.8.0 -> 4.9.0wangmy
Changelog: ========= Added ---------- ISO 639-3: New translation for Friulian ISO 639-5: New translations for Esperanto, Hindi, Russian ISO 4217: New translation for Esperanto Changed --------- Translation updates for ISO 3166-1 Translation updates for ISO 3166-2 Translation updates for ISO 639-2 Translation updates for ISO 639-3 Translation updates for ISO 639-5 (From OE-Core rev: c9a83af6d6c5248bb16bdfaf628d3727889993fd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11bluez5: upgrade 5.62 -> 5.63wangmy
Changelog: ========= This release is mostly a bug fix release, with fixes to features such as GATT, SDP, Daemon, and emulator. It also adds a new MGMT Event for Device Found and Device Lost of Advertisement Monitor. New build options for sanitizers (lsan, asan, ubsan) are added and it may require installing additional libraries depending on the distros. (From OE-Core rev: 49f48ce6c3467e784b817b1cfc7155c2f3ebeb84) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11createrepo-c: upgrade 0.17.7 -> 0.18.0wangmy
(From OE-Core rev: a4ecbb65cb85c1a5157154a4a0d931b745addece) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11bash: upgrade 5.1.8 -> 5.1.16wangmy
Changelog: ========= 1. New Features in Bash a. 'bind -x' now supports different bindings for different editing modes and keymaps. b. Bash attempts to optimize the number of times it forks when executing commands in subshells and from 'bash -c'. c. Here documents and here strings now use pipes for the expanded document if it's smaller than the pipe buffer size, reverting to temporary files if it's larger. d. There are new loadable builtins: mktemp, accept, mkfifo, csv, cut/lcut e. In posix mode, 'trap -p' now displays signals whose disposition is SIG_DFL and those that were SIG_IGN when the shell starts. f. The shell now expands the history number (e.g., in PS1) even if it is not currently saving commands to the history list. g. 'read -e' may now be used with arbitrary file descriptors ('read -u N'). h. The 'select' builtin now runs traps if its internal call to the read builtin is interrupted by a signal. i. SRANDOM: a new variable that expands to a 32-bit random number that is not produced by an LCRNG, and uses getrandom/getentropy, falling back to /dev/urandom or arc4random if available. There is a fallback generator if none of these are available. j. shell-transpose-words: a new bindable readline command that uses the same definition of word as shell-forward-word, etc. k. The shell now adds default bindings for shell-forward-word, shell-backward-word, shell-transpose-words, and shell-kill-word. l. Bash now allows ARGV0 appearing in the initial shell environment to set $0. m. If 'unset' is executed without option arguments, bash tries to unset a shell function if a name argument cannot be a shell variable name because it's not an identifier. n. The 'test -N' operator uses nanosecond timestamp granularity if it's available. o. Bash posix mode now treats assignment statements preceding shell function definitions the same as in its default mode, since POSIX has changed and no longer requires those assignments to persist after the function returns (POSIX interp 654). p. BASH_REMATCH is no longer readonly. q. wait: has a new -p VARNAME option, which stores the PID returned by 'wait -n' or 'wait' without arguments. r. Sorting the results of pathname expansion now uses byte-by-byte comparisons if two strings collate equally to impose a total order; the result of a POSIX interpretation. s. Bash now allows SIGINT trap handlers to execute recursively. t. Bash now saves and restores state around setting and unsetting posix mode, instead of having unsetting posix mode set a known state. u. Process substitution is now available in posix mode. v. READLINE_MARK: a new variable available while executing commands bound with 'bind -x', contains the value of the mark. w. Bash removes SIGCHLD from the set of blocked signals if it's blocked at shell startup. x. 'test -v N' can now test whether or not positional parameter N is set. y. 'local' now honors the '-p' option to display all local variables at the current context. z. The '@a' variable transformation now prints attributes for unset array variables. aa. The '@A' variable transformation now prints a declare command that sets a variable's attributes if the variable has attributes but is unset. bb. 'declare' and 'local' now have a -I option that inherits attributes and value from a variable with the same name at a previous scope. cc. When run from a -c command, 'jobs' now reports the status of completed jobs. dd. New 'U', 'u', and 'L' parameter transformations to convert to uppercase, convert first character to uppercase, and convert to lowercase, respectively. ee. PROMPT_COMMAND: can now be an array variable, each element of which can contain a command to be executed like a string PROMPT_COMMAND variable. ff. 'ulimit' has a -R option to report and set the RLIMIT_RTTIME resource. gg. Associative arrays may be assigned using a list of key-value pairs within a compound assignment. Compound assignments where the words are not of the form [key]=value are assumed to be key-value assignments. A missing or empty key is an error; a missing value is treated as NULL. Assignments may not mix the two forms. hh. New 'K' parameter transformation to display associative arrays as key- value pairs. ii. Writing history to syslog now handles messages longer than the syslog max length by writing multiple messages with a sequence number. jj. SECONDS and RANDOM may now be assigned using arithmetic expressions, since they are nominally integer variables. LINENO is not an integer variable. kk. Bash temporarily suppresses the verbose option when running the DEBUG trap while running a command from the 'fc' builtin. ll. 'wait -n' now accepts a list of job specifications as arguments and will wait for the first one in the list to change state. mm. The associative array implementation can now dynamically increase the size of the hash table based on insertion patterns. nn. HISTFILE is now readonly in a restricted shell. oo. The bash malloc now returns memory that is 16-byte aligned on 64-bit systems. pp. If the hash builtin is listing hashed filenames portably, don't print anything if the table is empty. qq. GLOBIGNORE now ignores '.' and '..' as a terminal pathname component. rr. Bash attempts to optimize away forks in the last command in a function body under appropriate circumstances. ss. The globbing code now uses fnmatch(3) to check collation elements (if available) even in cases without multibyte characters. tt. The 'fg' and 'bg' builtins now return an error in a command substitution when asked to restart a job inherited from the parent shell. uu. The shell now attempts to unlink all FIFOs on exit, whether a consuming process has finished with them or not. vv. There is a new contributed loadable builtin: asort. 2. New Features in Readline a. If a second consecutive completion attempt produces matches where the first did not, treat it as a new completion attempt and insert a match as appropriate. b. Bracketed paste mode works in more places: incremental search strings, vi overstrike mode, character search, and reading numeric arguments. c. Readline automatically switches to horizontal scrolling if the terminal has only one line. d. Unbinding all key sequences bound to a particular readline function now descends into keymaps for multi-key sequences. e. rl-clear-display: new bindable command that clears the screen and, if possible, the scrollback buffer (bound to emacs mode M-C-l by default). f. New active mark and face feature: when enabled, it will highlight the text inserted by a bracketed paste (the 'active region') and the text found by incremental and non-incremental history searches. This is tied to bracketed paste and can be disabled by turning off bracketed paste. g. Readline sets the mark in several additional commands. h. Bracketed paste mode is enabled by default. i. Readline tries to take advantage of the more regular structure of UTF-8 characters to identify the beginning and end of characters when moving through the line buffer. j. The bindable operate-and-get-next command (and its default bindings) are now part of readline instead of a bash-specific addition. k. The signal cleanup code now blocks SIGINT while processing after a SIGINT. (From OE-Core rev: 842edd425e82c983ca0b1a7b733baf41cb689a69) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11ell: upgrade 0.46 -> 0.47wangmy
Changelog: ========= Fix issue with memory leaking from DHCP leases. Fix issue with NULL terminating of Base64 encoding. (From OE-Core rev: 489665c86df9157d1d510b8d22a05d890da5b381) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11systemd-boot: restore reproducibilityAlexander Kanavin
(From OE-Core rev: fde5147206ae82d11819fcc23fbe4fc2f94ea52b) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11parselogs: add a couple systemd false positivesAlexander Kanavin
New systemd has changed the phrasing when skipping things, with unfortunate use of 'failed': [ 1.623667] systemd[1]: Journal Audit Socket was skipped because of a failed condition check (ConditionSecurity=audit). [ 1.688258] systemd[1]: Load Kernel Modules was skipped because all trigger condition checks failed. (From OE-Core rev: 743d09665a4ef743b1fa9ac382a713556dfce1a1) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11qemuboot/runqemu: fully form the ip= kernel parameterAlexander Kanavin
New systemd is actually parsing this in systemd-network-generator and fails if it is not fully formed. 'off' means 'static ip, do nothing': https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt (From OE-Core rev: 2cf12c8dde0f05917797f8b4a80883dc0647b95d) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11librsvg: update 2.52.4 -> 2.52.5Alexander Kanavin
Remove upstreamed patches. (From OE-Core rev: b7ad5aacf2c3a58763da438267a31ace8982c1f6) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11epiphany: make libportal optional, and move it to meta-oeAlexander Kanavin
(From OE-Core rev: f87993a918f3087284ac7f1d96701c7bfbbef725) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11libportal: update 0.4 -> 0.5Alexander Kanavin
(From OE-Core rev: c333ae8425c15ee1abc6aaac1bf98e6ff506d0ef) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11mdadm: update 4.1 -> 4.2Alexander Kanavin
Drop 0001-Compute-abs-diff-in-a-standard-compliant-way.patch (upstream refactored code) mdadm-fix-ptest-build-errors.patch (upstream fixed the issue) (From OE-Core rev: acf82e36996c082f52c02d50b06965f74ef87430) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11python3-numpy: update 1.21.4 -> 1.22.0Alexander Kanavin
(From OE-Core rev: 6b9f2e078fb5653a1cedd64e90459e2f0780eb7e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-01-11systemd: update 249.7 -> 250.1Alexander Kanavin
(From OE-Core rev: e22188e47d2fce2406d9db9c95289b3878eda69f) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>