From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 19 Oct 2025 14:05:53 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vASAb-009X82-12 for lore@lore.pengutronix.de; Sun, 19 Oct 2025 14:05:53 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vASAa-0004rr-KN; Sun, 19 Oct 2025 14:05:52 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vASAB-0003w9-18; Sun, 19 Oct 2025 14:05:27 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vASAA-004NUr-2h; Sun, 19 Oct 2025 14:05:26 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vASAA-00000002kiV-3G2o; Sun, 19 Oct 2025 14:05:26 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sun, 19 Oct 2025 14:05:26 +0200 Message-ID: <20251019120526.656228-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251015123951.3293199-1-s.pueschel@pengutronix.de> References: <20251015123951.3293199-1-s.pueschel@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] rpcbind: version bump 1.2.6 -> 1.2.8 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Sven=20P=C3=BCschel?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 223dfc1bc1d408a703e1a82cd7823797a88f35c5. Michael [sent from post-receive hook] On Sun, 19 Oct 2025 14:05:26 +0200, Sven Püschel wrote: > The patch has been upstreamed in version 1.2.7. > > https://sourceforge.net/projects/rpcbind/files/rpcbind/1.2.7/1.2.7-ChangeLog/download > https://sourceforge.net/projects/rpcbind/files/rpcbind/1.2.8/1.2.8-ChangeLog/download > > Signed-off-by: Sven Püschel > Message-Id: <20251015123951.3293199-1-s.pueschel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/patches/rpcbind-1.2.6/0001-autotools-systemd-call-rpcbind-with-w-only-on-enable.patch b/patches/rpcbind-1.2.6/0001-autotools-systemd-call-rpcbind-with-w-only-on-enable.patch > deleted file mode 100644 > index c7f06b143d93..000000000000 > --- a/patches/rpcbind-1.2.6/0001-autotools-systemd-call-rpcbind-with-w-only-on-enable.patch > +++ /dev/null > @@ -1,46 +0,0 @@ > -From: Bastian Krause > -Date: Fri, 11 Jun 2021 14:21:03 +0200 > -Subject: [PATCH] autotools/systemd: call rpcbind with -w only on enabled warm > - starts > - > -If rpcbind is configured with --disable-warmstarts it responds on -w > -with its usage string. This is not helpful in a systemd service, so pass > --w conditionally. > - > -Forwarded: https://lore.kernel.org/linux-nfs/20210611122803.24747-1-bst@pengutronix.de/ > -Signed-off-by: Bastian Krause > ---- > - configure.ac | 6 ++++++ > - systemd/rpcbind.service.in | 2 +- > - 2 files changed, 7 insertions(+), 1 deletion(-) > - > -diff --git a/configure.ac b/configure.ac > -index c0ef8967f5eb..c2069a2b3b0e 100644 > ---- a/configure.ac > -+++ b/configure.ac > -@@ -20,6 +20,12 @@ AM_CONDITIONAL(LIBSETDEBUG, test x$lib_setdebug = xyes) > - AC_ARG_ENABLE([warmstarts], > - AS_HELP_STRING([--enable-warmstarts], [Enables Warm Starts @<:@default=no@:>@])) > - AM_CONDITIONAL(WARMSTART, test x$enable_warmstarts = xyes) > -+AS_IF([test x$enable_warmstarts = xyes], [ > -+ warmstarts_opt=-w > -+], [ > -+ warmstarts_opt= > -+]) > -+AC_SUBST([warmstarts_opt], [$warmstarts_opt]) > - > - AC_ARG_ENABLE([rmtcalls], > - AS_HELP_STRING([--enable-rmtcalls], [Enables Remote Calls @<:@default=no@:>@])) > -diff --git a/systemd/rpcbind.service.in b/systemd/rpcbind.service.in > -index 7b1c74bf4261..c892ca86b0d2 100644 > ---- a/systemd/rpcbind.service.in > -+++ b/systemd/rpcbind.service.in > -@@ -12,7 +12,7 @@ Wants=rpcbind.target > - [Service] > - Type=notify > - # distro can provide a drop-in adding EnvironmentFile=-/??? if needed. > --ExecStart=@_sbindir@/rpcbind $RPCBIND_OPTIONS -w -f > -+ExecStart=@_sbindir@/rpcbind $RPCBIND_OPTIONS @warmstarts_opt@ -f > - > - [Install] > - WantedBy=multi-user.target > diff --git a/patches/rpcbind-1.2.6/autogen.sh b/patches/rpcbind-1.2.6/autogen.sh > deleted file mode 120000 > index 9f8a4cb7ddcb..000000000000 > --- a/patches/rpcbind-1.2.6/autogen.sh > +++ /dev/null > @@ -1 +0,0 @@ > -../autogen.sh > \ No newline at end of file > diff --git a/patches/rpcbind-1.2.6/series b/patches/rpcbind-1.2.6/series > deleted file mode 100644 > index d713a495bfd5..000000000000 > --- a/patches/rpcbind-1.2.6/series > +++ /dev/null > @@ -1,4 +0,0 @@ > -# generated by git-ptx-patches > -#tag:base --start-number 1 > -0001-autotools-systemd-call-rpcbind-with-w-only-on-enable.patch > -# eb70a5bb3da9e0dc47fd34fbab92e14d - git-ptx-patches magic > diff --git a/rules/rpcbind.make b/rules/rpcbind.make > index a6997cc97aa3..b14228b8d0c7 100644 > --- a/rules/rpcbind.make > +++ b/rules/rpcbind.make > @@ -14,14 +14,15 @@ PACKAGES-$(PTXCONF_RPCBIND) += rpcbind > # > # Paths and names > # > -RPCBIND_VERSION := 1.2.6 > -RPCBIND_MD5 := 2d84ebbb7d6fb1fc3566d2d4b37f214b > +RPCBIND_VERSION := 1.2.8 > +RPCBIND_MD5 := dc7988c2307999525619983df72cb957 > RPCBIND := rpcbind-$(RPCBIND_VERSION) > RPCBIND_SUFFIX := tar.bz2 > RPCBIND_URL := $(call ptx/mirror, SF, rpcbind/$(RPCBIND).$(RPCBIND_SUFFIX)) > RPCBIND_SOURCE := $(SRCDIR)/$(RPCBIND).$(RPCBIND_SUFFIX) > RPCBIND_DIR := $(BUILDDIR)/$(RPCBIND) > RPCBIND_LICENSE := BSD-3-Clause > +RPCBIND_LICENSE_FILES := file://COPYING;md5=b46486e4c4a416602693a711bb5bfa39 > > # ---------------------------------------------------------------------------- > # Prepare