diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-08-17 09:34:18 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-08-17 12:21:02 -0400 |
commit | 815d61b1116fa8763df65fffe3e3cdfd3728c7e2 (patch) | |
tree | c1da9b51afe2924fcc19ff33eabc9dd29829cfc8 /sys-apps/bubblewrap | |
parent | sci-geosciences/gnome-maps: Drop old versions (diff) | |
download | gentoo-815d61b1116fa8763df65fffe3e3cdfd3728c7e2.tar.gz gentoo-815d61b1116fa8763df65fffe3e3cdfd3728c7e2.tar.bz2 gentoo-815d61b1116fa8763df65fffe3e3cdfd3728c7e2.zip |
sys-apps/bubblewrap: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-apps/bubblewrap')
-rw-r--r-- | sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild b/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild deleted file mode 100644 index a9f2860b3fd1..000000000000 --- a/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit linux-info meson - -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 ~loong 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 privileges -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() { - local emesonargs=( - -Dbash_completion=enabled - -Dman=enabled - -Dtests=false - -Dzsh_completion=enabled - $(meson_feature selinux) - ) - - meson_src_configure -} - -src_install() { - meson_src_install - - if use suid; then - chmod u+s "${ED}"/usr/bin/bwrap - fi -} |