* [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0
@ 2025-09-12 21:22 Giulio Benetti
2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Giulio Benetti @ 2025-09-12 21:22 UTC (permalink / raw)
To: buildroot; +Cc: Giulio Benetti, Joseph Kogut, Petr Vorel
Release Notes:
https://github.com/harfbuzz/harfbuzz/releases/tag/11.5.0
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
package/harfbuzz/harfbuzz.hash | 2 +-
package/harfbuzz/harfbuzz.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/harfbuzz/harfbuzz.hash b/package/harfbuzz/harfbuzz.hash
index a4978ca134..ccf96ec6d0 100644
--- a/package/harfbuzz/harfbuzz.hash
+++ b/package/harfbuzz/harfbuzz.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 0f052eb4ab01d8bae98ba971c954becb32be57d7250f18af343b1d27892e03fa harfbuzz-11.4.5.tar.xz
+sha256 2d30ba45c4c8ec4de661a1002b4f88d0841ff1a3087f34629275f5436d722109 harfbuzz-11.5.0.tar.xz
sha256 ba8f810f2455c2f08e2d56bb49b72f37fcf68f1f4fade38977cfd7372050ad64 COPYING
diff --git a/package/harfbuzz/harfbuzz.mk b/package/harfbuzz/harfbuzz.mk
index b1bec26ccb..4ec3165e57 100644
--- a/package/harfbuzz/harfbuzz.mk
+++ b/package/harfbuzz/harfbuzz.mk
@@ -4,7 +4,7 @@
#
################################################################################
-HARFBUZZ_VERSION = 11.4.5
+HARFBUZZ_VERSION = 11.5.0
HARFBUZZ_SITE = https://github.com/harfbuzz/harfbuzz/releases/download/$(HARFBUZZ_VERSION)
HARFBUZZ_SOURCE = harfbuzz-$(HARFBUZZ_VERSION).tar.xz
HARFBUZZ_LICENSE = MIT, ISC (ucdn library)
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread* [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 2025-09-12 21:22 [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Giulio Benetti @ 2025-09-12 21:22 ` Giulio Benetti 2025-09-13 13:08 ` Petr Vorel 2026-03-20 15:54 ` Thomas Perale via buildroot 2025-09-12 21:22 ` [Buildroot] [PATCH] package/libnss: bump version to 3.116 Giulio Benetti 2025-09-13 10:31 ` [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Julien Olivain via buildroot 2 siblings, 2 replies; 7+ messages in thread From: Giulio Benetti @ 2025-09-12 21:22 UTC (permalink / raw) To: buildroot; +Cc: Giulio Benetti, Joseph Kogut, Petr Vorel Release announce: https://lore.kernel.org/linux-nfs/6f271c01-cd4b-456b-80ac-77a96b99a1fe@redhat.com/ Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> --- .../0001-Fix-build-with-glibc-2.42.patch | 59 ------------------- package/nfs-utils/nfs-utils.hash | 4 +- package/nfs-utils/nfs-utils.mk | 2 +- 3 files changed, 3 insertions(+), 62 deletions(-) delete mode 100644 package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch diff --git a/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch b/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch deleted file mode 100644 index 6bf3622586..0000000000 --- a/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch +++ /dev/null @@ -1,59 +0,0 @@ -From 9f974046c37b7c28705d5558328759fff708b1cb Mon Sep 17 00:00:00 2001 -From: Yaakov Selkowitz <yselkowi@redhat.com> -Date: Fri, 27 Jun 2025 04:54:08 -0500 -Subject: Fix build with glibc-2.42 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -exportfs.c: In function ‘release_lockfile’: -exportfs.c:83:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result] - 83 | lockf(_lockfd, F_ULOCK, 0); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -exportfs.c: In function ‘grab_lockfile’: -exportfs.c:77:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result] - 77 | lockf(_lockfd, F_LOCK, 0); - | ^~~~~~~~~~~~~~~~~~~~~~~~~ - -lockf is now marked with attribute warn_unused_result: - -https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=f3c82fc1b41261f582f5f9fa12f74af9bcbc88f9 - -Signed-off-by: Steve Dickson <steved@redhat.com> - -Upstream: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=9f974046c37b7c28705d5558328759fff708b1cb - -Signed-off-by: Bernd Kuhls <bernd@kuhls.net> ---- - utils/exportfs/exportfs.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c -index b03a047b..748c38e3 100644 ---- a/utils/exportfs/exportfs.c -+++ b/utils/exportfs/exportfs.c -@@ -74,13 +74,19 @@ grab_lockfile(void) - { - _lockfd = open(lockfile, O_CREAT|O_RDWR, 0666); - if (_lockfd != -1) -- lockf(_lockfd, F_LOCK, 0); -+ if (lockf(_lockfd, F_LOCK, 0) != 0) { -+ xlog_warn("%s: lockf() failed: errno %d (%s)", -+ __func__, errno, strerror(errno)); -+ } - } - static void - release_lockfile(void) - { - if (_lockfd != -1) { -- lockf(_lockfd, F_ULOCK, 0); -+ if (lockf(_lockfd, F_ULOCK, 0) != 0) { -+ xlog_warn("%s: lockf() failed: errno %d (%s)", -+ __func__, errno, strerror(errno)); -+ } - close(_lockfd); - _lockfd = -1; - } --- -cgit v1.2.3 - diff --git a/package/nfs-utils/nfs-utils.hash b/package/nfs-utils/nfs-utils.hash index af5fc8bd73..fb5c03d917 100644 --- a/package/nfs-utils/nfs-utils.hash +++ b/package/nfs-utils/nfs-utils.hash @@ -1,4 +1,4 @@ -# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.3/sha256sums.asc -sha256 11e7c5847a8423a72931c865bd9296e7fd56ff270a795a849183900961711725 nfs-utils-2.8.3.tar.xz +# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.4/sha256sums.asc +sha256 11c4cc598a434d7d340bad3e072a373ba1dcc2c49f855d44b202222b78ecdbf5 nfs-utils-2.8.4.tar.xz # Locally computed sha256 576540abf5e95029ad4ad90e32071385a5e95b2c30708c706116f3eb87b9a3de COPYING diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk index 0af0254d3f..e7d82b10ba 100644 --- a/package/nfs-utils/nfs-utils.mk +++ b/package/nfs-utils/nfs-utils.mk @@ -4,7 +4,7 @@ # ################################################################################ -NFS_UTILS_VERSION = 2.8.3 +NFS_UTILS_VERSION = 2.8.4 NFS_UTILS_SOURCE = nfs-utils-$(NFS_UTILS_VERSION).tar.xz NFS_UTILS_SITE = https://www.kernel.org/pub/linux/utils/nfs-utils/$(NFS_UTILS_VERSION) NFS_UTILS_LICENSE = GPL-2.0+ -- 2.43.0 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti @ 2025-09-13 13:08 ` Petr Vorel 2026-03-20 15:54 ` Thomas Perale via buildroot 1 sibling, 0 replies; 7+ messages in thread From: Petr Vorel @ 2025-09-13 13:08 UTC (permalink / raw) To: Giulio Benetti; +Cc: buildroot, Joseph Kogut Hi Giulio, > Release announce: > https://lore.kernel.org/linux-nfs/6f271c01-cd4b-456b-80ac-77a96b99a1fe@redhat.com/ Thanks! Reviewed-by: Petr Vorel <petr.vorel@gmail.com> Kind regards, Petr _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti 2025-09-13 13:08 ` Petr Vorel @ 2026-03-20 15:54 ` Thomas Perale via buildroot 1 sibling, 0 replies; 7+ messages in thread From: Thomas Perale via buildroot @ 2026-03-20 15:54 UTC (permalink / raw) To: Giulio Benetti; +Cc: Thomas Perale, buildroot In reply of: > Release announce: > https://lore.kernel.org/linux-nfs/6f271c01-cd4b-456b-80ac-77a96b99a1fe@redhat.com/ > > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Applied to 2025.02.x. Thanks > --- > .../0001-Fix-build-with-glibc-2.42.patch | 59 ------------------- > package/nfs-utils/nfs-utils.hash | 4 +- > package/nfs-utils/nfs-utils.mk | 2 +- > 3 files changed, 3 insertions(+), 62 deletions(-) > delete mode 100644 package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch > > diff --git a/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch b/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch > deleted file mode 100644 > index 6bf3622586..0000000000 > --- a/package/nfs-utils/0001-Fix-build-with-glibc-2.42.patch > +++ /dev/null > @@ -1,59 +0,0 @@ > -From 9f974046c37b7c28705d5558328759fff708b1cb Mon Sep 17 00:00:00 2001 > -From: Yaakov Selkowitz <yselkowi@redhat.com> > -Date: Fri, 27 Jun 2025 04:54:08 -0500 > -Subject: Fix build with glibc-2.42 > -MIME-Version: 1.0 > -Content-Type: text/plain; charset=UTF-8 > -Content-Transfer-Encoding: 8bit > - > -exportfs.c: In function ‘release_lockfile’: > -exportfs.c:83:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result] > - 83 | lockf(_lockfd, F_ULOCK, 0); > - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ > -exportfs.c: In function ‘grab_lockfile’: > -exportfs.c:77:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result] > - 77 | lockf(_lockfd, F_LOCK, 0); > - | ^~~~~~~~~~~~~~~~~~~~~~~~~ > - > -lockf is now marked with attribute warn_unused_result: > - > -https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=f3c82fc1b41261f582f5f9fa12f74af9bcbc88f9 > - > -Signed-off-by: Steve Dickson <steved@redhat.com> > - > -Upstream: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=9f974046c37b7c28705d5558328759fff708b1cb > - > -Signed-off-by: Bernd Kuhls <bernd@kuhls.net> > ---- > - utils/exportfs/exportfs.c | 10 ++++++++-- > - 1 file changed, 8 insertions(+), 2 deletions(-) > - > -diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c > -index b03a047b..748c38e3 100644 > ---- a/utils/exportfs/exportfs.c > -+++ b/utils/exportfs/exportfs.c > -@@ -74,13 +74,19 @@ grab_lockfile(void) > - { > - _lockfd = open(lockfile, O_CREAT|O_RDWR, 0666); > - if (_lockfd != -1) > -- lockf(_lockfd, F_LOCK, 0); > -+ if (lockf(_lockfd, F_LOCK, 0) != 0) { > -+ xlog_warn("%s: lockf() failed: errno %d (%s)", > -+ __func__, errno, strerror(errno)); > -+ } > - } > - static void > - release_lockfile(void) > - { > - if (_lockfd != -1) { > -- lockf(_lockfd, F_ULOCK, 0); > -+ if (lockf(_lockfd, F_ULOCK, 0) != 0) { > -+ xlog_warn("%s: lockf() failed: errno %d (%s)", > -+ __func__, errno, strerror(errno)); > -+ } > - close(_lockfd); > - _lockfd = -1; > - } > --- > -cgit v1.2.3 > - > diff --git a/package/nfs-utils/nfs-utils.hash b/package/nfs-utils/nfs-utils.hash > index af5fc8bd73..fb5c03d917 100644 > --- a/package/nfs-utils/nfs-utils.hash > +++ b/package/nfs-utils/nfs-utils.hash > @@ -1,4 +1,4 @@ > -# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.3/sha256sums.asc > -sha256 11e7c5847a8423a72931c865bd9296e7fd56ff270a795a849183900961711725 nfs-utils-2.8.3.tar.xz > +# From https://www.kernel.org/pub/linux/utils/nfs-utils/2.8.4/sha256sums.asc > +sha256 11c4cc598a434d7d340bad3e072a373ba1dcc2c49f855d44b202222b78ecdbf5 nfs-utils-2.8.4.tar.xz > # Locally computed > sha256 576540abf5e95029ad4ad90e32071385a5e95b2c30708c706116f3eb87b9a3de COPYING > diff --git a/package/nfs-utils/nfs-utils.mk b/package/nfs-utils/nfs-utils.mk > index 0af0254d3f..e7d82b10ba 100644 > --- a/package/nfs-utils/nfs-utils.mk > +++ b/package/nfs-utils/nfs-utils.mk > @@ -4,7 +4,7 @@ > # > ################################################################################ > > -NFS_UTILS_VERSION = 2.8.3 > +NFS_UTILS_VERSION = 2.8.4 > NFS_UTILS_SOURCE = nfs-utils-$(NFS_UTILS_VERSION).tar.xz > NFS_UTILS_SITE = https://www.kernel.org/pub/linux/utils/nfs-utils/$(NFS_UTILS_VERSION) > NFS_UTILS_LICENSE = GPL-2.0+ > -- > 2.43.0 > > _______________________________________________ > buildroot mailing list > buildroot@buildroot.org > https://lists.buildroot.org/mailman/listinfo/buildroot _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/libnss: bump version to 3.116 2025-09-12 21:22 [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Giulio Benetti 2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti @ 2025-09-12 21:22 ` Giulio Benetti 2025-09-13 10:48 ` Julien Olivain via buildroot 2025-09-13 10:31 ` [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Julien Olivain via buildroot 2 siblings, 1 reply; 7+ messages in thread From: Giulio Benetti @ 2025-09-12 21:22 UTC (permalink / raw) To: buildroot; +Cc: Giulio Benetti, Joseph Kogut, Petr Vorel For release note, see: https://hg-edge.mozilla.org/projects/nss/file/tip/doc/rst/releases/nss_3_116.rst Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> --- package/libnss/libnss.hash | 4 ++-- package/libnss/libnss.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/libnss/libnss.hash b/package/libnss/libnss.hash index abd550d5c8..c839d58b80 100644 --- a/package/libnss/libnss.hash +++ b/package/libnss/libnss.hash @@ -1,4 +1,4 @@ -# From https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_115_1_RTM/src/SHA256SUMS -sha256 b8189c030b528e57dc5290023c07eea429ce242912a51a0388c184c75a257bcf nss-3.115.1.tar.gz +# From https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_116_RTM/src/SHA256SUMS +sha256 3938611de4ad1e3b71f27f3cd5ea717a5b5f83bffc9cd427e6d929dc67f2bb73 nss-3.116.tar.gz # Locally calculated sha256 a20c1a32d1f8102432360b42e932869f7c11c7cdbacf9cac554c422132af47f4 nss/COPYING diff --git a/package/libnss/libnss.mk b/package/libnss/libnss.mk index 9e8e7d36cf..b0f15a6317 100644 --- a/package/libnss/libnss.mk +++ b/package/libnss/libnss.mk @@ -4,7 +4,7 @@ # ################################################################################ -LIBNSS_VERSION = 3.115.1 +LIBNSS_VERSION = 3.116 LIBNSS_SOURCE = nss-$(LIBNSS_VERSION).tar.gz LIBNSS_SITE = https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_$(subst .,_,$(LIBNSS_VERSION))_RTM/src LIBNSS_DISTDIR = dist -- 2.43.0 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/libnss: bump version to 3.116 2025-09-12 21:22 ` [Buildroot] [PATCH] package/libnss: bump version to 3.116 Giulio Benetti @ 2025-09-13 10:48 ` Julien Olivain via buildroot 0 siblings, 0 replies; 7+ messages in thread From: Julien Olivain via buildroot @ 2025-09-13 10:48 UTC (permalink / raw) To: Giulio Benetti; +Cc: buildroot, Joseph Kogut, Petr Vorel On 12/09/2025 23:22, Giulio Benetti wrote: > For release note, see: > https://hg-edge.mozilla.org/projects/nss/file/tip/doc/rst/releases/nss_3_116.rst > > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Applied to master, thanks. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 2025-09-12 21:22 [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Giulio Benetti 2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti 2025-09-12 21:22 ` [Buildroot] [PATCH] package/libnss: bump version to 3.116 Giulio Benetti @ 2025-09-13 10:31 ` Julien Olivain via buildroot 2 siblings, 0 replies; 7+ messages in thread From: Julien Olivain via buildroot @ 2025-09-13 10:31 UTC (permalink / raw) To: Giulio Benetti; +Cc: buildroot, Joseph Kogut, Petr Vorel On 12/09/2025 23:22, Giulio Benetti wrote: > Release Notes: > https://github.com/harfbuzz/harfbuzz/releases/tag/11.5.0 > > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Applied to master, thanks. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-20 15:54 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-09-12 21:22 [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Giulio Benetti 2025-09-12 21:22 ` [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4 Giulio Benetti 2025-09-13 13:08 ` Petr Vorel 2026-03-20 15:54 ` Thomas Perale via buildroot 2025-09-12 21:22 ` [Buildroot] [PATCH] package/libnss: bump version to 3.116 Giulio Benetti 2025-09-13 10:48 ` Julien Olivain via buildroot 2025-09-13 10:31 ` [Buildroot] [PATCH] package/harfbuzz: bump to version 11.5.0 Julien Olivain via buildroot
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox