Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bubblewrap/
Date: Sat, 16 Feb 2019 23:34:13
Message-Id: 1550360034.bd6e7aada6ae7ce0f7262cc57f195d1c69deccc6.leio@gentoo
1 commit: bd6e7aada6ae7ce0f7262cc57f195d1c69deccc6
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 23:32:33 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 23:33:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6e7aad
7
8 sys-apps/bubblewrap: remove old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 sys-apps/bubblewrap/Manifest | 1 -
14 sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild | 45 -----------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/sys-apps/bubblewrap/Manifest b/sys-apps/bubblewrap/Manifest
18 index 9abc9af835b..5ae1117bc2e 100644
19 --- a/sys-apps/bubblewrap/Manifest
20 +++ b/sys-apps/bubblewrap/Manifest
21 @@ -1,2 +1 @@
22 -DIST bubblewrap-0.3.1.tar.gz 62768 BLAKE2B a8c29102f9b69bfbd6b6aebb9aa0878bd1e31b52a6cb6374b8341c1410526872d4063ff0524ab4f98d7cac7358dad3190144d12bb0b11cf26eeed2730c4ec475 SHA512 fbc44976f53fdf8913b94c57d1f26a3b87c773e86a289e58fd3d7b1c4ea7f33c862f1a38a4f791315358990928768a68334f0a171302c18a16c7e2e9f1a146dd
23 DIST bubblewrap-0.3.1.tar.xz 209924 BLAKE2B bacc4080106cd9876bf0e1ad866a7397d7d232e61a720b52b5a6b9b0d860e625511ed15ac630aa71003fb9fa145ffa9d08ae2e6ba6d1411fd75e7d9568312717 SHA512 74e36caa56540a956158445f5f38c7ac5f7ff3c733ecaf85893de4607900e1fe4050db86a4435cbe18d722e90c5b39c466c555ea8ea8d4944da6207ef1011d67
24
25 diff --git a/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild b/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild
26 deleted file mode 100644
27 index 6a54ac1e845..00000000000
28 --- a/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -
36 -inherit autotools bash-completion-r1 linux-info
37 -
38 -DESCRIPTION="Unprivileged sandboxing tool, namespaces-powered chroot-like solution"
39 -HOMEPAGE="https://github.com/projectatomic/bubblewrap"
40 -SRC_URI="https://github.com/projectatomic/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2+"
43 -SLOT="0"
44 -KEYWORDS="~amd64"
45 -IUSE="selinux"
46 -
47 -DEPEND="
48 - dev-libs/libxslt
49 - sys-libs/libseccomp
50 - sys-libs/libcap
51 - selinux? ( >=sys-libs/libselinux-2.1.9 )
52 -"
53 -# FIXME: we don't need bashcomp righ??
54 -RDEPEND="${DEPEND}"
55 -# FIXME: bash comp is not working
56 -# FIXME: test is not working
57 -pkg_setup() {
58 - if [[ ${MERGE_TYPE} != buildonly ]]; then
59 - CONFIG_CHECK="~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
60 - linux-info_pkg_setup
61 - fi
62 -}
63 -src_prepare() {
64 - default
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 -
70 - econf \
71 - $(use_enable selinux) \
72 - "--enable-man" \
73 - "--with-bash-completion-dir=${get_bashcompdir}" \
74 - "--with-priv-mode=none"
75 -}