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 18DBE139694 for ; Sun, 12 Feb 2017 18:39:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 535CCE0D84; Sun, 12 Feb 2017 18:39:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F044E0D84 for ; Sun, 12 Feb 2017 18:39:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5765D340BEA for ; Sun, 12 Feb 2017 18:39:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25EBE4585 for ; Sun, 12 Feb 2017 18:39:17 +0000 (UTC) From: "Ettore Di Giacinto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ettore Di Giacinto" Message-ID: <1486924717.7530cbd74c782790395e8f627a94cdb0d2fac116.mudler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rr/rr-4.5.0.ebuild X-VCS-Directories: dev-util/rr/ X-VCS-Committer: mudler X-VCS-Committer-Name: Ettore Di Giacinto X-VCS-Revision: 7530cbd74c782790395e8f627a94cdb0d2fac116 X-VCS-Branch: master Date: Sun, 12 Feb 2017 18:39:17 +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: 31d8b783-b2e3-4c1f-90f7-93f31777c082 X-Archives-Hash: 8ffcc184d8bae5c07453a3a357859715 commit: 7530cbd74c782790395e8f627a94cdb0d2fac116 Author: Ettore Di Giacinto gentoo org> AuthorDate: Sun Feb 12 18:33:28 2017 +0000 Commit: Ettore Di Giacinto gentoo org> CommitDate: Sun Feb 12 18:38:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7530cbd7 dev-util/rr: add seccomp requirement Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-util/rr/rr-4.5.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-util/rr/rr-4.5.0.ebuild b/dev-util/rr/rr-4.5.0.ebuild index 0941335497..4ad1d8612c 100644 --- a/dev-util/rr/rr-4.5.0.ebuild +++ b/dev-util/rr/rr-4.5.0.ebuild @@ -7,7 +7,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) CMAKE_BUILD_TYPE=Release -inherit cmake-utils python-single-r1 +inherit cmake-utils linux-info python-single-r1 DESCRIPTION="Record and Replay Framework" HOMEPAGE="http://rr-project.org/" @@ -28,5 +28,9 @@ RDEPEND=" ${DEPEND}" pkg_setup() { + if use kernel_linux; then + CONFIG_CHECK="SECCOMP" + linux-info_pkg_setup + fi python-single-r1_pkg_setup }