From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 81DBE13968D for ; Wed, 10 Oct 2018 19:39:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A803E07BA; Wed, 10 Oct 2018 19:39:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C18BE07BA for ; Wed, 10 Oct 2018 19:39:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C7921335D7D for ; Wed, 10 Oct 2018 19:39:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19A4E3CF for ; Wed, 10 Oct 2018 19:39:06 +0000 (UTC) From: "Remi Cardona" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Remi Cardona" Message-ID: <1539200258.cf9c4ec1499c561d80b7687330689f7ee28a7317.remi@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: sys-apps/bubblewrap/ X-VCS-Repository: proj/gnome X-VCS-Files: sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild X-VCS-Directories: sys-apps/bubblewrap/ X-VCS-Committer: remi X-VCS-Committer-Name: Remi Cardona X-VCS-Revision: cf9c4ec1499c561d80b7687330689f7ee28a7317 X-VCS-Branch: master Date: Wed, 10 Oct 2018 19:39:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d89c000a-a174-4de1-bc40-7f910a2d3fd0 X-Archives-Hash: 3c637f35edf91297266f81d462dbcfa8 commit: cf9c4ec1499c561d80b7687330689f7ee28a7317 Author: RĂ©mi Cardona gentoo org> AuthorDate: Wed Oct 10 19:37:38 2018 +0000 Commit: Remi Cardona gentoo org> CommitDate: Wed Oct 10 19:37:38 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=cf9c4ec1 sys-apps/bubblewrap: fix repoman issues (header and whitespace) Package-Manager: Portage-2.3.50, Repoman-2.3.11 Manifest-Sign-Key: 0xE0663D48103108F8 sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild | 35 ++++++++++++++--------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild b/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild index dde2efec..56d2c9cb 100644 --- a/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild +++ b/sys-apps/bubblewrap/bubblewrap-0.3.1.ebuild @@ -1,6 +1,5 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# $Header: $ EAPI="7" @@ -16,36 +15,36 @@ KEYWORDS="~amd64" IUSE="selinux" DEPEND=" - dev-libs/libxslt - sys-libs/libseccomp - sys-libs/libcap - selinux? ( >=sys-libs/libselinux-2.1.9 ) + dev-libs/libxslt + sys-libs/libseccomp + sys-libs/libcap + selinux? ( >=sys-libs/libselinux-2.1.9 ) " # FIXME: we don't need bashcomp righ?? RDEPEND="${DEPEND}" # FIXME: bash comp is not working # FIXME: test is not working pkg_setup() { - if [[ ${MERGE_TYPE} != buildonly ]]; then + if [[ ${MERGE_TYPE} != buildonly ]]; then CONFIG_CHECK="~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS" - linux-info_pkg_setup - fi + linux-info_pkg_setup + fi } src_prepare() { - default - eautoreconf + default + eautoreconf } src_configure() { - econf \ - $(use_enable selinux) \ - "--enable-man" \ - "--with-bash-completion-dir=${get_bashcompdir}" \ - "--with-priv-mode=none" + econf \ + $(use_enable selinux) \ + "--enable-man" \ + "--with-bash-completion-dir=${get_bashcompdir}" \ + "--with-priv-mode=none" } pkg_postinst() { - einfo "bashcomp can be used with >=app-shells/bash-completion-2.0" - einfo "probably needs namespaces" + einfo "bashcomp can be used with >=app-shells/bash-completion-2.0" + einfo "probably needs namespaces" }