Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *gawk* to *5.4.1* has Succeeded.
Next steps:
- apply the patch: git am 0001-gawk-upgrade-5.4.0-5.4.1.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
-- >8 --
>From f403472ee1de5a99b91edeafabee2aec21ff8259 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Fri, 10 Jul 2026 06:15:10 +0000
Subject: [PATCH] gawk: upgrade 5.4.0 -> 5.4.1
---
.../gawk/files/randtest-fix.patch | 140 ------------------
...c-re-enable-disabled-printf-features.patch | 8 +-
.../gawk/{gawk_5.4.0.bb => gawk_5.4.1.bb} | 3 +-
3 files changed, 5 insertions(+), 146 deletions(-)
delete mode 100644 meta/recipes-extended/gawk/files/randtest-fix.patch
rename meta/recipes-extended/gawk/{gawk_5.4.0.bb => gawk_5.4.1.bb} (96%)
diff --git a/meta/recipes-extended/gawk/files/randtest-fix.patch
b/meta/recipes-extended/gawk/files/randtest-fix.patch
deleted file mode 100644
index ac26eef8d1..0000000000
--- a/meta/recipes-extended/gawk/files/randtest-fix.patch
+++ /dev/null
@@ -1,140 +0,0 @@
-From f2250f4bc864913437619af7a9834a1c24915acd Mon Sep 17 00:00:00 2001
-From: "Arnold D. Robbins" <[email protected]>
-Date: Thu, 28 May 2026 09:52:41 -0400
-Subject: [PATCH] Improve test/randtest.sh.
-
-Backport upstream fix to improve stability of randtest.sh by retrying
-when sigma is too small, avoiding intermittent failures.
-
-Upstream-Status: Backport
[https://cgit.git.savannah.gnu.org/cgit/gawk.git/commit/?id=f2250f4bc864913437619af7a983]
-
-Signed-off-by: Aditya GS <[email protected]>
-
----
-
-diff --git a/test/randtest.sh b/test/randtest.sh
-index 597376a8..6ae6f830 100755
---- a/test/randtest.sh
-+++ b/test/randtest.sh
-@@ -45,68 +45,77 @@ $AWK 'BEGIN{
- nsamples=('$NSAMPLES');
- max_allowed_sigma=('$MAX_ALLOWED_SIGMA');
- nruns=('$NRUNS');
-- for(tau=0;tau<nsamples/2;tau++) corr[tau]=0;
-+ max_retries=5
-
-- for(run=0;run<nruns;run++) {
-- sum=0;
-+ for (retry=0; retry<max_retries; retry++) {
-+ for(tau=0; tau<nsamples/2; tau++) corr[tau]=0;
-
-- # Fill an array with a sequence of samples that are a
-- # function of pairs of rand() values.
-+ for(run=0; run<nruns; run++) {
-+ sum=0;
-
-- for(i=0;i<nsamples;i++) {
-- samp[i]=((rand()-0.5)*(rand()-0.5))^2;
-- sum=sum+samp[i];
-- }
-+ # Fill an array with a sequence of samples that are a
-+ # function of pairs of rand() values.
-
-- # Subtract off the mean of the sequence:
-+ for(i=0; i<nsamples; i++) {
-+ samp[i]=((rand()-0.5)*(rand()-0.5))^2;
-+ sum=sum+samp[i];
-+ }
-
-- mean=sum/nsamples;
-- for(i=0;i<nsamples;i++) samp[i]=samp[i]-mean;
-+ # Subtract off the mean of the sequence:
-
-- # Calculate an autocorrelation function on the sequence.
-- # Because the values of rand() should be independent, there
-- # should be no peaks in the autocorrelation.
-+ mean=sum/nsamples;
-+ for(i=0;i<nsamples;i++) samp[i]=samp[i]-mean;
-
-- for(tau=0;tau<nsamples/2;tau++) {
-- sum=0;
-- for(i=0;i<nsamples/2;i++) sum=sum+samp[i]*samp[i+tau];
-- corr[tau]=corr[tau]+sum;
-- }
-+ # Calculate an autocorrelation function on the sequence.
-+ # Because the values of rand() should be independent, there
-+ # should be no peaks in the autocorrelation.
-
-- }
-- # Normalize the autocorrelation to the tau=0 value.
-+ for(tau=0; tau<nsamples/2; tau++) {
-+ sum=0;
-+ for(i=0;i<nsamples/2;i++) sum=sum+samp[i]*samp[i+tau];
-+ corr[tau]=corr[tau]+sum;
-+ }
-
-- max_corr=corr[0];
-- for(tau=0;tau<nsamples/2;tau++) corr[tau]=corr[tau]/max_corr;
-+ }
-+ # Normalize the autocorrelation to the tau=0 value.
-
-- # OPTIONALLY Print out the autocorrelation values:
-+ max_corr=corr[0];
-+ for(tau=0;tau<nsamples/2;tau++) corr[tau]=corr[tau]/max_corr;
-
-- # for(tau=0;tau<nsamples/2;tau++) print tau, corr[tau] >
"pairpower_corr.data";
-+ # OPTIONALLY Print out the autocorrelation values:
-
-- # Calculate the sigma for the non-zero tau values:
-+ # for(tau=0;tau<nsamples/2;tau++) print tau, corr[tau] >
"pairpower_corr.data";
-
-- power_sum=0;
-+ # Calculate the sigma for the non-zero tau values:
-
-- for(tau=1;tau<nsamples/2;tau++) power_sum=power_sum+(corr[tau])^2;
-+ power_sum=0;
-
-- sigma=sqrt(power_sum/(nsamples/2-1));
-+ for(tau=1;tau<nsamples/2;tau++) power_sum=power_sum+(corr[tau])^2;
-
-- # See if any of the correlations exceed a reasonable number of sigma:
-+ sigma=sqrt(power_sum/(nsamples/2-1));
-
-- passed=1;
-- for(tau=1;tau<nsamples/2;tau++) {
-- if ( abs(corr[tau])/sigma > max_allowed_sigma ) {
-- print "Tau=", tau ", Autocorr=", corr[tau]/sigma, "sigma";
-- passed=0;
-- }
-+ if (sigma < 1e-6) {
-+ print "Sigma too small, retrying run", retry
-+ continue
- }
-- if(!passed) {
-- print "Test failed."
-- exit(1);
-+
-+ # See if any of the correlations exceed a reasonable number of sigma:
-+
-+ for(tau=1;tau<nsamples/2;tau++) {
-+ if (abs(corr[tau])/sigma > max_allowed_sigma) {
-+ print "Tau=", tau ", Autocorr=", corr[tau]/sigma, "sigma";
-+ print "Test failed."
-+ exit 1
-+ }
- }
-- else exit (0);
-+
-+ exit 0
- }
-
-+ print "Test failed after retries due to unstable sigma"
-+ exit 1
-+}
-+
- function abs(abs_input) { return(sqrt(abs_input^2)) ; }
- '
-
---
-2.34.1
-
diff --git
a/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
b/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
index bcbc569531..882edca112 100644
---
a/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
+++
b/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
@@ -1,4 +1,4 @@
-From 9ce3184188e3fa275fde0258a165f4446a6e80f7 Mon Sep 17 00:00:00 2001
+From 53808cbdab1d12c99a4fbadf4ea134b98664e8c7 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <[email protected]>
Date: Fri, 22 Nov 2024 12:13:58 +0100
Subject: [PATCH] configure.ac: re-enable disabled printf features
@@ -12,10 +12,10 @@ Signed-off-by: Alexander Kanavin <[email protected]>
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
-index 0ccd460..7df7e5b 100644
+index 471fbc1..d7d173a 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -400,7 +400,7 @@ int main()
+@@ -402,7 +402,7 @@ int main()
])],
has_f_format=yes,
has_f_format=no,
@@ -24,7 +24,7 @@ index 0ccd460..7df7e5b 100644
)
if test "$has_f_format" = yes
then
-@@ -429,7 +429,7 @@ int main()
+@@ -431,7 +431,7 @@ int main()
])],
has_a_format=yes,
has_a_format=no,
diff --git a/meta/recipes-extended/gawk/gawk_5.4.0.bb
b/meta/recipes-extended/gawk/gawk_5.4.1.bb
similarity index 96%
rename from meta/recipes-extended/gawk/gawk_5.4.0.bb
rename to meta/recipes-extended/gawk/gawk_5.4.1.bb
index 4193456c14..8e8bc34152 100644
--- a/meta/recipes-extended/gawk/gawk_5.4.0.bb
+++ b/meta/recipes-extended/gawk/gawk_5.4.1.bb
@@ -28,10 +28,9 @@ PACKAGECONFIG[pma-if-64bit] = "--enable-pma,--disable-pma, "
SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.xz \
file://run-ptest \
file://0001-configure.ac-re-enable-disabled-printf-features.patch \
- file://randtest-fix.patch \
"
-SRC_URI[sha256sum] =
"3dd430f0cd3b4428c6c3f6afc021b9cd3c1f8c93f7a688dc268ca428a90b4ac1"
+SRC_URI[sha256sum] =
"07f6f7342b7febe4313fc2c2542ad93d64fe20ad8717200109f105a826f5fd37"
inherit autotools gettext texinfo update-alternatives
--
2.47.1
packages/x86-64-v3-poky-linux/gawk/gawk-doc: FILELIST: removed "/usr/share/info/notes.info", added "/usr/share/man/man3/intdiv.3am /usr/share/info/gawknotes.info" packages/x86-64-v3-poky-linux/gawk/gawk-locale-nl: PKGSIZE changed from 67087 to 77277 (+15%) packages/x86-64-v3-poky-linux/gawk/gawk-ptest: FILELIST: added "/usr/lib/gawk/ptest/test/fieldindex.in /usr/lib/gawk/ptest/test/greek-utf.awk /usr/lib/gawk/ptest/test/posix-inf.ok /usr/lib/gawk/ptest/test/memleak4.awk /usr/lib/gawk/ptest/test/regexpbrack3.awk /usr/lib/gawk/ptest/test/fieldindex.ok /usr/lib/gawk/ptest/test/posix-inf.ok2 /usr/lib/gawk/ptest/test/uplus2.ok /usr/lib/gawk/ptest/test/fmtmix.ok /usr/lib/gawk/ptest/test/fmtmix.in /usr/lib/gawk/ptest/test/gensub5.in /usr/lib/gawk/ptest/test/mdim9.ok /usr/lib/gawk/ptest/test/gensub5.ok /usr/lib/gawk/ptest/test/regexpbrack3.ok /usr/lib/gawk/ptest/test/greek-equiv.ok /usr/lib/gawk/ptest/test/greek-equiv.awk /usr/lib/gawk/ptest/test/mdim9.awk /usr/lib/gawk/ptest/test/memleak4.ok /usr/lib/gawk/ptest/test/assignnumfield3.ok /usr/lib/gawk/ptest/test/posix-inf.awk /usr/lib/gawk/ptest/test/assignnumfield3.awk /usr/lib/gawk/ptest/test/uplus2.awk /usr/lib/gawk/ptest/test/gensub5.awk /usr/lib/gawk/ptest/test/splitany.awk /usr/lib/gawk/pt est/test/splitany.ok /usr/lib/gawk/ptest/test/splitany.in /usr/lib/gawk/ptest/test/fieldindex.awk /usr/lib/gawk/ptest/test/greek-utf.ok /usr/lib/gawk/ptest/test/fmtmix.awk" packages/x86-64-v3-poky-linux/gawk/gawk: FILELIST: removed "/usr/bin/gawk-5.4.0", added "/usr/bin/gawk-5.4.1" packages/x86-64-v3-poky-linux/gawk: PACKAGES: added "gawk-locale-ka" Changes to packages/x86_64-linux/gawk-native (sysroot): /usr/bin/gawk-5.4.0 moved to /usr/bin/gawk-5.4.1 Changes to packages/x86_64-linux/python3-build-native (sysroot): /usr/lib/python3.14/site-packages/build-1.5.1.dist-info moved to /usr/lib/python3.14/site-packages/build-1.5.0.dist-info
0001-gawk-upgrade-5.4.0-5.4.1.patch
Description: Binary data
packages/x86-64-v3-poky-linux/gawk/gawk-dbg: PKGSIZE changed from 3708912 to 3617496 (-2%) packages/x86-64-v3-poky-linux/gawk/gawk-dbg: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-dbg: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-dev: PKGSIZE changed from 42496 to 42425 (-0%) packages/x86-64-v3-poky-linux/gawk/gawk-dev: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-dev: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-doc: PKGSIZE changed from 2513532 to 2518754 (+0%) packages/x86-64-v3-poky-linux/gawk/gawk-doc: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-doc: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-doc: FILELIST: removed "/usr/share/info/notes.info", added "/usr/share/info/gawknotes.info /usr/share/man/man3/intdiv.3am" packages/x86-64-v3-poky-linux/gawk/gawk-gawkbug: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-gawkbug: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-ar: PKGSIZE changed from 106437 to 107223 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-ar: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-ar: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-bg: PKGSIZE changed from 127208 to 128056 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-bg: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-bg: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-de: PKGSIZE changed from 98142 to 98839 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-de: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-de: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-es: PKGSIZE changed from 96998 to 97735 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-es: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-es: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-fr: PKGSIZE changed from 98361 to 99076 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-fr: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-fr: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-he: PKGSIZE changed from 87025 to 86827 (-0%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-he: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-he: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-id: PKGSIZE changed from 92616 to 93278 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-id: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-id: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-it: PKGSIZE changed from 94489 to 95333 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-it: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-it: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-ko: PKGSIZE changed from 101914 to 102621 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-ko: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-ko: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-nl: PKGSIZE changed from 67087 to 77277 (+15%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-nl: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-nl: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-pl: PKGSIZE changed from 96063 to 96733 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-pl: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-pl: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-pt-br: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-pt-br: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-pt: PKGSIZE changed from 92987 to 93683 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-pt: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-pt: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-ro: PKGSIZE changed from 99131 to 99851 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-ro: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-ro: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-sr: PKGSIZE changed from 116081 to 119300 (+3%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-sr: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-sr: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-sv: PKGSIZE changed from 93870 to 94647 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-sv: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-sv: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-tr: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-tr: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-uk: PKGSIZE changed from 123160 to 122991 (-0%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-uk: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-uk: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-locale-zh-cn: PKGSIZE changed from 85505 to 85361 (-0%) packages/x86-64-v3-poky-linux/gawk/gawk-locale-zh-cn: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-locale-zh-cn: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-ptest: PKGSIZE changed from 1425742 to 1434598 (+1%) packages/x86-64-v3-poky-linux/gawk/gawk-ptest: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-ptest: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-ptest: FILELIST: added "/usr/lib/gawk/ptest/test/fieldindex.ok /usr/lib/gawk/ptest/test/memleak4.awk /usr/lib/gawk/ptest/test/mdim9.ok /usr/lib/gawk/ptest/test/fieldindex.in /usr/lib/gawk/ptest/test/posix-inf.awk /usr/lib/gawk/ptest/test/memleak4.ok /usr/lib/gawk/ptest/test/splitany.awk /usr/lib/gawk/ptest/test/regexpbrack3.ok /usr/lib/gawk/ptest/test/fmtmix.awk /usr/lib/gawk/ptest/test/posix-inf.ok /usr/lib/gawk/ptest/test/fmtmix.ok /usr/lib/gawk/ptest/test/uplus2.ok /usr/lib/gawk/ptest/test/regexpbrack3.awk /usr/lib/gawk/ptest/test/fmtmix.in /usr/lib/gawk/ptest/test/uplus2.awk /usr/lib/gawk/ptest/test/greek-utf.ok /usr/lib/gawk/ptest/test/greek-equiv.ok /usr/lib/gawk/ptest/test/assignnumfield3.ok /usr/lib/gawk/ptest/test/greek-utf.awk /usr/lib/gawk/ptest/test/gensub5.in /usr/lib/gawk/ptest/test/gensub5.awk /usr/lib/gawk/ptest/test/fieldindex.awk /usr/lib/gawk/ptest/test/mdim9.awk /usr/lib/gawk/ptest/test/splitany.ok /usr/lib/gawk/ptest/test/g ensub5.ok /usr/lib/gawk/ptest/test/splitany.in /usr/lib/gawk/ptest/test/greek-equiv.awk /usr/lib/gawk/ptest/test/assignnumfield3.awk /usr/lib/gawk/ptest/test/posix-inf.ok2" packages/x86-64-v3-poky-linux/gawk/gawk-src: PKGSIZE changed from 2709523 to 2715880 (+0%) packages/x86-64-v3-poky-linux/gawk/gawk-src: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-src: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk-src: FILELIST: directory renamed /usr/src/debug/gawk/5.4.0/awklib -> /usr/src/debug/gawk/5.4.1/awklib, directory renamed /usr/src/debug/gawk/5.4.0/extension -> /usr/src/debug/gawk/5.4.1/extension, directory renamed /usr/src/debug/gawk/5.4.0 -> /usr/src/debug/gawk/5.4.1, directory renamed /usr/src/debug/gawk/5.4.0/posix -> /usr/src/debug/gawk/5.4.1/posix, directory renamed /usr/src/debug/gawk/5.4.0/support/malloc -> /usr/src/debug/gawk/5.4.1/support/malloc, directory renamed /usr/src/debug/gawk/5.4.0/support -> /usr/src/debug/gawk/5.4.1/support packages/x86-64-v3-poky-linux/gawk/gawk-staticdev: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk-staticdev: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk: PKGSIZE changed from 1548653 to 1532198 (-1%) packages/x86-64-v3-poky-linux/gawk/gawk: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk/gawk: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gawk/gawk: FILELIST: removed "/usr/bin/gawk-5.4.0", added "/usr/bin/gawk-5.4.1" packages/x86-64-v3-poky-linux/gawk: PACKAGES: added "gawk-locale-ka" packages/x86-64-v3-poky-linux/gawk: PV changed from "5.4.0" to "5.4.1" packages/x86-64-v3-poky-linux/gawk: SRC_URI changed from "https://ftpmirror.gnu.org/gnu/gawk/gawk-5.4.0.tar.xz file://run-ptest file://0001-configure.ac-re-enable-disabled-printf-features.patch file://randtest-fix.patch" to "https://ftpmirror.gnu.org/gnu/gawk/gawk-5.4.1.tar.xz file://run-ptest file://0001-configure.ac-re-enable-disabled-printf-features.patch" packages/x86-64-v3-poky-linux/gawk: PKGV changed from 5.4.0 [default] to 5.4.1 [default] packages/x86-64-v3-poky-linux/gcc-runtime/gcc-runtime-src: PKGSIZE changed from 11330424 to 11130992 (-2%) packages/x86-64-v3-poky-linux/glibc/glibc-src: PKGSIZE changed from 20246200 to 20246224 (+0%) Changes to packages/x86_64-linux/gawk-native (sysroot): /usr/bin/gawk-5.4.0 moved to /usr/bin/gawk-5.4.1 Changes to packages/x86_64-linux/python3-build-native (sysroot): /usr/lib/python3.14/site-packages/build-1.5.1.dist-info moved to /usr/lib/python3.14/site-packages/build-1.5.0.dist-info
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#240608): https://lists.openembedded.org/g/openembedded-core/message/240608 Mute This Topic: https://lists.openembedded.org/mt/120203243/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
