public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/mstpd: bump to version 0.1.1
@ 2026-02-24  7:44 Francois Perrad via buildroot
  2026-03-01 10:51 ` Julien Olivain via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Francois Perrad via buildroot @ 2026-02-24  7:44 UTC (permalink / raw)
  To: buildroot

remove upstream patch

release notes:
https://github.com/mstpd/mstpd/releases/tag/0.1.1

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 ...pport-different-versions-of-pidof-13.patch | 48 -------------------
 package/mstpd/mstpd.hash                      |  5 +-
 package/mstpd/mstpd.mk                        |  2 +-
 3 files changed, 3 insertions(+), 52 deletions(-)
 delete mode 100644 package/mstpd/0001-bridge-stp.in-support-different-versions-of-pidof-13.patch

diff --git a/package/mstpd/0001-bridge-stp.in-support-different-versions-of-pidof-13.patch b/package/mstpd/0001-bridge-stp.in-support-different-versions-of-pidof-13.patch
deleted file mode 100644
index daa591131..000000000
--- a/package/mstpd/0001-bridge-stp.in-support-different-versions-of-pidof-13.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 181c453fc1a00573e19f14960dcc54ad84beea7c Mon Sep 17 00:00:00 2001
-From: colin-foster-in-advantage <colin.foster@in-advantage.com>
-Date: Tue, 12 Jul 2022 23:01:09 -0700
-Subject: [PATCH] bridge-stp.in: support different versions of pidof (#137)
-
-* bridge-stp.in: support different versions of pidof
-
-Busybox uses a version of pdiof that doesn't support the -c option. As
-such, this renders mstpd non-functional on any Busybox system.
-
-Just use the standard form of pidof to detect any running instances of mstpd.
-
-Signed-off-by: Colin Foster <colin.foster@in-advantage.com>
----
- bridge-stp.in | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/bridge-stp.in b/bridge-stp.in
-index 47cbe79..3807873 100755
---- a/bridge-stp.in
-+++ b/bridge-stp.in
-@@ -139,7 +139,7 @@ case "$action" in
-         fi
- 
-         # Start mstpd if necessary.
--        if ! pidof -c -s mstpd >/dev/null; then
-+        if ! pidof -s mstpd >/dev/null; then
-             if [ "$MANAGE_MSTPD" != 'y' ]; then
-                 errmsg 'mstpd is not running'
-                 exit 3
-@@ -212,12 +212,12 @@ case "$action" in
-         done
- 
-         # Kill mstpd, since no bridges are currently using it.
--        kill $(pidof -c mstpd)
-+        kill $(pidof mstpd)
-         ;;
-     restart|restart_config)
-         if [ "$action" = 'restart' ]; then
-             # Kill mstpd.
--            pids="$(pidof -c mstpd)" ; Err=$?
-+            pids="$(pidof mstpd)" ; Err=$?
-             if [ $Err -eq 0 ]; then
-                 echo 'Stopping mstpd ...'
-                 kill $pids
--- 
-2.25.1
-
diff --git a/package/mstpd/mstpd.hash b/package/mstpd/mstpd.hash
index 64e946d6d..7c6c482ef 100644
--- a/package/mstpd/mstpd.hash
+++ b/package/mstpd/mstpd.hash
@@ -1,5 +1,4 @@
 # locally computed
-sha256  91a1862548b5b509caa2e96e5fb9912bc98d4d58cc98e99a577824735756c14d  mstpd-0.0.9.tar.gz
-sha256  03d1ff4ca189d54322562cb2891888768af719d2c73ceafa5f1ca96133dffeb2  mstpd-0.1.0.tar.gz
+sha256  6b4a0a721147373f0b22e8f47c0f13942b78afc55348299fe7b056b75adc98f4  mstpd-0.1.1.tar.gz
 sha256  c38aee9e3c8c4d5d594ff548a1be05453023016d6286931f6512db215ec1fd42  LICENSE
-sha256  c5cfd44652276184374adf454150d436ce958ce50acc4ef9ccb3605a5ca7a9d3  hmac_md5.c
+sha256  69e0a7ba32b016703dea402deae57348f14d028ff4dd9188b2acad607e484588  hmac_md5.c
diff --git a/package/mstpd/mstpd.mk b/package/mstpd/mstpd.mk
index 07c41af8d..79f361ee6 100644
--- a/package/mstpd/mstpd.mk
+++ b/package/mstpd/mstpd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MSTPD_VERSION = 0.1.0
+MSTPD_VERSION = 0.1.1
 MSTPD_SITE = $(call github,mstpd,mstpd,$(MSTPD_VERSION))
 MSTPD_AUTORECONF = YES
 MSTPD_LICENSE = GPL-2.0, RSA Data Security (md5)
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH] package/mstpd: bump to version 0.1.1
  2026-02-24  7:44 [Buildroot] [PATCH] package/mstpd: bump to version 0.1.1 Francois Perrad via buildroot
@ 2026-03-01 10:51 ` Julien Olivain via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Julien Olivain via buildroot @ 2026-03-01 10:51 UTC (permalink / raw)
  To: Francois Perrad; +Cc: buildroot

On 24/02/2026 08:44, Francois Perrad via buildroot wrote:
> remove upstream patch
> 
> release notes:
> https://github.com/mstpd/mstpd/releases/tag/0.1.1
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Applied to next, thanks. For info, I fixed a check-package error, see:
https://gitlab.com/buildroot.org/buildroot/-/commit/a773d00904f9ae543c54b44ba02a2e8b0190adb8

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-03-01 10:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-24  7:44 [Buildroot] [PATCH] package/mstpd: bump to version 0.1.1 Francois Perrad via buildroot
2026-03-01 10:51 ` 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