public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
From: Thomas Perale via buildroot <buildroot@buildroot.org>
To: Giulio Benetti <giulio.benetti@benettiengineering.com>
Cc: Thomas Perale <thomas.perale@mind.be>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH] package/nfs-utils: bump version to 2.8.4
Date: Fri, 20 Mar 2026 16:54:30 +0100	[thread overview]
Message-ID: <20260320155432.175682-1-thomas.perale@mind.be> (raw)
In-Reply-To: <20250912212302.1057923-2-giulio.benetti@benettiengineering.com>

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

  parent reply	other threads:[~2026-03-20 15:54 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260320155432.175682-1-thomas.perale@mind.be \
    --to=buildroot@buildroot.org \
    --cc=giulio.benetti@benettiengineering.com \
    --cc=thomas.perale@mind.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox