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 7AE881395E1 for ; Wed, 2 Nov 2016 20:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E629CE0B8F; Wed, 2 Nov 2016 20:01:39 +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 CDEC1E0B8F for ; Wed, 2 Nov 2016 20:01:39 +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 B75743413AD for ; Wed, 2 Nov 2016 20:01:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88A93244E for ; Wed, 2 Nov 2016 20:01:37 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1478116891.5e087d7a86951946c6fc75f272a476f7dc7771ea.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bcc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bcc/bcc-0.1.8-r2.ebuild dev-util/bcc/bcc-0.2.0-r1.ebuild X-VCS-Directories: dev-util/bcc/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 5e087d7a86951946c6fc75f272a476f7dc7771ea X-VCS-Branch: master Date: Wed, 2 Nov 2016 20:01:37 +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: 6b76fe7c-2531-4a95-9714-4c1a20b8e135 X-Archives-Hash: 1515c9c1a9a259cd5594027799e70dad commit: 5e087d7a86951946c6fc75f272a476f7dc7771ea Author: Zac Medico gentoo org> AuthorDate: Wed Nov 2 19:57:10 2016 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Nov 2 20:01:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e087d7a dev-util/bcc: drop ~HAVE_BPF_JIT from CONFIG_CHECK Since linux 4.6, HAVE_BPF_JIT no longer exists. It is enough to specify BPF_JIT, since BPF_JIT depends on HAVE_BPF_JIT for linux less than 4.6, and depends on HAVE_CBPF_JIT || HAVE_EBPF_JIT since linux 4.6 (see linux commit 6077776b5908e0493a3946f7d3bc63871b201e87). Reported-by: Thomas Stein meine-oma.de> Package-Manager: portage-2.3.2 dev-util/bcc/bcc-0.1.8-r2.ebuild | 2 +- dev-util/bcc/bcc-0.2.0-r1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/bcc/bcc-0.1.8-r2.ebuild b/dev-util/bcc/bcc-0.1.8-r2.ebuild index 5af88a6..b1d13fe 100644 --- a/dev-util/bcc/bcc-0.1.8-r2.ebuild +++ b/dev-util/bcc/bcc-0.1.8-r2.ebuild @@ -28,7 +28,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT#v} pkg_pretend() { local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF - ~BPF_JIT ~HAVE_BPF_JIT ~BPF_EVENTS" + ~BPF_JIT ~BPF_EVENTS" check_extra_config } diff --git a/dev-util/bcc/bcc-0.2.0-r1.ebuild b/dev-util/bcc/bcc-0.2.0-r1.ebuild index 9d2e18c..bb608ad 100644 --- a/dev-util/bcc/bcc-0.2.0-r1.ebuild +++ b/dev-util/bcc/bcc-0.2.0-r1.ebuild @@ -29,7 +29,7 @@ S=${WORKDIR}/${PN}-${EGIT_COMMIT#v} pkg_pretend() { local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF - ~BPF_JIT ~HAVE_BPF_JIT ~BPF_EVENTS" + ~BPF_JIT ~BPF_EVENTS" check_extra_config }