diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-07-20 21:38:17 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-07-20 21:58:32 -0400 |
commit | 81e5a51c61a84e7b6fa1b64a9c897d36bf48514a (patch) | |
tree | 1e466909f124b39d55e159b88c6e1dca8f89346f /sys-apps | |
parent | sci-geosciences/gnome-maps: Drop old versions (diff) | |
download | gentoo-81e5a51c61a84e7b6fa1b64a9c897d36bf48514a.tar.gz gentoo-81e5a51c61a84e7b6fa1b64a9c897d36bf48514a.tar.bz2 gentoo-81e5a51c61a84e7b6fa1b64a9c897d36bf48514a.zip |
sys-apps/bubblewrap: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/bubblewrap/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild | 61 |
2 files changed, 0 insertions, 62 deletions
diff --git a/sys-apps/bubblewrap/Manifest b/sys-apps/bubblewrap/Manifest index 94ed97f4abee..fc964394d9ab 100644 --- a/sys-apps/bubblewrap/Manifest +++ b/sys-apps/bubblewrap/Manifest @@ -1,2 +1 @@ -DIST bubblewrap-0.6.1.tar.xz 145500 BLAKE2B 8f8f69c5314843be1ac8c52d462ce2b17fc88760274b71837793a3e8dbf87623b80b7ae094131cee896644b53f4761388638d21b1575d1887eb755880bb05845 SHA512 68e07812ff5e01de2b7a0ce66e8386ca3662fd071d4e9b4c4afa611c1589c0ed116e0ebb4c03eae3f707f908d86945e157f8b26ff872c2814889dde92df9c60b DIST bubblewrap-0.6.2.tar.xz 146312 BLAKE2B bf02e9095cd1e80b84e0439d14ce57fc9bb08f9f0d3596a19eb34a55bd03b9d371368eda75f2b2106d47db29d1c2d9845fe2a12f5d0c554bbb532c9e0e53d368 SHA512 235da019cb370ea6d9328352acb38e6ff368f02f71db1ae85f2dd37655757975bd5b57bbe15f7b419b53a26b8ec3edd81b55893b420d5f42d6a9dab3471d0096 diff --git a/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild b/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild deleted file mode 100644 index edb084d8d17a..000000000000 --- a/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 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 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" - -PATCHES=( - "${FILESDIR}"/${P}-clang-printf.patch -) - -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' - '-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 -} |