| Message ID | 20251012164922.3447879-1-bernd@kuhls.net |
|---|---|
| State | Changes Requested |
| Delegated to: | Julien Olivain |
| Headers | show |
| Series | [1/1] package/coreutils: bump version to 9.8 | expand |
Hi Bernd, Thanks for the patch. It introduces few build failures. See: https://gitlab.com/jolivain/buildroot/-/pipelines/2135499293 It might be needed to add "--disable-year2038" in _CONF_OPTS with this version. Could you also add release notes or announces, since v9.5 please? On 12/10/2025 18:49, Bernd Kuhls wrote: > Removed patch which is included in this release. > > Signed-off-by: Bernd Kuhls <bernd@kuhls.net> > --- > ...001-coreutils-mcel-port-to-uClibc-ng.patch | 35 ------------------- > package/coreutils/coreutils.hash | 2 +- > package/coreutils/coreutils.mk | 2 +- > 3 files changed, 2 insertions(+), 37 deletions(-) > delete mode 100644 > package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch > > diff --git > a/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch > b/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch > deleted file mode 100644 > index 7639509ff2..0000000000 > --- a/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch > +++ /dev/null > @@ -1,35 +0,0 @@ > -From c4e923a98f34fe5f5ec3b49543e90716ec2a45fc Mon Sep 17 00:00:00 2001 > -From: Jean-Michel Hautbois <jeanmichel.hautbois@yoseli.org> > -Date: Tue, 24 Sep 2024 18:08:31 +0200 > -Subject: [PATCH] coreutils: mcel: port to uClibc-ng > -MIME-Version: 1.0 > -Content-Type: text/plain; charset=UTF-8 > -Content-Transfer-Encoding: 8bit > - > -Problem reported by Waldemar Brodkorb in: > -https://lists.gnu.org/r/bug-gnulib/2024-08/msg00130.html > -* lib/mcel.h (mcel_scan): Don't treat uClibc-ng like glibc. > - > -Upstream: > https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=9765bc796b3e6ceaa7a10ba07c9c2f1e272a4249 > -Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@yoseli.org> > ---- > - lib/mcel.h | 3 ++- > - 1 file changed, 2 insertions(+), 1 deletion(-) > - > -diff --git a/lib/mcel.h b/lib/mcel.h > -index f6f006c..dca4d08 100644 > ---- a/lib/mcel.h > -+++ b/lib/mcel.h > -@@ -221,7 +221,8 @@ mcel_scan (char const *p, char const *lim) > - > - /* An initial mbstate_t; initialization optimized for some > platforms. > - For details about these and other platforms, see wchar.in.h. */ > --#if defined __GLIBC__ && 2 < __GLIBC__ + (2 <= __GLIBC_MINOR__) > -+#if (defined __GLIBC__ && 2 < __GLIBC__ + (2 <= __GLIBC_MINOR__) \ > -+ && !defined __UCLIBC__) > - /* Although only a trivial optimization, it's worth it for GNU. */ > - mbstate_t mbs; mbs.__count = 0; > - #elif (defined __FreeBSD__ || defined __DragonFly__ || defined > __OpenBSD__ \ > --- > -2.39.2 > - > diff --git a/package/coreutils/coreutils.hash > b/package/coreutils/coreutils.hash > index 3455c95c58..2c353f0f6d 100644 > --- a/package/coreutils/coreutils.hash > +++ b/package/coreutils/coreutils.hash > @@ -1,4 +1,4 @@ > # Locally calculated after checking pgp signature > -sha256 > cd328edeac92f6a665de9f323c93b712af1858bc2e0d88f3f7100469470a1b8a > coreutils-9.5.tar.xz > +sha256 > e6d4fd2d852c9141a1c2a18a13d146a0cd7e45195f72293a4e4c044ec6ccca15 > coreutils-9.8.tar.xz > # Locally computed > sha256 > 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 > COPYING > diff --git a/package/coreutils/coreutils.mk > b/package/coreutils/coreutils.mk > index a6d193b49e..be7569ed99 100644 > --- a/package/coreutils/coreutils.mk > +++ b/package/coreutils/coreutils.mk > @@ -4,7 +4,7 @@ > # > > ################################################################################ > > -COREUTILS_VERSION = 9.5 > +COREUTILS_VERSION = 9.8 > COREUTILS_SITE = $(BR2_GNU_MIRROR)/coreutils > COREUTILS_SOURCE = coreutils-$(COREUTILS_VERSION).tar.xz > COREUTILS_LICENSE = GPL-3.0+ > -- > 2.47.3 Best regards, Julien.
diff --git a/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch b/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch deleted file mode 100644 index 7639509ff2..0000000000 --- a/package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch +++ /dev/null @@ -1,35 +0,0 @@ -From c4e923a98f34fe5f5ec3b49543e90716ec2a45fc Mon Sep 17 00:00:00 2001 -From: Jean-Michel Hautbois <jeanmichel.hautbois@yoseli.org> -Date: Tue, 24 Sep 2024 18:08:31 +0200 -Subject: [PATCH] coreutils: mcel: port to uClibc-ng -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Problem reported by Waldemar Brodkorb in: -https://lists.gnu.org/r/bug-gnulib/2024-08/msg00130.html -* lib/mcel.h (mcel_scan): Don't treat uClibc-ng like glibc. - -Upstream: https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=9765bc796b3e6ceaa7a10ba07c9c2f1e272a4249 -Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@yoseli.org> ---- - lib/mcel.h | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/lib/mcel.h b/lib/mcel.h -index f6f006c..dca4d08 100644 ---- a/lib/mcel.h -+++ b/lib/mcel.h -@@ -221,7 +221,8 @@ mcel_scan (char const *p, char const *lim) - - /* An initial mbstate_t; initialization optimized for some platforms. - For details about these and other platforms, see wchar.in.h. */ --#if defined __GLIBC__ && 2 < __GLIBC__ + (2 <= __GLIBC_MINOR__) -+#if (defined __GLIBC__ && 2 < __GLIBC__ + (2 <= __GLIBC_MINOR__) \ -+ && !defined __UCLIBC__) - /* Although only a trivial optimization, it's worth it for GNU. */ - mbstate_t mbs; mbs.__count = 0; - #elif (defined __FreeBSD__ || defined __DragonFly__ || defined __OpenBSD__ \ --- -2.39.2 - diff --git a/package/coreutils/coreutils.hash b/package/coreutils/coreutils.hash index 3455c95c58..2c353f0f6d 100644 --- a/package/coreutils/coreutils.hash +++ b/package/coreutils/coreutils.hash @@ -1,4 +1,4 @@ # Locally calculated after checking pgp signature -sha256 cd328edeac92f6a665de9f323c93b712af1858bc2e0d88f3f7100469470a1b8a coreutils-9.5.tar.xz +sha256 e6d4fd2d852c9141a1c2a18a13d146a0cd7e45195f72293a4e4c044ec6ccca15 coreutils-9.8.tar.xz # Locally computed sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 COPYING diff --git a/package/coreutils/coreutils.mk b/package/coreutils/coreutils.mk index a6d193b49e..be7569ed99 100644 --- a/package/coreutils/coreutils.mk +++ b/package/coreutils/coreutils.mk @@ -4,7 +4,7 @@ # ################################################################################ -COREUTILS_VERSION = 9.5 +COREUTILS_VERSION = 9.8 COREUTILS_SITE = $(BR2_GNU_MIRROR)/coreutils COREUTILS_SOURCE = coreutils-$(COREUTILS_VERSION).tar.xz COREUTILS_LICENSE = GPL-3.0+
Removed patch which is included in this release. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> --- ...001-coreutils-mcel-port-to-uClibc-ng.patch | 35 ------------------- package/coreutils/coreutils.hash | 2 +- package/coreutils/coreutils.mk | 2 +- 3 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 package/coreutils/0001-coreutils-mcel-port-to-uClibc-ng.patch