* [OE-core][scarthgap 0/3] Patch review
@ 2025-03-07 21:50 Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 1/3] tzdata/tzcode-native: upgrade 2024b -> 2025a Steve Sakoman
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Steve Sakoman @ 2025-03-07 21:50 UTC (permalink / raw)
To: openembedded-core
Please review this set of changes for scarthgap and have comments back by
end of day Monday, March 10
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/valkyrie/#/builders/29/builds/1146
The following changes since commit 45fc7048c511c433ecc23840fe6fdd61f6366a47:
systemd: add libpcre2 as RRECOMMENDS if pcre2 is enabled (2025-03-06 06:53:50 -0800)
are available in the Git repository at:
https://git.openembedded.org/openembedded-core-contrib stable/scarthgap-nut
https://git.openembedded.org/openembedded-core-contrib/log/?h=stable/scarthgap-nut
Alessio Cascone (1):
tzcode-native: Fix compiler setting from 2023d version
Priyal Doshi (1):
tzdata/tzcode-native: upgrade 2024b -> 2025a
Vijay Anusuri (1):
libtasn1: upgrade 4.19.0 -> 4.20.0
meta/recipes-extended/timezone/timezone.inc | 6 +++---
meta/recipes-extended/timezone/tzcode-native.bb | 2 +-
.../gnutls/{libtasn1_4.19.0.bb => libtasn1_4.20.0.bb} | 7 +++----
3 files changed, 7 insertions(+), 8 deletions(-)
rename meta/recipes-support/gnutls/{libtasn1_4.19.0.bb => libtasn1_4.20.0.bb} (63%)
--
2.43.0
^ permalink raw reply [flat|nested] 5+ messages in thread* [OE-core][scarthgap 1/3] tzdata/tzcode-native: upgrade 2024b -> 2025a
2025-03-07 21:50 [OE-core][scarthgap 0/3] Patch review Steve Sakoman
@ 2025-03-07 21:50 ` Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 2/3] tzcode-native: Fix compiler setting from 2023d version Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 3/3] libtasn1: upgrade 4.19.0 -> 4.20.0 Steve Sakoman
2 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2025-03-07 21:50 UTC (permalink / raw)
To: openembedded-core
From: Priyal Doshi <pdoshi@mvista.com>
Signed-off-by: Priyal Doshi <pdoshi@mvista.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a15c4e6793c55c8084a61298ef3695e1db2f60cd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/timezone/timezone.inc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-extended/timezone/timezone.inc b/meta/recipes-extended/timezone/timezone.inc
index adf095280f..f1dbd7ba81 100644
--- a/meta/recipes-extended/timezone/timezone.inc
+++ b/meta/recipes-extended/timezone/timezone.inc
@@ -6,7 +6,7 @@ SECTION = "base"
LICENSE = "PD & BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c679c9d6b02bc2757b3eaf8f53c43fba"
-PV = "2024b"
+PV = "2025a"
SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode;subdir=tz \
http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata;subdir=tz \
@@ -16,5 +16,5 @@ S = "${WORKDIR}/tz"
UPSTREAM_CHECK_URI = "http://www.iana.org/time-zones"
-SRC_URI[tzcode.sha256sum] = "5e438fc449624906af16a18ff4573739f0cda9862e5ec28d3bcb19cbaed0f672"
-SRC_URI[tzdata.sha256sum] = "70e754db126a8d0db3d16d6b4cb5f7ec1e04d5f261255e4558a67fe92d39e550"
+SRC_URI[tzcode.sha256sum] = "119679d59f76481eb5e03d3d2a47d7870d592f3999549af189dbd31f2ebf5061"
+SRC_URI[tzdata.sha256sum] = "4d5fcbc72c7c450ebfe0b659bd0f1c02fbf52fd7f517a9ea13fe71c21eb5f0d0"
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [OE-core][scarthgap 2/3] tzcode-native: Fix compiler setting from 2023d version
2025-03-07 21:50 [OE-core][scarthgap 0/3] Patch review Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 1/3] tzdata/tzcode-native: upgrade 2024b -> 2025a Steve Sakoman
@ 2025-03-07 21:50 ` Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 3/3] libtasn1: upgrade 4.19.0 -> 4.20.0 Steve Sakoman
2 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2025-03-07 21:50 UTC (permalink / raw)
To: openembedded-core
From: Alessio Cascone <alessio.cascone@vimar.com>
Starting from 2023d version, tzcode makefile does not use anymore "cc"
variable for C compiler, due to Makefile refactoring.
Replacing "cc" with "CC" fixes the issue.
Signed-off-by: Alessio Cascone <alessio.cascone@vimar.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit b3cdfca5ef84ed2054faef9abddef3aeed930e17)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
meta/recipes-extended/timezone/tzcode-native.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/timezone/tzcode-native.bb b/meta/recipes-extended/timezone/tzcode-native.bb
index d0b23a9d80..dc9f076377 100644
--- a/meta/recipes-extended/timezone/tzcode-native.bb
+++ b/meta/recipes-extended/timezone/tzcode-native.bb
@@ -4,7 +4,7 @@ SUMMARY = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
inherit native
-EXTRA_OEMAKE += "cc='${CC}'"
+EXTRA_OEMAKE += "CC='${CC}'"
do_install () {
install -d ${D}${bindir}/
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [OE-core][scarthgap 3/3] libtasn1: upgrade 4.19.0 -> 4.20.0
2025-03-07 21:50 [OE-core][scarthgap 0/3] Patch review Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 1/3] tzdata/tzcode-native: upgrade 2024b -> 2025a Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 2/3] tzcode-native: Fix compiler setting from 2023d version Steve Sakoman
@ 2025-03-07 21:50 ` Steve Sakoman
2 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2025-03-07 21:50 UTC (permalink / raw)
To: openembedded-core
From: Vijay Anusuri <vanusuri@mvista.com>
* Noteworthy changes in release 4.20.0 (2025-02-01) [stable]
- The release tarball is now reproducible.
- We publish a minimal source-only tarball generated by 'git archive'.
- Update gnulib files and various build/maintenance fixes.
- Fix CVE-2024-12133: Potential DoS in handling of numerous SEQUENCE OF or SET
OF elements
License-Update: file COPYING.LESSER renamed to COPYING.LESSERv2 & Copyright year updated to 2025
Signed-off-by: Vijay Anusuri <vanusuri@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
.../gnutls/{libtasn1_4.19.0.bb => libtasn1_4.20.0.bb} | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
rename meta/recipes-support/gnutls/{libtasn1_4.19.0.bb => libtasn1_4.20.0.bb} (63%)
diff --git a/meta/recipes-support/gnutls/libtasn1_4.19.0.bb b/meta/recipes-support/gnutls/libtasn1_4.20.0.bb
similarity index 63%
rename from meta/recipes-support/gnutls/libtasn1_4.19.0.bb
rename to meta/recipes-support/gnutls/libtasn1_4.20.0.bb
index 5fb8b54c06..8127ba5b1d 100644
--- a/meta/recipes-support/gnutls/libtasn1_4.19.0.bb
+++ b/meta/recipes-support/gnutls/libtasn1_4.20.0.bb
@@ -6,9 +6,8 @@ HOMEPAGE = "http://www.gnu.org/software/libtasn1/"
LICENSE = "GPL-3.0-or-later & LGPL-2.1-or-later"
LICENSE:${PN}-bin = "GPL-3.0-or-later"
LICENSE:${PN} = "LGPL-2.1-or-later"
-LIC_FILES_CHKSUM = "file://doc/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
- file://doc/COPYING.LESSER;md5=4fbd65380cdd255951079008b364516c \
- file://COPYING;md5=75ac100ec923f959898182307970c360"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
+ file://COPYING.LESSERv2;md5=4bf661c1e3793e55c8d1051bc5e0ae21"
SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \
file://dont-depend-on-help2man.patch \
@@ -16,7 +15,7 @@ SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \
DEPENDS = "bison-native"
-SRC_URI[sha256sum] = "1613f0ac1cf484d6ec0ce3b8c06d56263cc7242f1c23b30d82d23de345a63f7a"
+SRC_URI[sha256sum] = "92e0e3bd4c02d4aeee76036b2ddd83f0c732ba4cda5cb71d583272b23587a76c"
inherit autotools texinfo lib_package gtk-doc
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [OE-core][scarthgap 0/3] Patch review
@ 2024-05-03 13:53 Steve Sakoman
0 siblings, 0 replies; 5+ messages in thread
From: Steve Sakoman @ 2024-05-03 13:53 UTC (permalink / raw)
To: openembedded-core
Please review this set of changes for scarthgap and have comments back by
end of day Monday, May 6
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/6873
The following changes since commit e38a0f1a5e515651173b1aa21d38f2b3924de8b2:
mpg123: upgrade 1.32.5 -> 1.32.6 (2024-04-30 05:57:43 -0700)
are available in the Git repository at:
https://git.openembedded.org/openembedded-core-contrib stable/scarthgap-nut
https://git.openembedded.org/openembedded-core-contrib/log/?h=stable/scarthgap-nut
Alexander Kanavin (1):
scripts/oe-setup-build: write a build environment initialization
one-liner into the build directory
Christian Bräuner Sørensen (1):
systemd: sed ROOT_HOME only if sysusers PACKAGECONFIG is set
Mark Hatle (1):
sstate.bbclass: Add _SSTATE_EXCLUDEDEPS_SYSROOT to vardepsexclude
meta/classes-global/sstate.bbclass | 2 +-
meta/recipes-core/systemd/systemd_255.4.bb | 18 ++++++++++--------
scripts/oe-setup-build | 11 ++++++++++-
3 files changed, 21 insertions(+), 10 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-03-07 21:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-07 21:50 [OE-core][scarthgap 0/3] Patch review Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 1/3] tzdata/tzcode-native: upgrade 2024b -> 2025a Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 2/3] tzcode-native: Fix compiler setting from 2023d version Steve Sakoman
2025-03-07 21:50 ` [OE-core][scarthgap 3/3] libtasn1: upgrade 4.19.0 -> 4.20.0 Steve Sakoman
-- strict thread matches above, loose matches on Subject: below --
2024-05-03 13:53 [OE-core][scarthgap 0/3] Patch review Steve Sakoman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox