Gentoo Archives: gentoo-commits

From: Ettore Di Giacinto <mudler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rr/
Date: Sun, 12 Feb 2017 18:39:20
Message-Id: 1486924717.7530cbd74c782790395e8f627a94cdb0d2fac116.mudler@gentoo
1 commit: 7530cbd74c782790395e8f627a94cdb0d2fac116
2 Author: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 18:33:28 2017 +0000
4 Commit: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 18:38:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7530cbd7
7
8 dev-util/rr: add seccomp requirement
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-util/rr/rr-4.5.0.ebuild | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-util/rr/rr-4.5.0.ebuild b/dev-util/rr/rr-4.5.0.ebuild
16 index 0941335497..4ad1d8612c 100644
17 --- a/dev-util/rr/rr-4.5.0.ebuild
18 +++ b/dev-util/rr/rr-4.5.0.ebuild
19 @@ -7,7 +7,7 @@ EAPI=6
20 PYTHON_COMPAT=( python2_7 )
21 CMAKE_BUILD_TYPE=Release
22
23 -inherit cmake-utils python-single-r1
24 +inherit cmake-utils linux-info python-single-r1
25
26 DESCRIPTION="Record and Replay Framework"
27 HOMEPAGE="http://rr-project.org/"
28 @@ -28,5 +28,9 @@ RDEPEND="
29 ${DEPEND}"
30
31 pkg_setup() {
32 + if use kernel_linux; then
33 + CONFIG_CHECK="SECCOMP"
34 + linux-info_pkg_setup
35 + fi
36 python-single-r1_pkg_setup
37 }