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 ACD5C138334 for ; Tue, 24 Jul 2018 08:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7006E089F; Tue, 24 Jul 2018 08:23:17 +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 78121E089F for ; Tue, 24 Jul 2018 08:23:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A7B59335D17 for ; Tue, 24 Jul 2018 08:23:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24C0D35C for ; Tue, 24 Jul 2018 08:23:13 +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: <1532420585.a8826981f1b9597bbb2b6fb64527f6fd1defc694.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/htop/htop-3.0.0_beta4.ebuild X-VCS-Directories: sys-process/htop/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a8826981f1b9597bbb2b6fb64527f6fd1defc694 X-VCS-Branch: master Date: Tue, 24 Jul 2018 08:23:13 +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: 8e3a79af-8068-4fbd-9f14-cc6628f96c3c X-Archives-Hash: 672e6c7ebfcfa7384d11f830415e6a19 commit: a8826981f1b9597bbb2b6fb64527f6fd1defc694 Author: Lars Wendler gentoo org> AuthorDate: Tue Jul 24 08:22:51 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jul 24 08:23:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8826981 sys-process/htop: Use python-any-r1 eclass Closes: https://bugs.gentoo.org/661946 Package-Manager: Portage-2.3.43, Repoman-2.3.10 sys-process/htop/htop-3.0.0_beta4.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-process/htop/htop-3.0.0_beta4.ebuild b/sys-process/htop/htop-3.0.0_beta4.ebuild index e2ada9cf173..fff66cbf725 100644 --- a/sys-process/htop/htop-3.0.0_beta4.ebuild +++ b/sys-process/htop/htop-3.0.0_beta4.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) -inherit autotools linux-info python-single-r1 +inherit autotools linux-info python-any-r1 DESCRIPTION="interactive process viewer" HOMEPAGE="https://hisham.hm/htop/" @@ -39,11 +39,11 @@ PATCHES=( pkg_setup() { if ! has_version sys-process/lsof; then - ewarn "To use lsof features in htop(what processes are accessing" + ewarn "To use lsof features in htop (what processes are accessing" ewarn "what files), you must have sys-process/lsof installed." fi - python-single-r1_pkg_setup + python-any-r1_pkg_setup linux-info_pkg_setup }