mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] bubblewrap: new package
@ 2026-06-23 14:15 Sven Püschel
  2026-06-25 19:23 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Sven Püschel @ 2026-06-23 14:15 UTC (permalink / raw)
  To: ptxdist; +Cc: Sven Püschel

Omitted -Drequire_userns, as it's only used when setuid support is
enabled.

Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
---
 rules/bubblewrap.in   |  9 ++++++
 rules/bubblewrap.make | 65 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)
 create mode 100644 rules/bubblewrap.in
 create mode 100644 rules/bubblewrap.make

diff --git a/rules/bubblewrap.in b/rules/bubblewrap.in
new file mode 100644
index 000000000..f0b959a69
--- /dev/null
+++ b/rules/bubblewrap.in
@@ -0,0 +1,9 @@
+## SECTION=shell_and_console
+
+config BUBBLEWRAP
+	tristate
+	select HOST_MESON
+	select LIBCAP
+	prompt "bubblewrap"
+	help
+	  Low-level unprivileged sandboxing tool
diff --git a/rules/bubblewrap.make b/rules/bubblewrap.make
new file mode 100644
index 000000000..444386607
--- /dev/null
+++ b/rules/bubblewrap.make
@@ -0,0 +1,65 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2026 by Sven Püschel <s.pueschel@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_BUBBLEWRAP) += bubblewrap
+
+#
+# Paths and names
+#
+BUBBLEWRAP_VERSION	:= 0.11.2
+BUBBLEWRAP_SHA256	:= 69abc30005d2186baf7737feacd8da35633b93cf5af38838ecff17c5f8e924f6
+BUBBLEWRAP		:= bubblewrap-$(BUBBLEWRAP_VERSION)
+BUBBLEWRAP_SUFFIX	:= tar.xz
+BUBBLEWRAP_URL		:= https://github.com/containers/bubblewrap/releases/download/v$(BUBBLEWRAP_VERSION)/$(BUBBLEWRAP).$(BUBBLEWRAP_SUFFIX)
+BUBBLEWRAP_SOURCE	:= $(SRCDIR)/$(BUBBLEWRAP).$(BUBBLEWRAP_SUFFIX)
+BUBBLEWRAP_DIR		:= $(BUILDDIR)/$(BUBBLEWRAP)
+BUBBLEWRAP_LICENSE	:= LGPL-2.0-or-later
+BUBBLEWRAP_LICENSE_FILES := \
+	file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
+	file://bubblewrap.c;startline=3;endline=16;md5=7632ecc0582c89a5ec336efd45feeade
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# meson
+#
+BUBBLEWRAP_CONF_TOOL := meson
+BUBBLEWRAP_CONF_OPT := \
+	$(CROSS_MESON_USR) \
+	-Dbash_completion=disabled \
+	-Dman=disabled \
+	-Dselinux=disabled \
+	-Dsupport_setuid=false \
+	-Dtests=false \
+	-Dzsh_completion=disabled
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/bubblewrap.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, bubblewrap)
+	@$(call install_fixup, bubblewrap,PRIORITY,optional)
+	@$(call install_fixup, bubblewrap,SECTION,base)
+	@$(call install_fixup, bubblewrap,AUTHOR,"Sven Püschel <s.pueschel@pengutronix.de>")
+	@$(call install_fixup, bubblewrap,DESCRIPTION,Low-level unprivileged sandboxing tool)
+
+	@$(call install_copy, bubblewrap, 0, 0, 0755, -, /usr/bin/bwrap)
+
+	@$(call install_finish, bubblewrap)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.47.3




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

* Re: [ptxdist] [APPLIED] bubblewrap: new package
  2026-06-23 14:15 [ptxdist] [PATCH] bubblewrap: new package Sven Püschel
@ 2026-06-25 19:23 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2026-06-25 19:23 UTC (permalink / raw)
  To: ptxdist; +Cc: Sven Püschel

Thanks, applied as b67b0b96256d69254d0765f4d3c39eeddc203e00.

Michael

[sent from post-receive hook]

On Thu, 25 Jun 2026 21:23:46 +0200, Sven Püschel <s.pueschel@pengutronix.de> wrote:
> Omitted -Drequire_userns, as it's only used when setuid support is
> enabled.
> 
> Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
> Message-Id: <20260623141556.1127001-1-s.pueschel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/bubblewrap.in b/rules/bubblewrap.in
> new file mode 100644
> index 000000000000..f0b959a69f0b
> --- /dev/null
> +++ b/rules/bubblewrap.in
> @@ -0,0 +1,9 @@
> +## SECTION=shell_and_console
> +
> +config BUBBLEWRAP
> +	tristate
> +	select HOST_MESON
> +	select LIBCAP
> +	prompt "bubblewrap"
> +	help
> +	  Low-level unprivileged sandboxing tool
> diff --git a/rules/bubblewrap.make b/rules/bubblewrap.make
> new file mode 100644
> index 000000000000..4443866070e2
> --- /dev/null
> +++ b/rules/bubblewrap.make
> @@ -0,0 +1,65 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2026 by Sven Püschel <s.pueschel@pengutronix.de>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_BUBBLEWRAP) += bubblewrap
> +
> +#
> +# Paths and names
> +#
> +BUBBLEWRAP_VERSION	:= 0.11.2
> +BUBBLEWRAP_SHA256	:= 69abc30005d2186baf7737feacd8da35633b93cf5af38838ecff17c5f8e924f6
> +BUBBLEWRAP		:= bubblewrap-$(BUBBLEWRAP_VERSION)
> +BUBBLEWRAP_SUFFIX	:= tar.xz
> +BUBBLEWRAP_URL		:= https://github.com/containers/bubblewrap/releases/download/v$(BUBBLEWRAP_VERSION)/$(BUBBLEWRAP).$(BUBBLEWRAP_SUFFIX)
> +BUBBLEWRAP_SOURCE	:= $(SRCDIR)/$(BUBBLEWRAP).$(BUBBLEWRAP_SUFFIX)
> +BUBBLEWRAP_DIR		:= $(BUILDDIR)/$(BUBBLEWRAP)
> +BUBBLEWRAP_LICENSE	:= LGPL-2.0-or-later
> +BUBBLEWRAP_LICENSE_FILES := \
> +	file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
> +	file://bubblewrap.c;startline=3;endline=16;md5=7632ecc0582c89a5ec336efd45feeade
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +#
> +# meson
> +#
> +BUBBLEWRAP_CONF_TOOL := meson
> +BUBBLEWRAP_CONF_OPT := \
> +	$(CROSS_MESON_USR) \
> +	-Dbash_completion=disabled \
> +	-Dman=disabled \
> +	-Dselinux=disabled \
> +	-Dsupport_setuid=false \
> +	-Dtests=false \
> +	-Dzsh_completion=disabled
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/bubblewrap.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, bubblewrap)
> +	@$(call install_fixup, bubblewrap,PRIORITY,optional)
> +	@$(call install_fixup, bubblewrap,SECTION,base)
> +	@$(call install_fixup, bubblewrap,AUTHOR,"Sven Püschel <s.pueschel@pengutronix.de>")
> +	@$(call install_fixup, bubblewrap,DESCRIPTION,Low-level unprivileged sandboxing tool)
> +
> +	@$(call install_copy, bubblewrap, 0, 0, 0755, -, /usr/bin/bwrap)
> +
> +	@$(call install_finish, bubblewrap)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make



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

end of thread, other threads:[~2026-06-25 19:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-23 14:15 [ptxdist] [PATCH] bubblewrap: new package Sven Püschel
2026-06-25 19:23 ` [ptxdist] [APPLIED] " Michael Olbrich

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