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 7D932139694 for ; Fri, 4 Aug 2017 07:15:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5B421FC006; Fri, 4 Aug 2017 07:15:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 90A891FC006 for ; Fri, 4 Aug 2017 07:15:31 +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 46204341816 for ; Fri, 4 Aug 2017 07:15:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7C0774C9 for ; Fri, 4 Aug 2017 07:15:28 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1501830923.eec52dc3492738596c4832e7124a37eb04913ce9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/atop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/atop/atop-2.3.0.ebuild X-VCS-Directories: sys-process/atop/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: eec52dc3492738596c4832e7124a37eb04913ce9 X-VCS-Branch: master Date: Fri, 4 Aug 2017 07:15:28 +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: 439f69e1-b845-491d-b110-e19feaaa2a14 X-Archives-Hash: 39ce0bdbc1efa83c97305d6bbf2804d8 commit: eec52dc3492738596c4832e7124a37eb04913ce9 Author: sr20det ya ru> AuthorDate: Fri Aug 4 06:51:47 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Aug 4 07:15:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec52dc3 Update atop-2.3.0.ebuild don't die if optional kernel feature not set Closes: https://github.com/gentoo/gentoo/pull/5290 sys-process/atop/atop-2.3.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-process/atop/atop-2.3.0.ebuild b/sys-process/atop/atop-2.3.0.ebuild index 373ca36e8d6..31cb7439dd3 100644 --- a/sys-process/atop/atop-2.3.0.ebuild +++ b/sys-process/atop/atop-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit linux-mod systemd toolchain-funcs +inherit linux-info systemd toolchain-funcs DESCRIPTION="Resource-specific view of processes" HOMEPAGE="https://www.atoptool.nl/ https://github.com/Atoptool/atop" @@ -39,7 +39,8 @@ PATCHES=( pkg_pretend() { if use kernel_linux ; then - CONFIG_CHECK="BSD_PROCESS_ACCT" + CONFIG_CHECK="~BSD_PROCESS_ACCT" + check_extra_config fi }