* [Buildroot] [PATCH 1/1] package/rund: add new package
@ 2025-12-29 10:25 Frank Chung
2025-12-29 13:04 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Frank Chung @ 2025-12-29 10:25 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni
From 0166d724f0d1309ff6615c087d90d822e8f95fb0 Mon Sep 17 00:00:00 2001
From: Frank Chung <uuidxx@163.com>
Date: Mon, 29 Dec 2025 18:23:14 +0800
Subject: [PATCH 1/1] package/rund: add new package
Signed-off-by: Frank Chung <uuidxx@163.com>
---
DEVELOPERS | 3 +++
package/Config.in | 1 +
package/rund/Config.in | 6 ++++++
package/rund/rund.hash | 3 +++
package/rund/rund.mk | 12 ++++++++++++
5 files changed, 25 insertions(+)
create mode 100644 package/rund/Config.in
create mode 100644 package/rund/rund.hash
create mode 100644 package/rund/rund.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index b4c9b6e618..f10f0e1354 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1208,6 +1208,9 @@ F: support/testing/tests/package/test_lua*
F: support/testing/tests/package/test_lynis.py
F: utils/scancpan
+N: Frank Chung <uuidxx@163.com>
+F: package/rund/
+
N: Frank Hunleth <fhunleth@troodon-software.com>
F: package/am335x-pru-package/
F: package/libconfuse/
diff --git a/package/Config.in b/package/Config.in
index cd8765bbcf..8942231e35 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2903,6 +2903,7 @@ menu "System tools"
source "package/rauc-hawkbit-updater/Config.in"
source "package/rsyslog/Config.in"
source "package/runc/Config.in"
+ source "package/rund/Config.in"
source "package/s390-tools/Config.in"
source "package/s6/Config.in"
source "package/s6-linux-init/Config.in"
diff --git a/package/rund/Config.in b/package/rund/Config.in
new file mode 100644
index 0000000000..f21bd7a11a
--- /dev/null
+++ b/package/rund/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_RUND
+ bool "rund"
+ help
+ A lightweight daemonizer and process supervisor.
+
+ https://github.com/cyberxnomad/rund
diff --git a/package/rund/rund.hash b/package/rund/rund.hash
new file mode 100644
index 0000000000..214774661e
--- /dev/null
+++ b/package/rund/rund.hash
@@ -0,0 +1,3 @@
+# Locally computed
+sha256
701127ac5b90e02ba4a670ab7534db9f2a6678e8f0f9ff13efbfbbe1414fb066
rund-0.1.0.tar.gz
+sha256
81100abfee87ff6bf6ba4b49ede1f81ee04cda31000b143cb75ab98e2845d8e0 LICENSE
diff --git a/package/rund/rund.mk b/package/rund/rund.mk
new file mode 100644
index 0000000000..8459bc61c3
--- /dev/null
+++ b/package/rund/rund.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# rund
+#
+################################################################################
+
+RUND_VERSION = 0.1.0
+RUND_SITE = $(call github,cyberxnomad,rund,v$(RUND_VERSION))
+RUND_LICENSE = GPL-3.0
+RUND_LICENSE_FILES = LICENSE
+
+$(eval $(cmake-package))
--
2.47.3
_______________________________________________
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 1/1] package/rund: add new package
2025-12-29 10:25 [Buildroot] [PATCH 1/1] package/rund: add new package Frank Chung
@ 2025-12-29 13:04 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-12-29 13:04 UTC (permalink / raw)
To: Frank Chung; +Cc: buildroot
Hello Frank,
Thanks for your patch!
On Mon, 29 Dec 2025 18:25:20 +0800
Frank Chung <uuidxx@163.com> wrote:
> From 0166d724f0d1309ff6615c087d90d822e8f95fb0 Mon Sep 17 00:00:00 2001
> From: Frank Chung <uuidxx@163.com>
> Date: Mon, 29 Dec 2025 18:23:14 +0800
> Subject: [PATCH 1/1] package/rund: add new package
It seems like your git setup is not quite correct, as this should
appear here. Can you use "git send-email" to send your patch?
> diff --git a/package/rund/Config.in b/package/rund/Config.in
> new file mode 100644
> index 0000000000..f21bd7a11a
> --- /dev/null
> +++ b/package/rund/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_RUND
> + bool "rund"
It has really no dependencies on specific toolchain features? Could you
test your package with ./utils/test-pkg to verify this?
> + help
> + A lightweight daemonizer and process supervisor.
> +
> + https://github.com/cyberxnomad/rund
Indentation for the help text is one tab + 2 spaces.
You can also run "make check-package" to verify trivial coding style
issues.
This project seems very new. Is this your project? Who uses this? I'm
just questioning the popularity and whether it makes sense to have this
in Buildroot at all?
> diff --git a/package/rund/rund.hash b/package/rund/rund.hash
> new file mode 100644
> index 0000000000..214774661e
> --- /dev/null
> +++ b/package/rund/rund.hash
> @@ -0,0 +1,3 @@
> +# Locally computed
> +sha256
> 701127ac5b90e02ba4a670ab7534db9f2a6678e8f0f9ff13efbfbbe1414fb066
> rund-0.1.0.tar.gz
> +sha256
> 81100abfee87ff6bf6ba4b49ede1f81ee04cda31000b143cb75ab98e2845d8e0 LICENSE
These lines are wrapped, probably by your e-mail client. If you use
"git send-email", it will fix this.
Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
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:[~2025-12-29 13:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-29 10:25 [Buildroot] [PATCH 1/1] package/rund: add new package Frank Chung
2025-12-29 13:04 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox