From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-971851-garchives=archives.gentoo.org@lists.gentoo.org> 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 8972A1396D0 for <garchives@archives.gentoo.org>; Sun, 10 Sep 2017 11:24:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4A211FC05D; Sun, 10 Sep 2017 11:24:45 +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 B45151FC05D for <gentoo-commits@lists.gentoo.org>; Sun, 10 Sep 2017 11:24:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C858B3417E2 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Sep 2017 11:24:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA3519064 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Sep 2017 11:24:41 +0000 (UTC) From: "Manuel Rüger" <mrueg@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" <mrueg@gentoo.org> Message-ID: <1505042661.c688546330dd2a7afeeb09dafc7b229fd9de66cb.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-runc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild X-VCS-Directories: app-emulation/docker-runc/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: c688546330dd2a7afeeb09dafc7b229fd9de66cb X-VCS-Branch: master Date: Sun, 10 Sep 2017 11:24:41 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b5de1337-80cd-497b-9e5c-d5fe7859bcde X-Archives-Hash: 02c94abfc63ca16da59f92734d16b6bf commit: c688546330dd2a7afeeb09dafc7b229fd9de66cb Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org> AuthorDate: Sun Sep 10 11:24:21 2017 +0000 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org> CommitDate: Sun Sep 10 11:24:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6885463 app-emulation/docker-runc: Enable ambient USEflag by default Package-Manager: Portage-2.3.8, Repoman-2.3.3 app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild b/app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild index 8bbfc597c1b..03e8e10d6e7 100644 --- a/app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild +++ b/app-emulation/docker-runc/docker-runc-1.0.0_rc3_p20170706.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="http://runc.io" LICENSE="Apache-2.0" SLOT="0" -IUSE="apparmor ambient hardened +seccomp" +IUSE="+ambient apparmor hardened +seccomp" RDEPEND=" apparmor? ( sys-libs/libapparmor ) @@ -45,8 +45,8 @@ src_compile() { # build up optional flags local options=( - $(usex apparmor 'apparmor' '') $(usex ambient 'ambient' '') + $(usex apparmor 'apparmor' '') $(usex seccomp 'seccomp' '') )