mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] rpcbind: version bump 1.2.6 -> 1.2.8
@ 2025-10-15 12:39 Sven Püschel
  0 siblings, 0 replies; only message in thread
From: Sven Püschel @ 2025-10-15 12:39 UTC (permalink / raw)
  To: ptxdist; +Cc: Sven Püschel

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 <s.pueschel@pengutronix.de>
---
 ...d-call-rpcbind-with-w-only-on-enable.patch | 46 -------------------
 patches/rpcbind-1.2.6/autogen.sh              |  1 -
 patches/rpcbind-1.2.6/series                  |  4 --
 rules/rpcbind.make                            |  5 +-
 4 files changed, 3 insertions(+), 53 deletions(-)
 delete mode 100644 patches/rpcbind-1.2.6/0001-autotools-systemd-call-rpcbind-with-w-only-on-enable.patch
 delete mode 120000 patches/rpcbind-1.2.6/autogen.sh
 delete mode 100644 patches/rpcbind-1.2.6/series

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 c7f06b143..000000000
--- 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 <bst@pengutronix.de>
-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 <bst@pengutronix.de>
----
- 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 9f8a4cb7d..000000000
--- 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 d713a495b..000000000
--- 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 a6997cc97..b14228b8d 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
-- 
2.47.3




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-10-15 12:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-15 12:39 [ptxdist] [PATCH] rpcbind: version bump 1.2.6 -> 1.2.8 Sven Püschel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox