commit:     f3df93a1f27a2fbbf5ac363edb1b439c04769135
Author:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 23 20:52:54 2021 +0000
Commit:     Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Mon Aug 23 20:52:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3df93a1

sys-apps/bubblewrap: 0.5.0 version bump

Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>

 sys-apps/bubblewrap/Manifest                |  1 +
 sys-apps/bubblewrap/bubblewrap-0.5.0.ebuild | 46 +++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/sys-apps/bubblewrap/Manifest b/sys-apps/bubblewrap/Manifest
index 7be60f2b870..7c9c4f4eed7 100644
--- a/sys-apps/bubblewrap/Manifest
+++ b/sys-apps/bubblewrap/Manifest
@@ -1 +1,2 @@
 DIST bubblewrap-0.4.1.tar.xz 214496 BLAKE2B 
bdbff50cc4e28c91d83c814df7f2ee15702962d26a9316bd841b1e63bf5976c4549c88e20869e8cc236a8a0c9a065518f945c356fa7a058f8831f5b1e9d4eb0d
 SHA512 
0ff46dc0fda2d0cffbb36cc52ff43951b30cbd835a42cc56806acbbbd827796bfadbb1cfafc84d6b47a72c031ca44abe1c377acc0cc25fe3b33e854f5f687d35
+DIST bubblewrap-0.5.0.tar.xz 137796 BLAKE2B 
36aef94335d61ae55076a0a94cd6f2c335a87f8df9900c0c603c7ee870cf84c617a0c2ad99a5979cc1dd22740d652155fa6049e717eb210c9a83afe516daa107
 SHA512 
b1f5bde9562bf3176c51fdc22304b901e00e1de5189d9b5479aed7b651b84bed5539fc5bb3b1db58a05da4a57d69c9f41c40e15aa5a575746630e015674a02b7

diff --git a/sys-apps/bubblewrap/bubblewrap-0.5.0.ebuild 
b/sys-apps/bubblewrap/bubblewrap-0.5.0.ebuild
new file mode 100644
index 00000000000..3066ed7e130
--- /dev/null
+++ b/sys-apps/bubblewrap/bubblewrap-0.5.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 linux-info
+
+DESCRIPTION="Unprivileged sandboxing tool, namespaces-powered chroot-like 
solution"
+HOMEPAGE="https://github.com/containers/bubblewrap/";
+SRC_URI="https://github.com/containers/${PN}/releases/download/v${PV}/${P}.tar.xz";
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="selinux +suid"
+
+RDEPEND="
+       sys-libs/libseccomp
+       sys-libs/libcap
+       selinux? ( >=sys-libs/libselinux-2.1.9 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+       app-text/docbook-xml-dtd:4.3
+       app-text/docbook-xsl-stylesheets
+       dev-libs/libxslt
+       virtual/pkgconfig
+"
+
+# tests require root priviledge
+RESTRICT="test"
+
+pkg_setup() {
+       if [[ ${MERGE_TYPE} != buildonly ]]; then
+               CONFIG_CHECK="~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
+               linux-info_pkg_setup
+       fi
+}
+
+src_configure() {
+       econf \
+               $(use_enable selinux) \
+               "--enable-man" \
+               "--with-bash-completion-dir=$(get_bashcompdir)" \
+               "--with-priv-mode=$(usex suid setuid none)"
+}

Reply via email to