public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2015-08-16 10:31 Justin Lecher
  0 siblings, 0 replies; 136+ messages in thread
From: Justin Lecher @ 2015-08-16 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a7da091a582a9f6a18b24be11a5d931b610a5e02
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 10:31:17 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 10:31:24 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7da091a

sys-process/htop: Use slot operators for ncurses; drop old

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sys-process/htop/Manifest             |  1 -
 sys-process/htop/htop-1.0.2-r2.ebuild | 81 -----------------------------------
 sys-process/htop/htop-1.0.2.ebuild    | 58 -------------------------
 sys-process/htop/htop-1.0.3.ebuild    |  2 +-
 4 files changed, 1 insertion(+), 141 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index ce3f8d9..c8d23ca 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1 @@
-DIST htop-1.0.2.tar.gz 388499 SHA256 ee60657b044ece0df096c053060df7abf3cce3a568ab34d260049e6a37ccd8a1 SHA512 50ae0e8ace862520c01a707b3cf9a19591dc1081f6fc38c7fdccc81e36dd94b3cbe9db00cbb90f782c22d9b73f22526e24d04fad8368c6f2a7de0c58f9d92191 WHIRLPOOL 2766cfe1ea9c98d23c375e5a1c293c6d573d33cf7132e9aaa6ad0335a5f62976a8b8a8da6ede2f03bbadb31ac62e9d7ba5b35138a262dda73eb033afdf27b570
 DIST htop-1.0.3.tar.gz 399306 SHA256 055c57927f75847fdc222b5258b079a9542811a9dcf5421c615c7e17f55d1829 SHA512 4c5c784b093bcad06eb2e8d8bb215e14f6e838a3d47d8da8402344c270c1724f85d0bcde2899571ba5d0e5a02274a0c3390a76fed61785b2604b51351f08f232 WHIRLPOOL 14b8879210025aff9a1e098314a1b35d2bb6fcfaab42b95670e3726c61d471b1618486e6fc3dbbc97043e85f9a22196d97e676f3b2dd98250326be8527bdebbe

diff --git a/sys-process/htop/htop-1.0.2-r2.ebuild b/sys-process/htop/htop-1.0.2-r2.ebuild
deleted file mode 100644
index 3ad8378..0000000
--- a/sys-process/htop/htop-1.0.2-r2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils linux-info python-any-r1
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://htop.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-RDEPEND="sys-libs/ncurses[unicode?]"
-DEPEND="${RDEPEND}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-# config.h problems
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-pkg_setup() {
-	if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then
-		echo
-		eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function."
-		eerror "To mount it, type:"
-		[ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc"
-		eerror "mount -t linprocfs none /compat/linux/proc"
-		eerror "Alternatively, place this information into /etc/fstab"
-		echo
-		die "htop needs /compat/linux/proc mounted"
-	fi
-
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop(what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-PATCHES=(
-	"${FILESDIR}"/${P}-tinfo.patch
-	"${FILESDIR}"/${P}-process.patch
-	"${FILESDIR}"/${P}-out-of-src.patch
-)
-
-src_prepare() {
-	rm missing || die
-	sed \
-		-e '1c\#!'"${EPREFIX}"'/usr/bin/python' \
-		-i scripts/MakeHeader.py || die
-	autotools-utils_src_prepare
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=()
-
-	use kernel_FreeBSD && myeconfargs+=( --with-proc=/compat/linux/proc )
-
-	myeconfargs+=(
-		$(use_enable openvz)
-		$(use_enable kernel_linux cgroup)
-		$(use_enable vserver)
-		$(use_enable unicode)
-		--enable-taskstats
-		)
-	autotools-utils_src_configure
-}

diff --git a/sys-process/htop/htop-1.0.2.ebuild b/sys-process/htop/htop-1.0.2.ebuild
deleted file mode 100644
index 28e1a57..0000000
--- a/sys-process/htop/htop-1.0.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://htop.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
-IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-RDEPEND="sys-libs/ncurses[unicode?]"
-DEPEND="${RDEPEND}"
-
-DOCS=( ChangeLog README )
-
-pkg_setup() {
-	if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then
-		echo
-		eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function."
-		eerror "To mount it, type:"
-		[ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc"
-		eerror "mount -t linprocfs none /compat/linux/proc"
-		eerror "Alternatively, place this information into /etc/fstab"
-		echo
-		die "htop needs /compat/linux/proc mounted"
-	fi
-
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop(what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-}
-
-src_prepare() {
-	sed -i -e '1c\#!'"${EPREFIX}"'/usr/bin/python' \
-		scripts/MakeHeader.py || die
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myconf=''
-
-	use kernel_FreeBSD && myconf="${myconf} --with-proc=/compat/linux/proc"
-
-	econf \
-		$(use_enable openvz) \
-		$(use_enable kernel_linux cgroup) \
-		$(use_enable vserver) \
-		$(use_enable unicode) \
-		--enable-taskstats \
-		${myconf}
-}

diff --git a/sys-process/htop/htop-1.0.3.ebuild b/sys-process/htop/htop-1.0.3.ebuild
index a0b4ab8..6a433f5 100644
--- a/sys-process/htop/htop-1.0.3.ebuild
+++ b/sys-process/htop/htop-1.0.3.ebuild
@@ -19,7 +19,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux oom openvz unicode vserver"
 
-RDEPEND="sys-libs/ncurses[unicode?]"
+RDEPEND="sys-libs/ncurses:5=[unicode?]"
 DEPEND="${RDEPEND}
 	${PYTHON_DEPS}
 	virtual/pkgconfig"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2015-09-10  8:39 Christian Ruppert
  0 siblings, 0 replies; 136+ messages in thread
From: Christian Ruppert @ 2015-09-10  8:39 UTC (permalink / raw
  To: gentoo-commits

commit:     026216987a8144fac4c9f7c3958430e7c8cc67fb
Author:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 10 08:38:50 2015 +0000
Commit:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 08:38:50 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02621698

sys-process/htop: Remove unneeded python depends, bug 558108

Package-Manager: portage-2.2.20.1

 sys-process/htop/htop-1.0.3-r1.ebuild | 75 +++++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/sys-process/htop/htop-1.0.3-r1.ebuild b/sys-process/htop/htop-1.0.3-r1.ebuild
new file mode 100644
index 0000000..87f44a4
--- /dev/null
+++ b/sys-process/htop/htop-1.0.3-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils linux-info
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://hisham.hm/htop/"
+SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="kernel_FreeBSD kernel_linux oom openvz unicode vserver"
+
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+# config.h problems
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
+PATCHES=("${FILESDIR}/${P}-tinfo.patch")
+
+pkg_setup() {
+	if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then
+		echo
+		eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function."
+		eerror "To mount it, type:"
+		[ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc"
+		eerror "mount -t linprocfs none /compat/linux/proc"
+		eerror "Alternatively, place this information into /etc/fstab"
+		echo
+		die "htop needs /compat/linux/proc mounted"
+	fi
+
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop(what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	rm missing || die
+
+	autotools-utils_src_prepare
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=()
+
+	use kernel_FreeBSD && myeconfargs+=( --with-proc=/compat/linux/proc )
+
+	myeconfargs+=(
+		$(use_enable openvz)
+		$(use_enable kernel_linux cgroup)
+		$(use_enable vserver)
+		$(use_enable unicode)
+		$(use_enable oom)
+		--enable-taskstats
+		)
+	autotools-utils_src_configure
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-02-16  0:14 Stephen Klimaszewski
  0 siblings, 0 replies; 136+ messages in thread
From: Stephen Klimaszewski @ 2016-02-16  0:14 UTC (permalink / raw
  To: gentoo-commits

commit:     ea32f4e940431dfa35882f1f9c83c07cd97ab2a4
Author:     Steev Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 19:46:52 2016 +0000
Commit:     Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 00:13:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea32f4e9

htop: add arm64 keyword

Package-Manager: portage-2.2.27

 sys-process/htop/htop-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.0.ebuild b/sys-process/htop/htop-2.0.0.ebuild
index 40725cb..cef5dc5 100644
--- a/sys-process/htop/htop-2.0.0.ebuild
+++ b/sys-process/htop/htop-2.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-03-07 15:09 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2016-03-07 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a6d85bda0a3bca26e79b49bf82f4462c784e6e01
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  7 15:09:02 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar  7 15:09:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d85bda

sys-process/htop: Removed old.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/htop-2.0.0.ebuild | 75 --------------------------------------
 1 file changed, 75 deletions(-)

diff --git a/sys-process/htop/htop-2.0.0.ebuild b/sys-process/htop/htop-2.0.0.ebuild
deleted file mode 100644
index cef5dc5..0000000
--- a/sys-process/htop/htop-2.0.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit autotools linux-info
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-RDEPEND="sys-libs/ncurses:0=[unicode?]"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.0.0-tinfo.patch"
-)
-
-pkg_setup() {
-	if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then
-		echo
-		eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function."
-		eerror "To mount it, type:"
-		[ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc"
-		eerror "mount -t linprocfs none /compat/linux/proc"
-		eerror "Alternatively, place this information into /etc/fstab"
-		echo
-		die "htop needs /compat/linux/proc mounted"
-	fi
-
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop(what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	rm missing || die
-
-	default
-	eautoreconf
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=()
-
-	use kernel_FreeBSD && myeconfargs+=( --with-proc=/compat/linux/proc )
-
-	myeconfargs+=(
-		# fails to build against recent hwloc versions
-		--disable-hwloc
-		--enable-native-affinity
-		--enable-taskstats
-		$(use_enable kernel_linux cgroup)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-	econf ${myeconfargs[@]}
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-03-07 15:09 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2016-03-07 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     780a68f46db7f04dabe5b2f931261a9e304aa126
Author:     vthriller <unixway.drive+git <AT> gmail <DOT> com>
AuthorDate: Thu Feb 11 15:59:05 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar  7 15:09:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780a68f4

sys-process/htop: from version 2 onwards, FreeBSD is supported natively

 sys-process/htop/htop-2.0.0-r1.ebuild | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/sys-process/htop/htop-2.0.0-r1.ebuild b/sys-process/htop/htop-2.0.0-r1.ebuild
index f7224ea..e589b84 100644
--- a/sys-process/htop/htop-2.0.0-r1.ebuild
+++ b/sys-process/htop/htop-2.0.0-r1.ebuild
@@ -29,17 +29,6 @@ PATCHES=(
 )
 
 pkg_setup() {
-	if use kernel_FreeBSD && ! [[ -f ${ROOT}/compat/linux/proc/stat && -f ${ROOT}/compat/linux/proc/meminfo ]]; then
-		echo
-		eerror "htop requires linprocfs mounted at /compat/linux/proc to build and function."
-		eerror "To mount it, type:"
-		[ -d /compat/linux/proc ] || eerror "mkdir -p /compat/linux/proc"
-		eerror "mount -t linprocfs none /compat/linux/proc"
-		eerror "Alternatively, place this information into /etc/fstab"
-		echo
-		die "htop needs /compat/linux/proc mounted"
-	fi
-
 	if ! has_version sys-process/lsof; then
 		ewarn "To use lsof features in htop(what processes are accessing"
 		ewarn "what files), you must have sys-process/lsof installed."
@@ -60,8 +49,6 @@ src_configure() {
 
 	local myeconfargs=()
 
-	use kernel_FreeBSD && myeconfargs+=( --with-proc=/compat/linux/proc )
-
 	myeconfargs+=(
 		# fails to build against recent hwloc versions
 		--disable-hwloc


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-03-08  8:04 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2016-03-08  8:04 UTC (permalink / raw
  To: gentoo-commits

commit:     14c8d87009155a4feee8eb5400cab739847926e3
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  8 08:04:09 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Mar  8 08:04:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c8d870

sys-process/htop: Bump to version 2.0.1

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-2.0.1.ebuild | 62 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index b60549d..58c4866 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-1.0.3.tar.gz 399306 SHA256 055c57927f75847fdc222b5258b079a9542811a9dcf5421c615c7e17f55d1829 SHA512 4c5c784b093bcad06eb2e8d8bb215e14f6e838a3d47d8da8402344c270c1724f85d0bcde2899571ba5d0e5a02274a0c3390a76fed61785b2604b51351f08f232 WHIRLPOOL 14b8879210025aff9a1e098314a1b35d2bb6fcfaab42b95670e3726c61d471b1618486e6fc3dbbc97043e85f9a22196d97e676f3b2dd98250326be8527bdebbe
 DIST htop-2.0.0.tar.gz 473765 SHA256 d15ca2a0abd6d91d6d17fd685043929cfe7aa91199a9f4b3ebbb370a2c2424b5 SHA512 2df1b96e4c07a1de360dc7b7b20db0e663d7fa2c9a8a9dcc3d7dc1ce5e5b59f72d927e8e7ae919631cf0e950a82450b45116a1f8d788f63c5762bd73332ec32c WHIRLPOOL b7a64593bd69d8ebbac2e69c8030e197647dacfe0c53b5e4550e77fe79db87b1d106cb4ea1adfa5338628afb1f5d46244b95d4522718142e2f966f2cad59db02
+DIST htop-2.0.1.tar.gz 477196 SHA256 f410626dfaf6b70fdf73cd7bb33cae768869707028d847fed94a978e974f5666 SHA512 57991a55b69028c01549b067ec749099466df5b08a0ed9a65dd779e6d2c8ee0a5d9c330bb6c727b04a349146ad441b7115718e433d1f8232f74b28903fb351ff WHIRLPOOL 0bfd3bd5eff3a4597b349e83510cefaf8dbf0dacf8161ab0fea50216a44915cbf7d506d1479daf4e064803e0b6a0f65180fa7aa52d6ab161774a579ccb1dfe7d

diff --git a/sys-process/htop/htop-2.0.1.ebuild b/sys-process/htop/htop-2.0.1.ebuild
new file mode 100644
index 0000000..b36c208
--- /dev/null
+++ b/sys-process/htop/htop-2.0.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools linux-info
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://hisham.hm/htop/"
+SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.0.0-tinfo.patch"
+)
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop(what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	rm missing || die
+
+	default
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=()
+
+	myeconfargs+=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-06-25 13:47 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2016-06-25 13:47 UTC (permalink / raw
  To: gentoo-commits

commit:     a8d5d06220e4e851a69ebb849f7a5b6cf299342d
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 25 13:47:38 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat Jun 25 13:47:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d5d062

sys-process/htop: Added myself as maintainer.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index 5d219cd1..31af477 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -5,6 +5,10 @@
 		<email>idl0r@gentoo.org</email>
 		<name>Christian Ruppert</name>
 	</maintainer>
+	<maintainer type="person">
+		<email>polynomial-c@gentoo.org</email>
+		<name>Lars Wendler</name>
+	</maintainer>
 	<use>
 		<flag name="oom">Add column to track the OOM-killer score of processes</flag>
 		<flag name="openvz">Enable openvz support</flag>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-12-18 15:44 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2016-12-18 15:44 UTC (permalink / raw
  To: gentoo-commits

commit:     707d744f9d032bfcaeae6e60a826e9f459cb168d
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 15:41:19 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 15:44:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707d744f

sys-process/htop: amd64 stable wrt bug #602996

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index a64dffe..8fc586d 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-12-19 11:07 Tobias Klausmann
  0 siblings, 0 replies; 136+ messages in thread
From: Tobias Klausmann @ 2016-12-19 11:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ed7877fa066d8895417107c867cdb3c8ec0710cf
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 11:06:52 2016 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 11:06:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7877fa

sys-process/htop-2.0.2-r0: stable on alpha

Gentoo-Bug: 602996

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index c4035e0..6657859 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-12-19 14:35 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2016-12-19 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     3cd5e80af1c3c7baa4951b7c170ec98c611d6d5b
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 14:34:36 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 14:34:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd5e80a

sys-process/htop: sparc stable wrt bug #602996

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 6657859..7603b22 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-12-19 15:12 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2016-12-19 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     9eb509bec54ac0fe49a0105b91c62810aca38ac4
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 15:11:25 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 15:12:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eb509be

sys-process/htop: ia64 stable wrt bug #602996

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 7603b22..0bbccd3 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2016-12-24 10:25 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2016-12-24 10:25 UTC (permalink / raw
  To: gentoo-commits

commit:     3ae6cec319cc7edc1e48baac65b0374b9033fa1a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 24 10:23:52 2016 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 10:23:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae6cec3

sys-process/htop: arm stable wrt bug #602996

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 047298c..84cbba3 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2017-01-15  0:34 Jeroen Roovers
  0 siblings, 0 replies; 136+ messages in thread
From: Jeroen Roovers @ 2017-01-15  0:34 UTC (permalink / raw
  To: gentoo-commits

commit:     a0f0ace9b835e07f946da81a3509e64a40715db2
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 15 00:34:10 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 00:34:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f0ace9

sys-process/htop: Stable for HPPA (bug #602996).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 sys-process/htop/htop-2.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 84cbba3..8fe99a3 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2017-02-03 21:44 Robin H. Johnson
  0 siblings, 0 replies; 136+ messages in thread
From: Robin H. Johnson @ 2017-02-03 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     007dfd978d4033ac52b47a2157a0f235cbd16254
Author:     Doug Goldstein <cardoe <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 02:13:10 2016 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Feb  3 21:44:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007dfd97

sys-process/htop: express lsof RDEPEND as a USE flag

Expressing a possible RDEPEND as an einfo isn't optimal for people
trying to roll out configs where everything works the same across many
machines.

Fixes: https://github.com/gentoo/gentoo/pull/3148
Signed-off-by: Doug Goldstein <cardoe <AT> gentoo.org>
(cherry picked from commit 8cb807445b1f84daa432650995462e902002404b)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-process/htop/htop-2.0.2-r1.ebuild | 54 +++++++++++++++++++++++++++++++++++
 sys-process/htop/metadata.xml         |  1 +
 2 files changed, 55 insertions(+)

diff --git a/sys-process/htop/htop-2.0.2-r1.ebuild b/sys-process/htop/htop-2.0.2-r1.ebuild
new file mode 100644
index 00000000..8acb8c4
--- /dev/null
+++ b/sys-process/htop/htop-2.0.2-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools linux-info
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://hisham.hm/htop/"
+SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="files kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+RDEPEND="sys-libs/ncurses:0=[unicode?]
+	files? ( sys-process/lsof )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.0.2-tinfo.patch"
+)
+
+src_prepare() {
+	rm missing || die
+
+	default
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=()
+
+	myeconfargs+=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index 31af477..e28e069 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -10,6 +10,7 @@
 		<name>Lars Wendler</name>
 	</maintainer>
 	<use>
+		<flag name="files">Allow htop to show what processes are accessing what files by using <pkg>sys-process/lsof</pkg>.</flag>
 		<flag name="oom">Add column to track the OOM-killer score of processes</flag>
 		<flag name="openvz">Enable openvz support</flag>
 		<flag name="vserver">Enable vserver support</flag>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2017-02-03 21:59 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2017-02-03 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1cdb0e17c848a26434e463bc098b7a497f9c9d62
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  3 21:59:04 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Feb  3 21:59:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cdb0e17

Revert "sys-process/htop: express lsof RDEPEND as a USE flag"

This reverts commit 007dfd978d4033ac52b47a2157a0f235cbd16254.

Was not ACKed by maintainers.

 sys-process/htop/htop-2.0.2-r1.ebuild | 54 -----------------------------------
 sys-process/htop/metadata.xml         |  1 -
 2 files changed, 55 deletions(-)

diff --git a/sys-process/htop/htop-2.0.2-r1.ebuild b/sys-process/htop/htop-2.0.2-r1.ebuild
deleted file mode 100644
index 8acb8c4..00000000
--- a/sys-process/htop/htop-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit autotools linux-info
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="files kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-RDEPEND="sys-libs/ncurses:0=[unicode?]
-	files? ( sys-process/lsof )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.0.2-tinfo.patch"
-)
-
-src_prepare() {
-	rm missing || die
-
-	default
-	eautoreconf
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=()
-
-	myeconfargs+=(
-		# fails to build against recent hwloc versions
-		--disable-hwloc
-		--enable-taskstats
-		$(use_enable kernel_linux cgroup)
-		$(use_enable kernel_linux linux-affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-	econf ${myeconfargs[@]}
-}

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index e28e069..31af477 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -10,7 +10,6 @@
 		<name>Lars Wendler</name>
 	</maintainer>
 	<use>
-		<flag name="files">Allow htop to show what processes are accessing what files by using <pkg>sys-process/lsof</pkg>.</flag>
 		<flag name="oom">Add column to track the OOM-killer score of processes</flag>
 		<flag name="openvz">Enable openvz support</flag>
 		<flag name="vserver">Enable vserver support</flag>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2017-02-24 22:11 Michael Weber
  0 siblings, 0 replies; 136+ messages in thread
From: Michael Weber @ 2017-02-24 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     94d8684222c3463bc9d67ee3081fd508e5c208e0
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 24 21:49:51 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Feb 24 22:11:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d86842

sys-process/htop: arm64 stable.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 8fe99a348c..d828292cac 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2017-12-24 13:56 Patrice Clement
  0 siblings, 0 replies; 136+ messages in thread
From: Patrice Clement @ 2017-12-24 13:56 UTC (permalink / raw
  To: gentoo-commits

commit:     6309bf3f24c1aee1254942b98df0638a64c19de2
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 24 13:56:20 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 13:56:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6309bf3f

sys-process/htop: keyword for amd64-fbsd.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sys-process/htop/htop-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index b8537f91509..864882f610b 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-03-02  7:46 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-03-02  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     3818e5b88335efd19375516ef8e9d9c6f2d6a2b6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  2 07:46:34 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Mar  2 07:46:34 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3818e5b8

sys-process/htop: Fixed build with python2_7

Closes: https://bugs.gentoo.org/649250
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-process/htop/htop-2.1.0-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.1.0-r1.ebuild b/sys-process/htop/htop-2.1.0-r1.ebuild
index a6d93f24ee2..14a9ecd0dfb 100644
--- a/sys-process/htop/htop-2.1.0-r1.ebuild
+++ b/sys-process/htop/htop-2.1.0-r1.ebuild
@@ -28,7 +28,6 @@ DOCS=( ChangeLog README )
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
 
 PATCHES=(
-	"${FILESDIR}/${PN}-2.1.0-MakeHeader-python3.patch" #646880
 
 	# Fixes from upstream (can usually be removed with next version bump)
 	"${FILESDIR}/${P}-sysmacros.patch"
@@ -54,6 +53,8 @@ src_prepare() {
 	rm missing || die
 
 	default
+	use python_single_target_python2_7 || \
+		eapply "${FILESDIR}/${PN}-2.1.0-MakeHeader-python3.patch" #646880
 	eautoreconf
 	python_fix_shebang scripts/MakeHeader.py
 }


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-03-26 13:26 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-03-26 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     e8cc1a5b84b6c5196ac9cb15808e58d0832b1bfe
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 13:26:09 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 13:26:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8cc1a5b

sys-process/htop: Removed old.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-process/htop/htop-2.1.0.ebuild | 59 --------------------------------------
 1 file changed, 59 deletions(-)

diff --git a/sys-process/htop/htop-2.1.0.ebuild b/sys-process/htop/htop-2.1.0.ebuild
deleted file mode 100644
index 1ba6ab8008f..00000000000
--- a/sys-process/htop/htop-2.1.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools linux-info
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
-IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-RDEPEND="sys-libs/ncurses:0=[unicode?]"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-PATCHES=(
-	"${FILESDIR}/${P}-sysmacros.patch"
-)
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop(what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	rm missing || die
-
-	default
-	eautoreconf
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		# fails to build against recent hwloc versions
-		--disable-hwloc
-		--enable-taskstats
-		$(use_enable kernel_linux cgroup)
-		$(use_enable kernel_linux linux-affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-	econf ${myeconfargs[@]}
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-03-26 13:26 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-03-26 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     d8922e9cfebfafd071cbd0bb79cd375dcfe9155a
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 26 13:25:39 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 13:26:28 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8922e9c

sys-process/htop: Added 3.0.0_beta3 release.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-process/htop/Manifest                |  1 +
 sys-process/htop/htop-3.0.0_beta3.ebuild | 76 ++++++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index f0451a60ad1..0fcc0a9fd18 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-2.0.2.tar.gz 476364 BLAKE2B f5519977b4bd6d189cb7f379a9f9b535a4b67a575b30056a43e259ab39a69f84083d310bbefefe8408c7ca99918f1ea9ae775808b9afe9d0f78097ac6bb88dc7 SHA512 1c9bf71a36c56b301667aa6d03756fc757fbcb63e848d9581d10db3df6193cdeb00e55ceb6e2392794ac03ea034b04459a8fe550b3ac2318cd86263a74c78cda
 DIST htop-2.1.0.tar.gz 302938 BLAKE2B 3e290a3dbb0bf5424780ba5dcb9de8ea478bf4cabbbde202c19eb3db7e0f8d1e108ec3ea41544ac095097c39100417c72477dab96f104a6317f4edd06d69199f SHA512 203e8f4abd63334330fc673f6c9609adbeab763d80f553d8b48670091d18dd347599a9ce2dbbac374fa4a13fa904948711a441fa676f52ab1612bd2b4ee4c6eb
+DIST htop-3.0.0_beta3.tar.gz 169576 BLAKE2B 6d62a818b53933de1d09e316eac41497f6f9c75b1fced691540e91348af0a0272f38dfd2dd935191c0782d2c4ca2fc6bee64d5827851329b73d7c31c590d3e9f SHA512 05b2f817b67206dce0f727394cc78437ecbd4575fed898dca0a7b25a7acaab42e8b674f4c040139080759d04e73e5fda58aab89c184f2b10e35edf19385e680a

diff --git a/sys-process/htop/htop-3.0.0_beta3.ebuild b/sys-process/htop/htop-3.0.0_beta3.ebuild
new file mode 100644
index 00000000000..97456ae73a1
--- /dev/null
+++ b/sys-process/htop/htop-3.0.0_beta3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit autotools linux-info python-single-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://hisham.hm/htop/"
+if [[ "${PV}" = *_beta* ]] ; then
+	SRC_URI="https://github.com/hishamhm/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/${P/_}"
+else
+	SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+fi
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}
+	virtual/pkgconfig"
+
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=(
+
+	# Fixes from upstream (can usually be removed with next version bump)
+	"${FILESDIR}/${PN}-2.1.0-header_updates.patch"
+)
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		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
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	if [[ "${PV}" != *_beta* ]] ; then
+		rm missing || die
+	fi
+
+	default
+	use python_single_target_python2_7 || \
+		eapply "${FILESDIR}/${PN}-2.1.0-MakeHeader-python3.patch" #646880
+	eautoreconf
+	python_fix_shebang scripts/MakeHeader.py
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-04-09 15:23 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-04-09 15:23 UTC (permalink / raw
  To: gentoo-commits

commit:     3c539de58d3c83c3b6656dc42f817b534b3d4673
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  9 15:23:01 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Apr  9 15:23:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c539de5

sys-process/htop: Bump to version 3.0.0_beta4. Removed old.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-process/htop/Manifest                                             | 2 +-
 sys-process/htop/{htop-3.0.0_beta3.ebuild => htop-3.0.0_beta4.ebuild} | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 0fcc0a9fd18..7107a60affe 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,3 @@
 DIST htop-2.0.2.tar.gz 476364 BLAKE2B f5519977b4bd6d189cb7f379a9f9b535a4b67a575b30056a43e259ab39a69f84083d310bbefefe8408c7ca99918f1ea9ae775808b9afe9d0f78097ac6bb88dc7 SHA512 1c9bf71a36c56b301667aa6d03756fc757fbcb63e848d9581d10db3df6193cdeb00e55ceb6e2392794ac03ea034b04459a8fe550b3ac2318cd86263a74c78cda
 DIST htop-2.1.0.tar.gz 302938 BLAKE2B 3e290a3dbb0bf5424780ba5dcb9de8ea478bf4cabbbde202c19eb3db7e0f8d1e108ec3ea41544ac095097c39100417c72477dab96f104a6317f4edd06d69199f SHA512 203e8f4abd63334330fc673f6c9609adbeab763d80f553d8b48670091d18dd347599a9ce2dbbac374fa4a13fa904948711a441fa676f52ab1612bd2b4ee4c6eb
-DIST htop-3.0.0_beta3.tar.gz 169576 BLAKE2B 6d62a818b53933de1d09e316eac41497f6f9c75b1fced691540e91348af0a0272f38dfd2dd935191c0782d2c4ca2fc6bee64d5827851329b73d7c31c590d3e9f SHA512 05b2f817b67206dce0f727394cc78437ecbd4575fed898dca0a7b25a7acaab42e8b674f4c040139080759d04e73e5fda58aab89c184f2b10e35edf19385e680a
+DIST htop-3.0.0_beta4.tar.gz 179849 BLAKE2B 2990090a3b898673fd3bf985077721aed79d00ee07c8a6808b25eb84e320a9c494bd8ad7440ea142ae01bd634ab8863e2cca01c5a52bd19a7e2f4746334acce8 SHA512 4a9c8765ddbd366b06f23e14dc2176cd2da5346e32867c6fa9f11e57018acb6cc37f9ada044febb1b9d414e4dc5958c3c84455649e9c05f64ddf1b37c59fc05e

diff --git a/sys-process/htop/htop-3.0.0_beta3.ebuild b/sys-process/htop/htop-3.0.0_beta4.ebuild
similarity index 94%
rename from sys-process/htop/htop-3.0.0_beta3.ebuild
rename to sys-process/htop/htop-3.0.0_beta4.ebuild
index 9400d99d515..d0ff7771a21 100644
--- a/sys-process/htop/htop-3.0.0_beta3.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta4.ebuild
@@ -53,8 +53,6 @@ src_prepare() {
 	fi
 
 	default
-	use python_single_target_python2_7 || \
-		eapply "${FILESDIR}/${PN}-2.1.0-MakeHeader-python3.patch" #646880
 	eautoreconf
 	python_fix_shebang scripts/MakeHeader.py
 }


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-04-11  8:19 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-04-11  8:19 UTC (permalink / raw
  To: gentoo-commits

commit:     a51d1e6bb9bd587eecc7ef81710e2e5a691a164d
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 11 08:09:50 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 08:19:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51d1e6b

sys-process/htop: Bump to version 2.2.0

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-2.2.0.ebuild | 62 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 7107a60affe..1660bf62cf1 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-2.0.2.tar.gz 476364 BLAKE2B f5519977b4bd6d189cb7f379a9f9b535a4b67a575b30056a43e259ab39a69f84083d310bbefefe8408c7ca99918f1ea9ae775808b9afe9d0f78097ac6bb88dc7 SHA512 1c9bf71a36c56b301667aa6d03756fc757fbcb63e848d9581d10db3df6193cdeb00e55ceb6e2392794ac03ea034b04459a8fe550b3ac2318cd86263a74c78cda
 DIST htop-2.1.0.tar.gz 302938 BLAKE2B 3e290a3dbb0bf5424780ba5dcb9de8ea478bf4cabbbde202c19eb3db7e0f8d1e108ec3ea41544ac095097c39100417c72477dab96f104a6317f4edd06d69199f SHA512 203e8f4abd63334330fc673f6c9609adbeab763d80f553d8b48670091d18dd347599a9ce2dbbac374fa4a13fa904948711a441fa676f52ab1612bd2b4ee4c6eb
+DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
 DIST htop-3.0.0_beta4.tar.gz 179849 BLAKE2B 2990090a3b898673fd3bf985077721aed79d00ee07c8a6808b25eb84e320a9c494bd8ad7440ea142ae01bd634ab8863e2cca01c5a52bd19a7e2f4746334acce8 SHA512 4a9c8765ddbd366b06f23e14dc2176cd2da5346e32867c6fa9f11e57018acb6cc37f9ada044febb1b9d414e4dc5958c3c84455649e9c05f64ddf1b37c59fc05e

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
new file mode 100644
index 00000000000..980d490717a
--- /dev/null
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit linux-info python-single-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="http://hisham.hm/htop/"
+SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}
+	virtual/pkgconfig"
+
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		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
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	rm missing || die
+
+	default
+
+	python_fix_shebang scripts/MakeHeader.py
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-06-08 20:45 Mikle Kolyada
  0 siblings, 0 replies; 136+ messages in thread
From: Mikle Kolyada @ 2018-06-08 20:45 UTC (permalink / raw
  To: gentoo-commits

commit:     86a7515258f756593e7d35f4cbf5e272cb54b7c9
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  8 20:45:10 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jun  8 20:45:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a75152

sys-process/htop: switch to HTTPS

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-process/htop/htop-2.0.2.ebuild       | 6 +++---
 sys-process/htop/htop-2.1.0-r1.ebuild    | 4 ++--
 sys-process/htop/htop-2.2.0.ebuild       | 4 ++--
 sys-process/htop/htop-3.0.0_beta4.ebuild | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys-process/htop/htop-2.0.2.ebuild b/sys-process/htop/htop-2.0.2.ebuild
index 864882f610b..68515359d77 100644
--- a/sys-process/htop/htop-2.0.2.ebuild
+++ b/sys-process/htop/htop-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,8 +6,8 @@ EAPI=6
 inherit autotools linux-info
 
 DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+HOMEPAGE="https://hisham.hm/htop/"
+SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"

diff --git a/sys-process/htop/htop-2.1.0-r1.ebuild b/sys-process/htop/htop-2.1.0-r1.ebuild
index 8eac59d4391..c0f863a1c76 100644
--- a/sys-process/htop/htop-2.1.0-r1.ebuild
+++ b/sys-process/htop/htop-2.1.0-r1.ebuild
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit autotools linux-info python-single-r1
 
 DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+HOMEPAGE="https://hisham.hm/htop/"
+SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 980d490717a..5647433903d 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit linux-info python-single-r1
 
 DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
-SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+HOMEPAGE="https://hisham.hm/htop/"
+SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"

diff --git a/sys-process/htop/htop-3.0.0_beta4.ebuild b/sys-process/htop/htop-3.0.0_beta4.ebuild
index d0ff7771a21..26c184d21dd 100644
--- a/sys-process/htop/htop-3.0.0_beta4.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta4.ebuild
@@ -8,12 +8,12 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit autotools linux-info python-single-r1
 
 DESCRIPTION="interactive process viewer"
-HOMEPAGE="http://hisham.hm/htop/"
+HOMEPAGE="https://hisham.hm/htop/"
 if [[ "${PV}" = *_beta* ]] ; then
 	SRC_URI="https://github.com/hishamhm/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
 	S="${WORKDIR}/${P/_}"
 else
-	SRC_URI="http://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
+	SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 fi
 LICENSE="BSD GPL-2"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-07-24  8:17 Michał Górny
  0 siblings, 0 replies; 136+ messages in thread
From: Michał Górny @ 2018-07-24  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     8c875a34168a265a2c3cd7fac518685b5c9be0b6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 24 08:12:43 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul 24 08:16:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c875a34

sys-process/htop: Enable py3.7

 sys-process/htop/htop-2.2.0.ebuild       | 2 +-
 sys-process/htop/htop-3.0.0_beta4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 5647433903d..bd549ea95a5 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
 
 inherit linux-info python-single-r1
 

diff --git a/sys-process/htop/htop-3.0.0_beta4.ebuild b/sys-process/htop/htop-3.0.0_beta4.ebuild
index 26c184d21dd..e2ada9cf173 100644
--- a/sys-process/htop/htop-3.0.0_beta4.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
 
 inherit autotools linux-info python-single-r1
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-07-24  8:23 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-07-24  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     a8826981f1b9597bbb2b6fb64527f6fd1defc694
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 24 08:22:51 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> 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
 }
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-07-24  8:45 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-07-24  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     c26aaf3658dc68958998a7e7332800732105b1b3
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 24 08:45:37 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Jul 24 08:45:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26aaf36

sys-process/htop: PYTHON_REQUIRED_USE is no longer needed.

Bug: https://bugs.gentoo.org/661946
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-process/htop/htop-3.0.0_beta4.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sys-process/htop/htop-3.0.0_beta4.ebuild b/sys-process/htop/htop-3.0.0_beta4.ebuild
index fff66cbf725..0b5a668213d 100644
--- a/sys-process/htop/htop-3.0.0_beta4.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta4.ebuild
@@ -25,8 +25,6 @@ DEPEND="${RDEPEND}
 	${PYTHON_DEPS}
 	virtual/pkgconfig"
 
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-09 13:22 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2018-10-09 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     33fc646c9575a42994b1ffc5f3f60a3f9bbdf8f8
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  9 13:19:36 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Oct  9 13:22:09 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33fc646c

sys-process/htop: Bump to version 3.0.0_beta5. Removed old.

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-process/htop/Manifest                                         | 2 +-
 .../htop/{htop-3.0.0_beta4.ebuild => htop-3.0.0_beta5.ebuild}     | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 1660bf62cf1..edcf3a82aed 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1,4 @@
 DIST htop-2.0.2.tar.gz 476364 BLAKE2B f5519977b4bd6d189cb7f379a9f9b535a4b67a575b30056a43e259ab39a69f84083d310bbefefe8408c7ca99918f1ea9ae775808b9afe9d0f78097ac6bb88dc7 SHA512 1c9bf71a36c56b301667aa6d03756fc757fbcb63e848d9581d10db3df6193cdeb00e55ceb6e2392794ac03ea034b04459a8fe550b3ac2318cd86263a74c78cda
 DIST htop-2.1.0.tar.gz 302938 BLAKE2B 3e290a3dbb0bf5424780ba5dcb9de8ea478bf4cabbbde202c19eb3db7e0f8d1e108ec3ea41544ac095097c39100417c72477dab96f104a6317f4edd06d69199f SHA512 203e8f4abd63334330fc673f6c9609adbeab763d80f553d8b48670091d18dd347599a9ce2dbbac374fa4a13fa904948711a441fa676f52ab1612bd2b4ee4c6eb
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
-DIST htop-3.0.0_beta4.tar.gz 179849 BLAKE2B 2990090a3b898673fd3bf985077721aed79d00ee07c8a6808b25eb84e320a9c494bd8ad7440ea142ae01bd634ab8863e2cca01c5a52bd19a7e2f4746334acce8 SHA512 4a9c8765ddbd366b06f23e14dc2176cd2da5346e32867c6fa9f11e57018acb6cc37f9ada044febb1b9d414e4dc5958c3c84455649e9c05f64ddf1b37c59fc05e
+DIST htop-3.0.0_beta5.tar.gz 175780 BLAKE2B f7d03485e74387c656e5a576f0a53c832bac668cee79750402335b2051a17d405392b99316f1546cc76fa83dc3bc85055ca58b928225df0e162ffdb9c1889a5f SHA512 eaa04a278257a1447cd60825083c864d3c23a4a5607447ce05356d550f42ff68a810f14bf91314b7266f9741aab8141d67d98316a31fa7806fb6b858cc804344

diff --git a/sys-process/htop/htop-3.0.0_beta4.ebuild b/sys-process/htop/htop-3.0.0_beta5.ebuild
similarity index 95%
rename from sys-process/htop/htop-3.0.0_beta4.ebuild
rename to sys-process/htop/htop-3.0.0_beta5.ebuild
index 0b5a668213d..1265e744290 100644
--- a/sys-process/htop/htop-3.0.0_beta4.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
 
@@ -22,8 +22,8 @@ IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"
 DEPEND="${RDEPEND}
-	${PYTHON_DEPS}
-	virtual/pkgconfig"
+	${PYTHON_DEPS}"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( ChangeLog README )
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-10  3:01 Thomas Deutschmann
  0 siblings, 0 replies; 136+ messages in thread
From: Thomas Deutschmann @ 2018-10-10  3:01 UTC (permalink / raw
  To: gentoo-commits

commit:     7c08533901bcccc817fdfeaacb7499a4a8eee22c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 10 03:00:31 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Oct 10 03:00:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c085339

sys-process/htop: x86 stable (bug #667928)

Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index bd549ea95a5..ad311e9f702 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-10 13:31 Mikle Kolyada
  0 siblings, 0 replies; 136+ messages in thread
From: Mikle Kolyada @ 2018-10-10 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     02901b1b3355aff67d7abf2ca79fbcd1a0ad7475
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 10 13:31:26 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Oct 10 13:31:41 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02901b1b

sys-process/htop: amd64 stable wrt bug #667928

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index ad311e9f702..40287a11398 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-12 19:08 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2018-10-12 19:08 UTC (permalink / raw
  To: gentoo-commits

commit:     9bed64f3a18a88e93c7288ce262fcfdd4771d96b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 12 19:07:43 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Oct 12 19:08:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bed64f3

sys-process/htop: stable 2.2.0 for ia64, bug #667928

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 40287a11398..37d40226492 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-13  6:56 Tobias Klausmann
  0 siblings, 0 replies; 136+ messages in thread
From: Tobias Klausmann @ 2018-10-13  6:56 UTC (permalink / raw
  To: gentoo-commits

commit:     99c7b557a28a090156f96b72a650b975547ae496
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 13 06:55:54 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 06:55:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c7b557

sys-process/htop-2.2.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/667928
Signed-off-by: Tobias Klausmann <klausman <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 37d40226492..839f7db4e43 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-13 16:14 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2018-10-13 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     26b019a955d4530b880891f3a3df358069c069d3
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 13 16:14:15 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 16:14:46 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b019a9

sys-process/htop: stable 2.2.0 for hppa, bug #667928

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 839f7db4e43..fb3835ad2de 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-14  8:59 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2018-10-14  8:59 UTC (permalink / raw
  To: gentoo-commits

commit:     b94df76529737fdcebb6323b6887bb1b3d12b88c
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 14 08:55:09 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Oct 14 08:55:09 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94df765

sys-process/htop: stable 2.2.0 for ppc, bug #667928

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index fb3835ad2de..7975612fbef 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-14  9:14 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2018-10-14  9:14 UTC (permalink / raw
  To: gentoo-commits

commit:     fd0c891549b62e7b4b8622bb59938886544f5071
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 14 09:12:18 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Oct 14 09:14:11 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd0c8915

sys-process/htop: stable 2.2.0 for ppc64, bug #667928

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc64"

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 7975612fbef..245169f8eae 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-15 18:43 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2018-10-15 18:43 UTC (permalink / raw
  To: gentoo-commits

commit:     e6def06b1f5fa6c7f8f8d595ed6770968b9701f5
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Oct 15 17:30:56 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Oct 15 18:43:33 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6def06b

sys-process/htop: stable 2.2.0 for sparc, bug #667928

Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 245169f8eae..61776960636 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-10-17  9:53 Mikle Kolyada
  0 siblings, 0 replies; 136+ messages in thread
From: Mikle Kolyada @ 2018-10-17  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     15d8c9f7b8a13dc6f424d45edac1958fa58a169b
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 17 09:53:02 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Oct 17 09:53:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d8c9f7

sys-process/htop: amd64 stable wrt bug #667928

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 61776960636..b2c5951cf85 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2018-11-27  9:58 Mart Raudsepp
  0 siblings, 0 replies; 136+ messages in thread
From: Mart Raudsepp @ 2018-11-27  9:58 UTC (permalink / raw
  To: gentoo-commits

commit:     4cc59051a8d1640d5fc1497e183becbf76020f7b
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 27 09:54:35 2018 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Nov 27 09:57:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc59051

sys-process/htop-2.2.0: arm64 stable (bug #667928)

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 sys-process/htop/htop-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index b2c5951cf85..01dd35aa1f5 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2019-07-25 14:57 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2019-07-25 14:57 UTC (permalink / raw
  To: gentoo-commits

commit:     d6addd0be0d88d49fdbb175030312b3283bfb88f
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 25 14:57:21 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Jul 25 14:57:21 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6addd0b

sys-process/htop: Use python-any-r1 instead of python-single-r1

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 9e6187da2c8..19eb58beab6 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 
-inherit linux-info python-single-r1
+inherit linux-info python-any-r1
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://hisham.hm/htop/"
@@ -21,8 +21,6 @@ DEPEND="${RDEPEND}
 	${PYTHON_DEPS}
 	virtual/pkgconfig"
 
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
@@ -33,7 +31,7 @@ pkg_setup() {
 		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
 }
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2019-10-31 22:48 Göktürk Yüksek
  0 siblings, 0 replies; 136+ messages in thread
From: Göktürk Yüksek @ 2019-10-31 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     610a14cc4c92ff301e6bd7291e9ece4fef60b8e3
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 22:47:12 2019 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 22:47:12 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=610a14cc

sys-process/htop: keyword for riscv

Package-Manager: Portage-2.3.78, Repoman-2.3.17
RepoMan-Options: --include-arches="riscv"
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild       | 2 +-
 sys-process/htop/htop-3.0.0_beta5.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 409f8e533b1..f8475b10ce6 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~riscv ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses:0=[unicode?]"

diff --git a/sys-process/htop/htop-3.0.0_beta5.ebuild b/sys-process/htop/htop-3.0.0_beta5.ebuild
index 21214c0f29d..70dd81d7671 100644
--- a/sys-process/htop/htop-3.0.0_beta5.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ if [[ "${PV}" = *_beta* ]] ; then
 	S="${WORKDIR}/${P/_}"
 else
 	SRC_URI="https://hisham.hm/htop/releases/${PV}/${P}.tar.gz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-02-10 13:26 Michał Górny
  0 siblings, 0 replies; 136+ messages in thread
From: Michał Górny @ 2020-02-10 13:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ecc27d3726acb8a05f2666a2b706942ea8bcdf36
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 13:06:25 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 13:26:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecc27d37

sys-process/htop: Remove py2 where possible

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild       | 2 +-
 sys-process/htop/htop-3.0.0_beta5.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index fef82997549..8e121bcacff 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit linux-info python-any-r1
 

diff --git a/sys-process/htop/htop-3.0.0_beta5.ebuild b/sys-process/htop/htop-3.0.0_beta5.ebuild
index de47c9f995d..9ee89943272 100644
--- a/sys-process/htop/htop-3.0.0_beta5.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit autotools linux-info python-any-r1
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-04-19  2:35 Craig Andrews
  0 siblings, 0 replies; 136+ messages in thread
From: Craig Andrews @ 2020-04-19  2:35 UTC (permalink / raw
  To: gentoo-commits

commit:     a9aa594bf16be50f146c60011e3bc46aa1befec0
Author:     neeshy <neeshy <AT> tfwno <DOT> gf>
AuthorDate: Wed Mar 25 19:36:52 2020 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 02:35:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9aa594b

sys-process/htop: add python3_8 target

Signed-off-by: Nima Sadeghi <neeshy <AT> tfwno.gf>
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 sys-process/htop/htop-2.2.0.ebuild       | 2 +-
 sys-process/htop/htop-3.0.0_beta5.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-2.2.0.ebuild b/sys-process/htop/htop-2.2.0.ebuild
index 1c934ca8ef2..fa7b79e33e2 100644
--- a/sys-process/htop/htop-2.2.0.ebuild
+++ b/sys-process/htop/htop-2.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit linux-info python-any-r1
 

diff --git a/sys-process/htop/htop-3.0.0_beta5.ebuild b/sys-process/htop/htop-3.0.0_beta5.ebuild
index 0f1a86bfd19..241e898507e 100644
--- a/sys-process/htop/htop-3.0.0_beta5.ebuild
+++ b/sys-process/htop/htop-3.0.0_beta5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit autotools linux-info python-any-r1
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-08-27 11:48 Thomas Deutschmann
  0 siblings, 0 replies; 136+ messages in thread
From: Thomas Deutschmann @ 2020-08-27 11:48 UTC (permalink / raw
  To: gentoo-commits

commit:     f8e2351e2fc6d869593ce5f1775526ec399270bf
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 27 11:47:08 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Aug 27 11:48:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e2351e

sys-process/htop: bump to v3.0.0

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.0.ebuild | 60 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 47f15a7d70f..9498c38b03f 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
+DIST htop-3.0.0.tar.gz 179371 BLAKE2B 7501d8277eb97e39f7a8e2e9191bdde97deca6f3240a3e497ce55e71b0659122223356d4ff03086f9303b82ea4de0fa4e7909baca6de063ac6b22d7b6530f9be SHA512 36dc37b416b9917005007448fe73fdd6475a3f7f8442a083923d3f5dfb706d0f1731255522a99b67cc547b239acb1c68b144f8d600e243eeba160b2a43e8339a
 DIST htop-3.0.0_beta5.tar.gz 175780 BLAKE2B f7d03485e74387c656e5a576f0a53c832bac668cee79750402335b2051a17d405392b99316f1546cc76fa83dc3bc85055ca58b928225df0e162ffdb9c1889a5f SHA512 eaa04a278257a1447cd60825083c864d3c23a4a5607447ce05356d550f42ff68a810f14bf91314b7266f9741aab8141d67d98316a31fa7806fb6b858cc804344

diff --git a/sys-process/htop/htop-3.0.0.ebuild b/sys-process/htop/htop-3.0.0.ebuild
new file mode 100644
index 00000000000..eacb7a88db2
--- /dev/null
+++ b/sys-process/htop/htop-3.0.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=()
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-09-03 11:11 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-09-03 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     f90f62d5bdeb56a8eefd90c5ba4e8f4cb62de831
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  3 11:09:29 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 11:11:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90f62d5

sys-process/htop: Bump to version 3.0.1

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.1.ebuild | 60 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index eb502eadccb..f982a8f1b04 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
 DIST htop-3.0.0.tar.gz 179371 BLAKE2B 7501d8277eb97e39f7a8e2e9191bdde97deca6f3240a3e497ce55e71b0659122223356d4ff03086f9303b82ea4de0fa4e7909baca6de063ac6b22d7b6530f9be SHA512 36dc37b416b9917005007448fe73fdd6475a3f7f8442a083923d3f5dfb706d0f1731255522a99b67cc547b239acb1c68b144f8d600e243eeba160b2a43e8339a
+DIST htop-3.0.1.tar.gz 179925 BLAKE2B d722bc49d7b546aec1359a5dc838e0f6cc4b17f8d2d2c59fd7fbeaf827233f658ea819f4c69832af5cfd4f836d3d66c223a9580037cf8d6d2ae28c6a6b3499b5 SHA512 0d6a1b0839a94f01429c85a459b0c6439051d1b6e69bf77c6b3bb31c81902a3127936ab9adc5bf1807f4b3d7b10a177a89fb9b883931f8dcf828ed06727d6945

diff --git a/sys-process/htop/htop-3.0.1.ebuild b/sys-process/htop/htop-3.0.1.ebuild
new file mode 100644
index 00000000000..eacb7a88db2
--- /dev/null
+++ b/sys-process/htop/htop-3.0.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=()
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-09-14  6:28 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-09-14  6:28 UTC (permalink / raw
  To: gentoo-commits

commit:     8020212794a0ede3330d2cb4781c2f2dadf962a2
Author:     Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Sat Aug 29 16:27:10 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Sep 14 06:28:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80202127

sys-process/htop: Add upstream

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/17316
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index b3278785fde..0101007448c 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -18,4 +18,7 @@ htop is an interactive process viewer for Linux. It aims to be a 'better top':
 you can scroll the process list vertically and horizontally, and select a
 process to be killed with the arrow keys instead of by typing its process id.
 	</longdescription>
+	<upstream>
+		<remote-id type="github">htop-dev/htop</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-09-15  9:45 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-09-15  9:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e0b71754dbf346564ee4c85a583d34b52fc460b2
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 15 09:45:35 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep 15 09:45:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b71754

sys-process/htop: Removed old

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 -
 sys-process/htop/htop-3.0.0.ebuild | 60 --------------------------------------
 2 files changed, 61 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index af4e1b9b778..07ecf183204 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1,3 @@
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
-DIST htop-3.0.0.tar.gz 179371 BLAKE2B 7501d8277eb97e39f7a8e2e9191bdde97deca6f3240a3e497ce55e71b0659122223356d4ff03086f9303b82ea4de0fa4e7909baca6de063ac6b22d7b6530f9be SHA512 36dc37b416b9917005007448fe73fdd6475a3f7f8442a083923d3f5dfb706d0f1731255522a99b67cc547b239acb1c68b144f8d600e243eeba160b2a43e8339a
 DIST htop-3.0.1.tar.gz 179925 BLAKE2B d722bc49d7b546aec1359a5dc838e0f6cc4b17f8d2d2c59fd7fbeaf827233f658ea819f4c69832af5cfd4f836d3d66c223a9580037cf8d6d2ae28c6a6b3499b5 SHA512 0d6a1b0839a94f01429c85a459b0c6439051d1b6e69bf77c6b3bb31c81902a3127936ab9adc5bf1807f4b3d7b10a177a89fb9b883931f8dcf828ed06727d6945
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868

diff --git a/sys-process/htop/htop-3.0.0.ebuild b/sys-process/htop/htop-3.0.0.ebuild
deleted file mode 100644
index eacb7a88db2..00000000000
--- a/sys-process/htop/htop-3.0.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools linux-info python-any-r1
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-PATCHES=()
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		# fails to build against recent hwloc versions
-		--disable-hwloc
-		--enable-taskstats
-		$(use_enable kernel_linux cgroup)
-		$(use_enable kernel_linux linux-affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-	econf ${myeconfargs[@]}
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-09-15  9:45 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-09-15  9:45 UTC (permalink / raw
  To: gentoo-commits

commit:     f01e946e5b383a8a8af139e11a3141b4d15b7079
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 15 09:45:00 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep 15 09:45:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f01e946e

sys-process/htop: Bump to version 3.0.2

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.2.ebuild | 60 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index f982a8f1b04..af4e1b9b778 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
 DIST htop-3.0.0.tar.gz 179371 BLAKE2B 7501d8277eb97e39f7a8e2e9191bdde97deca6f3240a3e497ce55e71b0659122223356d4ff03086f9303b82ea4de0fa4e7909baca6de063ac6b22d7b6530f9be SHA512 36dc37b416b9917005007448fe73fdd6475a3f7f8442a083923d3f5dfb706d0f1731255522a99b67cc547b239acb1c68b144f8d600e243eeba160b2a43e8339a
 DIST htop-3.0.1.tar.gz 179925 BLAKE2B d722bc49d7b546aec1359a5dc838e0f6cc4b17f8d2d2c59fd7fbeaf827233f658ea819f4c69832af5cfd4f836d3d66c223a9580037cf8d6d2ae28c6a6b3499b5 SHA512 0d6a1b0839a94f01429c85a459b0c6439051d1b6e69bf77c6b3bb31c81902a3127936ab9adc5bf1807f4b3d7b10a177a89fb9b883931f8dcf828ed06727d6945
+DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
new file mode 100644
index 00000000000..eacb7a88db2
--- /dev/null
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+PATCHES=()
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		# fails to build against recent hwloc versions
+		--disable-hwloc
+		--enable-taskstats
+		$(use_enable kernel_linux cgroup)
+		$(use_enable kernel_linux linux-affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-02  3:06 Thomas Deutschmann
  0 siblings, 0 replies; 136+ messages in thread
From: Thomas Deutschmann @ 2020-12-02  3:06 UTC (permalink / raw
  To: gentoo-commits

commit:     afe478dd16f38f44538cd4fa834bc6ad7e9c6b52
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  2 02:54:46 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 02:54:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe478dd

sys-process/htop: x86 stable (bug #757900)

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index eacb7a88db2..f9eb2022534 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-02 22:00 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2020-12-02 22:00 UTC (permalink / raw
  To: gentoo-commits

commit:     43c78e82b0ea8fc768086357db0e98a396b24ed7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  2 22:00:02 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 22:00:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c78e82

sys-process/htop: Stabilize 3.0.2 arm64, #757900

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index f9eb2022534..0e9b1a3ebfd 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-02 22:39 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2020-12-02 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c420923f1d4550acbe898332a385de9bc74b5462
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Dec  2 22:35:20 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 22:39:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c420923f

sys-process/htop: stable 3.0.2 for sparc, bug #757900

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index 0e9b1a3ebfd..ef0055c0c85 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-03  4:23 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2020-12-03  4:23 UTC (permalink / raw
  To: gentoo-commits

commit:     739e3e068c06625285f1e3a360f143549fde7d01
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 04:23:03 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 04:23:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739e3e06

sys-process/htop: Stabilize 3.0.2 arm, #757900

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index ef0055c0c85..00dce57c1e6 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-04 18:37 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2020-12-04 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     feffd22c25b489e8e4511ed2deeeb5fe3d05c41c
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  4 18:34:55 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Dec  4 18:37:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feffd22c

sys-process/htop: stable 3.0.2 for ppc64

stable wrt bug #757900

Package-Manager: Portage-3.0.11, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index 15f59bad85f..a9fd130d98b 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-07 13:18 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-12-07 13:18 UTC (permalink / raw
  To: gentoo-commits

commit:     b0efddd253a0d9b1c4afded40fa8ad38c29a63f4
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  7 13:15:49 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Dec  7 13:18:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0efddd2

sys-process/htop: Bump to version 3.0.3

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.3.ebuild | 67 ++++++++++++++++++++++++++++++++++++++
 sys-process/htop/metadata.xml      |  1 +
 3 files changed, 69 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 07ecf183204..c6eae48c37a 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecceb35828812cb375d919de51f401ffe59fffdfc83a72c8dace879c5d5a0e857511c20e2126d11cdc4101b0b SHA512 ec1335bf0e3e0387e5e50acbc508d0effad19c4bc1ac312419dc97b82901f4819600d6f87a91668f39d429536d17304d4b14634426a06bec2ecd09df24adc62e
 DIST htop-3.0.1.tar.gz 179925 BLAKE2B d722bc49d7b546aec1359a5dc838e0f6cc4b17f8d2d2c59fd7fbeaf827233f658ea819f4c69832af5cfd4f836d3d66c223a9580037cf8d6d2ae28c6a6b3499b5 SHA512 0d6a1b0839a94f01429c85a459b0c6439051d1b6e69bf77c6b3bb31c81902a3127936ab9adc5bf1807f4b3d7b10a177a89fb9b883931f8dcf828ed06727d6945
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868
+DIST htop-3.0.3.tar.gz 292925 BLAKE2B 7e227188e3954c0cb273b4bc95eaf2e11237daca3d929d4674dcdfc987c4af26e4b08da2b0f184d6d3e06952dee5704e468bf4b7bc03dfa0b6602c058beac495 SHA512 208eff95a0df3ab38f5e3175bb34420c8833ad630c797825a3fb188a1111476a3287aa5f53511c83da90d181afc3e6ea246ea01fbc3227466c5c928a5d70badc

diff --git a/sys-process/htop/htop-3.0.3.ebuild b/sys-process/htop/htop-3.0.3.ebuild
new file mode 100644
index 00000000000..3e1ec19ce2e
--- /dev/null
+++ b/sys-process/htop/htop-3.0.3.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]
+	hwloc? ( sys-apps/hwloc )
+	lm-sensors? ( sys-apps/lm-sensors )"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+		$(use_with lm-sensors sensors)
+	)
+
+	if ! use hwloc && use kernel_linux ; then
+		myeconfargs+=( --enable-linux-affinity )
+	else
+		myeconfargs+=( --disable-linux-affinity )
+	fi
+
+	econf ${myeconfargs[@]}
+}

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index 0101007448c..ffeb3655365 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -10,6 +10,7 @@
 		<name>Lars Wendler</name>
 	</maintainer>
 	<use>
+		<flag name="hwloc">Use <pkg>sys-apps/hwloc</pkg> for CPU affinity support</flag>
 		<flag name="openvz">Enable openvz support</flag>
 		<flag name="vserver">Enable vserver support</flag>
 	</use>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-13  0:31 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2020-12-13  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     c7bce2429ef6cd94f7f7d425b72b25035cdc950e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 00:31:20 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 00:31:20 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7bce242

sys-process/htop: Keyword 3.0.3 for s390

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.3.ebuild b/sys-process/htop/htop-3.0.3.ebuild
index 32795d9586e..2dae7a50f93 100644
--- a/sys-process/htop/htop-3.0.3.ebuild
+++ b/sys-process/htop/htop-3.0.3.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-15 10:30 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2020-12-15 10:30 UTC (permalink / raw
  To: gentoo-commits

commit:     3be583d275ecfb4c64055661370aaf0db9f58128
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 10:21:47 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 10:30:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be583d2

sys-process/htop: Stabilize 3.0.2 amd64, #757900

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index 9a0da288eaf..334cec5e4ec 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-21  9:36 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2020-12-21  9:36 UTC (permalink / raw
  To: gentoo-commits

commit:     4df0dcff7ce931ca55e1d683fcd75d0b65a909df
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 09:35:42 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 09:36:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df0dcff

sys-process/htop: stable 3.0.2 for hppa

stable wrt bug #757900

Package-Manager: Portage-3.0.12, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-process/htop/htop-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2.ebuild
index 334cec5e4ec..e046b0cceb6 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2020-12-22 11:43 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2020-12-22 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     ed296e50ca2282b06ff280d62a876239f1a46a09
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 22 11:42:23 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Dec 22 11:43:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed296e50

sys-process/htop: Bump to version 3.0.4

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.4.ebuild | 67 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index c6eae48c37a..bb6f3155610 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -2,3 +2,4 @@ DIST htop-2.2.0.tar.gz 308109 BLAKE2B 323a3bfe5032b6d59a3f751831a2af6aa7ae7e9ecc
 DIST htop-3.0.1.tar.gz 179925 BLAKE2B d722bc49d7b546aec1359a5dc838e0f6cc4b17f8d2d2c59fd7fbeaf827233f658ea819f4c69832af5cfd4f836d3d66c223a9580037cf8d6d2ae28c6a6b3499b5 SHA512 0d6a1b0839a94f01429c85a459b0c6439051d1b6e69bf77c6b3bb31c81902a3127936ab9adc5bf1807f4b3d7b10a177a89fb9b883931f8dcf828ed06727d6945
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868
 DIST htop-3.0.3.tar.gz 292925 BLAKE2B 7e227188e3954c0cb273b4bc95eaf2e11237daca3d929d4674dcdfc987c4af26e4b08da2b0f184d6d3e06952dee5704e468bf4b7bc03dfa0b6602c058beac495 SHA512 208eff95a0df3ab38f5e3175bb34420c8833ad630c797825a3fb188a1111476a3287aa5f53511c83da90d181afc3e6ea246ea01fbc3227466c5c928a5d70badc
+DIST htop-3.0.4.tar.gz 296224 BLAKE2B b8fc4fe7c595f0a22b253f1eeea24d571c87401a426b8f6dba0ce15d98ea77ca94bc286428386cbf478f0e7ea4afde0e86e5e6b93bb88af616ba474e45e745f5 SHA512 d57e4fd326791bd2306f4a6ce2c4f4bf0499a0050efbaeb71a211148fa52993f707d8afdf0292dc26234cffdcba84a97e1d4422bc61aec40ba3ef9ebd91ebf6c

diff --git a/sys-process/htop/htop-3.0.4.ebuild b/sys-process/htop/htop-3.0.4.ebuild
new file mode 100644
index 00000000000..1e6c67cacd0
--- /dev/null
+++ b/sys-process/htop/htop-3.0.4.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]
+	hwloc? ( sys-apps/hwloc )
+	lm-sensors? ( sys-apps/lm-sensors )"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+		$(use_with lm-sensors sensors)
+	)
+
+	if ! use hwloc && use kernel_linux ; then
+		myeconfargs+=( --enable-linux-affinity )
+	else
+		myeconfargs+=( --disable-linux-affinity )
+	fi
+
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-01-11 19:56 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-01-11 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ddaec2dbde28928e1a0b75782340dc57df8174c6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 11 19:53:52 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan 11 19:56:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddaec2db

sys-process/htop: Bump to version 3.0.5

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.0.5.ebuild | 67 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index b1210f530c5..ef65cf7f6a2 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868
 DIST htop-3.0.3.tar.gz 292925 BLAKE2B 7e227188e3954c0cb273b4bc95eaf2e11237daca3d929d4674dcdfc987c4af26e4b08da2b0f184d6d3e06952dee5704e468bf4b7bc03dfa0b6602c058beac495 SHA512 208eff95a0df3ab38f5e3175bb34420c8833ad630c797825a3fb188a1111476a3287aa5f53511c83da90d181afc3e6ea246ea01fbc3227466c5c928a5d70badc
 DIST htop-3.0.4.tar.gz 296224 BLAKE2B b8fc4fe7c595f0a22b253f1eeea24d571c87401a426b8f6dba0ce15d98ea77ca94bc286428386cbf478f0e7ea4afde0e86e5e6b93bb88af616ba474e45e745f5 SHA512 d57e4fd326791bd2306f4a6ce2c4f4bf0499a0050efbaeb71a211148fa52993f707d8afdf0292dc26234cffdcba84a97e1d4422bc61aec40ba3ef9ebd91ebf6c
+DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
new file mode 100644
index 00000000000..5ccdc9a85b0
--- /dev/null
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit autotools linux-info python-any-r1
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="sys-libs/ncurses:0=[unicode?]
+	hwloc? ( sys-apps/hwloc )
+	lm-sensors? ( sys-apps/lm-sensors )"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+		$(use_with lm-sensors sensors)
+	)
+
+	if ! use hwloc && use kernel_linux ; then
+		myeconfargs+=( --enable-linux-affinity )
+	else
+		myeconfargs+=( --disable-linux-affinity )
+	fi
+
+	econf ${myeconfargs[@]}
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-01-11 19:56 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-01-11 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     e305b34b0710008b5d70d0a0db8ee95de3ec9712
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 11 19:56:14 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan 11 19:56:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e305b34b

sys-process/htop: Removed old

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 -
 sys-process/htop/htop-3.0.3.ebuild | 71 --------------------------------------
 2 files changed, 72 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index ef65cf7f6a2..d47148de742 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1,3 @@
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868
-DIST htop-3.0.3.tar.gz 292925 BLAKE2B 7e227188e3954c0cb273b4bc95eaf2e11237daca3d929d4674dcdfc987c4af26e4b08da2b0f184d6d3e06952dee5704e468bf4b7bc03dfa0b6602c058beac495 SHA512 208eff95a0df3ab38f5e3175bb34420c8833ad630c797825a3fb188a1111476a3287aa5f53511c83da90d181afc3e6ea246ea01fbc3227466c5c928a5d70badc
 DIST htop-3.0.4.tar.gz 296224 BLAKE2B b8fc4fe7c595f0a22b253f1eeea24d571c87401a426b8f6dba0ce15d98ea77ca94bc286428386cbf478f0e7ea4afde0e86e5e6b93bb88af616ba474e45e745f5 SHA512 d57e4fd326791bd2306f4a6ce2c4f4bf0499a0050efbaeb71a211148fa52993f707d8afdf0292dc26234cffdcba84a97e1d4422bc61aec40ba3ef9ebd91ebf6c
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f

diff --git a/sys-process/htop/htop-3.0.3.ebuild b/sys-process/htop/htop-3.0.3.ebuild
deleted file mode 100644
index 2dae7a50f93..00000000000
--- a/sys-process/htop/htop-3.0.3.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit autotools linux-info python-any-r1
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]
-	hwloc? ( sys-apps/hwloc )
-	lm-sensors? ( sys-apps/lm-sensors )"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-3.0.3-tinfo.patch" #690840
-)
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-		$(use_with lm-sensors sensors)
-	)
-
-	if ! use hwloc && use kernel_linux ; then
-		myeconfargs+=( --enable-linux-affinity )
-	else
-		myeconfargs+=( --disable-linux-affinity )
-	fi
-
-	econf ${myeconfargs[@]}
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-04-29 14:19 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-04-29 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     40be10ad376a1a384bf3a714223fe5e7e3df5b32
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 06:44:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 14:19:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40be10ad

sys-process/htop: Stabilize 3.0.5 x86, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index e6fb069934b..0cac4c6d04a 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-04-29 14:19 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-04-29 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     5a7367170d06c0add20a4590edd37254e78f52e5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 06:43:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 14:18:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a736717

sys-process/htop: Stabilize 3.0.5 amd64, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index a9db7d33921..e6fb069934b 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-04-30 15:59 Sergei Trofimovich
  0 siblings, 0 replies; 136+ messages in thread
From: Sergei Trofimovich @ 2021-04-30 15:59 UTC (permalink / raw
  To: gentoo-commits

commit:     2dccdfc0fce12db1dbd24e9546554ee7e29e5316
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Apr 30 15:16:02 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 15:59:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dccdfc0

sys-process/htop: stable 3.0.5 for sparc, bug #786696

Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index 0cac4c6d04a..0d84733bb61 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-04-30 23:37 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-04-30 23:37 UTC (permalink / raw
  To: gentoo-commits

commit:     a4ff864f250fa2125378e35fe17efd3008963bc5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 23:36:14 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 23:36:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ff864f

sys-process/htop: Stabilize 3.0.5 ppc, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index 0d84733bb61..53608cea31a 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-04-30 23:39 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-04-30 23:39 UTC (permalink / raw
  To: gentoo-commits

commit:     3b8acd7dbe1e0a8b40513daf4b9f0da0edc1a9bc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 23:38:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 23:38:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8acd7d

sys-process/htop: Stabilize 3.0.5 ppc64, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index 53608cea31a..1483e662ed6 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-05-01 14:06 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-05-01 14:06 UTC (permalink / raw
  To: gentoo-commits

commit:     c3ae7044cc3bc5f14a62b5b3f9ff5d8be6131273
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May  1 14:06:00 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May  1 14:06:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ae7044

sys-process/htop: Stabilize 3.0.5 arm64, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index 1483e662ed6..9c64bee62ec 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-05-04 19:13 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-05-04 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     d65d18def19679cae4c4b0f23abceb6c0eef7182
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May  4 19:12:57 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May  4 19:12:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65d18de

sys-process/htop: Stabilize 3.0.5 arm, #786696

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5.ebuild
index 9c64bee62ec..29f65efb9cb 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-07-17 21:30 David Seifert
  0 siblings, 0 replies; 136+ messages in thread
From: David Seifert @ 2021-07-17 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     34786de22b82d4bbbb7367891a4e08522fa84a01
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 17 21:30:42 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul 17 21:30:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34786de2

sys-process/htop: Add sys-libs/ncurses[unicode(+)]

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sys-process/htop/{htop-3.0.2.ebuild => htop-3.0.2-r1.ebuild}    | 4 ++--
 sys-process/htop/{htop-3.0.4-r1.ebuild => htop-3.0.4-r2.ebuild} | 4 ++--
 sys-process/htop/{htop-3.0.5.ebuild => htop-3.0.5-r1.ebuild}    | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-process/htop/htop-3.0.2.ebuild b/sys-process/htop/htop-3.0.2-r1.ebuild
similarity index 94%
rename from sys-process/htop/htop-3.0.2.ebuild
rename to sys-process/htop/htop-3.0.2-r1.ebuild
index 0abdd148291..183f2f04fbc 100644
--- a/sys-process/htop/htop-3.0.2.ebuild
+++ b/sys-process/htop/htop-3.0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ SLOT="0"
 IUSE="kernel_FreeBSD kernel_linux openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]"
+RDEPEND="sys-libs/ncurses:=[unicode(+)?]"
 DEPEND="${RDEPEND}
 	${PYTHON_DEPS}"
 

diff --git a/sys-process/htop/htop-3.0.4-r1.ebuild b/sys-process/htop/htop-3.0.4-r2.ebuild
similarity index 95%
rename from sys-process/htop/htop-3.0.4-r1.ebuild
rename to sys-process/htop/htop-3.0.4-r2.ebuild
index 6c51dac3651..8ce3e79b56e 100644
--- a/sys-process/htop/htop-3.0.4-r1.ebuild
+++ b/sys-process/htop/htop-3.0.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ SLOT="0"
 IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]
+RDEPEND="sys-libs/ncurses:=[unicode(+)?]
 	hwloc? ( sys-apps/hwloc )
 	lm-sensors? ( sys-apps/lm-sensors )"
 DEPEND="${RDEPEND}

diff --git a/sys-process/htop/htop-3.0.5.ebuild b/sys-process/htop/htop-3.0.5-r1.ebuild
similarity index 97%
rename from sys-process/htop/htop-3.0.5.ebuild
rename to sys-process/htop/htop-3.0.5-r1.ebuild
index 29f65efb9cb..61702bf269c 100644
--- a/sys-process/htop/htop-3.0.5.ebuild
+++ b/sys-process/htop/htop-3.0.5-r1.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:0=[unicode?]
+RDEPEND="sys-libs/ncurses:=[unicode(+)?]
 	hwloc? ( sys-apps/hwloc )
 	lm-sensors? ( sys-apps/lm-sensors )"
 DEPEND="${RDEPEND}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-08-11  2:05 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-08-11  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     795a50c8b29f5433e22b873c1af9cdb07987b079
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 01:31:14 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 02:05:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795a50c8

sys-process/htop: [QA] fix named variable style

See https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0101.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.2-r1.ebuild | 2 +-
 sys-process/htop/htop-3.0.4-r2.ebuild | 2 +-
 sys-process/htop/htop-3.0.5-r1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-3.0.2-r1.ebuild b/sys-process/htop/htop-3.0.2-r1.ebuild
index 183f2f04fbc..13b5c03ad25 100644
--- a/sys-process/htop/htop-3.0.2-r1.ebuild
+++ b/sys-process/htop/htop-3.0.2-r1.ebuild
@@ -46,7 +46,7 @@ src_prepare() {
 }
 
 src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
 
 	local myeconfargs=(
 		# fails to build against recent hwloc versions

diff --git a/sys-process/htop/htop-3.0.4-r2.ebuild b/sys-process/htop/htop-3.0.4-r2.ebuild
index 8ce3e79b56e..65e53029fa2 100644
--- a/sys-process/htop/htop-3.0.4-r2.ebuild
+++ b/sys-process/htop/htop-3.0.4-r2.ebuild
@@ -50,7 +50,7 @@ src_prepare() {
 }
 
 src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
 
 	local myeconfargs=(
 		$(use_enable debug)

diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild b/sys-process/htop/htop-3.0.5-r1.ebuild
index 61702bf269c..82648c71eff 100644
--- a/sys-process/htop/htop-3.0.5-r1.ebuild
+++ b/sys-process/htop/htop-3.0.5-r1.ebuild
@@ -46,7 +46,7 @@ src_prepare() {
 }
 
 src_configure() {
-	[[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
 
 	local myeconfargs=(
 		$(use_enable debug)


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-08-11  2:05 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-08-11  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     1bf94ee45ca93a214be3fa2dda29b1d9fd90e0a9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 01:58:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 02:05:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf94ee4

sys-process/htop: [QA] update caches

We can use xdg-utils unconditionally given it
doesn't introduce a dependency.

(When a package needing xdg-utils is installed,
it'll update all the caches for us.)

Closes: https://bugs.gentoo.org/787470
Thanks-to: Ionen Wolkens <ionen <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5-r1.ebuild | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild b/sys-process/htop/htop-3.0.5-r1.ebuild
index 82648c71eff..ef78ad9c82a 100644
--- a/sys-process/htop/htop-3.0.5-r1.ebuild
+++ b/sys-process/htop/htop-3.0.5-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit autotools linux-info python-any-r1
+inherit autotools linux-info python-any-r1 xdg-utils
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
@@ -65,3 +65,13 @@ src_configure() {
 
 	econf ${myeconfargs[@]}
 }
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-08-29 14:31 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-08-29 14:31 UTC (permalink / raw
  To: gentoo-commits

commit:     70947851910068f090d2e4334bdf461a8e45edd1
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 29 14:29:30 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Aug 29 14:31:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70947851

sys-process/htop: Bump to version 3.1.0_rc1

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest              |  1 +
 sys-process/htop/htop-3.1.0_rc1.ebuild | 92 ++++++++++++++++++++++++++++++++++
 sys-process/htop/metadata.xml          |  1 +
 3 files changed, 94 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index d47148de742..dc292c95277 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-3.0.2.tar.gz 176132 BLAKE2B 9abc28461d346eeac7f9741bc1ba08c898d00be013abce972be4370b9b35d92661fcb4521fa715bc779c1c9b56bc3c0eeb5375c0df8ec7585df3774ac67ca504 SHA512 5b578972e40e3229aa8b2bdc931c4c8bceaafd2a150b02e0257ab35a4fbac25852e959ecc472bd6747be57ea8734b59cc4b872a5ac829624cc80e1722c54d868
 DIST htop-3.0.4.tar.gz 296224 BLAKE2B b8fc4fe7c595f0a22b253f1eeea24d571c87401a426b8f6dba0ce15d98ea77ca94bc286428386cbf478f0e7ea4afde0e86e5e6b93bb88af616ba474e45e745f5 SHA512 d57e4fd326791bd2306f4a6ce2c4f4bf0499a0050efbaeb71a211148fa52993f707d8afdf0292dc26234cffdcba84a97e1d4422bc61aec40ba3ef9ebd91ebf6c
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
+DIST htop-3.1.0_rc1.tar.gz 378045 BLAKE2B 65d5f2bdb6e41fb0a4edd76c62a36e951bd86a67ebb9908ca712b2ee7b5f9714c3fe5cd4193885b869b96dcd73bbf945ab22fcd31aa11d90598f9d9953ed4b0e SHA512 f917dbb8ba0de1a9f703423c13cec19f0f69da765df320739eeabf0e928495ec70cdd8eb0cca2871226cd6b472a713ee5ebc43aefa02b2ffbd6c29b1208f5cad

diff --git a/sys-process/htop/htop-3.1.0_rc1.ebuild b/sys-process/htop/htop-3.1.0_rc1.ebuild
new file mode 100644
index 00000000000..97f75eb53fe
--- /dev/null
+++ b/sys-process/htop/htop-3.1.0_rc1.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit autotools linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc )
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index ffeb3655365..a2e53594d43 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -10,6 +10,7 @@
 		<name>Lars Wendler</name>
 	</maintainer>
 	<use>
+		<flag name="delayacct">Enable Linux delay accounting support via <pkg>dev-libs/libnl</pkg></flag>
 		<flag name="hwloc">Use <pkg>sys-apps/hwloc</pkg> for CPU affinity support</flag>
 		<flag name="openvz">Enable openvz support</flag>
 		<flag name="vserver">Enable vserver support</flag>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-09-05 20:58 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-09-05 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     cd4d45ec421074c7071eb3cef29580adf19e1592
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  5 20:57:44 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  5 20:58:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4d45ec

sys-process/htop: disable affinity on Darwin

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.1.0_rc1.ebuild | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sys-process/htop/htop-3.1.0_rc1.ebuild b/sys-process/htop/htop-3.1.0_rc1.ebuild
index 97f75eb53fe..2429313e1be 100644
--- a/sys-process/htop/htop-3.1.0_rc1.ebuild
+++ b/sys-process/htop/htop-3.1.0_rc1.ebuild
@@ -71,6 +71,13 @@ src_configure() {
 			$(use_enable lm-sensors sensors)
 		)
 	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
 		myeconfargs+=(
 			--disable-capabilities
 			--disable-delayacct


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-09-06  6:07 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-09-06  6:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ffb5989dc274872f53a6235f7e4d4ba75c015ba6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 06:06:49 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 06:07:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb5989d

sys-process/htop: Bump to version 3.1.0_rc2. Removed old

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest                                         | 2 +-
 sys-process/htop/{htop-3.1.0_rc1.ebuild => htop-3.1.0_rc2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 847ac7b4faa..faa23d0ef97 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,2 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
-DIST htop-3.1.0_rc1.tar.gz 378045 BLAKE2B 65d5f2bdb6e41fb0a4edd76c62a36e951bd86a67ebb9908ca712b2ee7b5f9714c3fe5cd4193885b869b96dcd73bbf945ab22fcd31aa11d90598f9d9953ed4b0e SHA512 f917dbb8ba0de1a9f703423c13cec19f0f69da765df320739eeabf0e928495ec70cdd8eb0cca2871226cd6b472a713ee5ebc43aefa02b2ffbd6c29b1208f5cad
+DIST htop-3.1.0_rc2.tar.gz 378563 BLAKE2B b619978dafe2d149ca5b321ab66c7416f09f1d64ac48fb9254b93b2428e54678ca96fdb0a02a7f09acb8352c8bd0ee81e94cc5ef64ddaad409097878de44856e SHA512 2f6e849ead0d29e31334e47fefacf56f242c0d1b6543bae4b2aca68ef56f58b6d3a96159faf5fe254b8af6665fad6c693145a62aaf5d73b5514258c9b444519f

diff --git a/sys-process/htop/htop-3.1.0_rc1.ebuild b/sys-process/htop/htop-3.1.0_rc2.ebuild
similarity index 100%
rename from sys-process/htop/htop-3.1.0_rc1.ebuild
rename to sys-process/htop/htop-3.1.0_rc2.ebuild


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-09-21  7:13 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-09-21  7:13 UTC (permalink / raw
  To: gentoo-commits

commit:     0b2ae75f591c2bdabcf3b27d7f5ff83fd71b0568
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 21 07:12:53 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep 21 07:13:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2ae75f

sys-process/htop: Bump to version 3.1.0. Removed old

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest                                     | 2 +-
 sys-process/htop/{htop-3.1.0_rc2.ebuild => htop-3.1.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index faa23d0ef97..98489952d89 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,2 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
-DIST htop-3.1.0_rc2.tar.gz 378563 BLAKE2B b619978dafe2d149ca5b321ab66c7416f09f1d64ac48fb9254b93b2428e54678ca96fdb0a02a7f09acb8352c8bd0ee81e94cc5ef64ddaad409097878de44856e SHA512 2f6e849ead0d29e31334e47fefacf56f242c0d1b6543bae4b2aca68ef56f58b6d3a96159faf5fe254b8af6665fad6c693145a62aaf5d73b5514258c9b444519f
+DIST htop-3.1.0.tar.gz 378838 BLAKE2B c5b09f714c27879c0f3fe0d7233d1eacb979ceb76007ee0c2720bce5d08f84d0e6b9e3747c57fca11f2354909285365749d57d597911641fdb6dd834bec23166 SHA512 bb4422591a61978d1cc5b423413820c14cc571c4660087387949f1071609da38e42be2be8485863cb19b0b957d1fdeb5b2df46212d9ddd3891871b1c9d276c6e

diff --git a/sys-process/htop/htop-3.1.0_rc2.ebuild b/sys-process/htop/htop-3.1.0.ebuild
similarity index 100%
rename from sys-process/htop/htop-3.1.0_rc2.ebuild
rename to sys-process/htop/htop-3.1.0.ebuild


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-10-14 23:22 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-10-14 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     4f2d1fa464be3df654d0ed470098c61edd2ab19a
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 14 23:13:59 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Oct 14 23:21:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2d1fa4

sys-process/htop: Bump to version 3.1.1

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.1.1.ebuild | 99 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 98489952d89..bb327552d13 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
 DIST htop-3.1.0.tar.gz 378838 BLAKE2B c5b09f714c27879c0f3fe0d7233d1eacb979ceb76007ee0c2720bce5d08f84d0e6b9e3747c57fca11f2354909285365749d57d597911641fdb6dd834bec23166 SHA512 bb4422591a61978d1cc5b423413820c14cc571c4660087387949f1071609da38e42be2be8485863cb19b0b957d1fdeb5b2df46212d9ddd3891871b1c9d276c6e
+DIST htop-3.1.1.tar.gz 381277 BLAKE2B 4383991e8821e4c27a4f5cb002b198fa7915465c03d9fb83324fa2df732d8553be4061c2c559b92de934b0c214bb4445b068795050e1bee2afb803d7f32b9a67 SHA512 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d

diff --git a/sys-process/htop/htop-3.1.1.ebuild b/sys-process/htop/htop-3.1.1.ebuild
new file mode 100644
index 00000000000..ad00e02ff84
--- /dev/null
+++ b/sys-process/htop/htop-3.1.1.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc )
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-10-29 22:44 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-10-29 22:44 UTC (permalink / raw
  To: gentoo-commits

commit:     76a1850a1c03d7d173b6adcc1e7d315f4c1edd8c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 29 22:41:49 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 22:43:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a1850a

sys-process/htop: add hwloc subslot operator

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/{htop-3.0.5-r1.ebuild => htop-3.0.5-r2.ebuild} | 2 +-
 sys-process/htop/{htop-3.1.0.ebuild => htop-3.1.0-r1.ebuild}    | 2 +-
 sys-process/htop/{htop-3.1.1.ebuild => htop-3.1.1-r1.ebuild}    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild b/sys-process/htop/htop-3.0.5-r2.ebuild
similarity index 98%
rename from sys-process/htop/htop-3.0.5-r1.ebuild
rename to sys-process/htop/htop-3.0.5-r2.ebuild
index ef78ad9c82a..e2887ab6369 100644
--- a/sys-process/htop/htop-3.0.5-r1.ebuild
+++ b/sys-process/htop/htop-3.0.5-r2.ebuild
@@ -18,7 +18,7 @@ IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc )
+	hwloc? ( sys-apps/hwloc:= )
 	lm-sensors? ( sys-apps/lm-sensors )"
 DEPEND="${RDEPEND}
 	${PYTHON_DEPS}"

diff --git a/sys-process/htop/htop-3.1.0.ebuild b/sys-process/htop/htop-3.1.0-r1.ebuild
similarity index 98%
rename from sys-process/htop/htop-3.1.0.ebuild
rename to sys-process/htop/htop-3.1.0-r1.ebuild
index 2429313e1be..937e09730eb 100644
--- a/sys-process/htop/htop-3.1.0.ebuild
+++ b/sys-process/htop/htop-3.1.0-r1.ebuild
@@ -19,7 +19,7 @@ IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz u
 BDEPEND="virtual/pkgconfig"
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc )
+	hwloc? ( sys-apps/hwloc:= )
 	kernel_linux? (
 		caps? ( sys-libs/libcap )
 		delayacct? ( dev-libs/libnl:3 )

diff --git a/sys-process/htop/htop-3.1.1.ebuild b/sys-process/htop/htop-3.1.1-r1.ebuild
similarity index 98%
rename from sys-process/htop/htop-3.1.1.ebuild
rename to sys-process/htop/htop-3.1.1-r1.ebuild
index ad00e02ff84..c11394f6a76 100644
--- a/sys-process/htop/htop-3.1.1.ebuild
+++ b/sys-process/htop/htop-3.1.1-r1.ebuild
@@ -19,7 +19,7 @@ IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz u
 BDEPEND="virtual/pkgconfig"
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc )
+	hwloc? ( sys-apps/hwloc:= )
 	kernel_linux? (
 		caps? ( sys-libs/libcap )
 		delayacct? ( dev-libs/libnl:3 )


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-11-03 21:20 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2021-11-03 21:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fbe96349ecc9d69f3be510e2433385526376db1c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  3 21:20:15 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov  3 21:20:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe96349

sys-process/htop: Stabilize 3.0.5-r2 hppa, #820908

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5-r2.ebuild b/sys-process/htop/htop-3.0.5-r2.ebuild
index e2887ab6369..523b369d426 100644
--- a/sys-process/htop/htop-3.0.5-r2.ebuild
+++ b/sys-process/htop/htop-3.0.5-r2.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-11-30  7:10 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-11-30  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     b2fccfde787056a0d97554bdb8b2be88027c71f2
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 30 07:10:08 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Nov 30 07:10:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2fccfde

sys-process/htop: Bump to version 3.1.2

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |  1 +
 sys-process/htop/htop-3.1.2.ebuild | 99 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index bb327552d139..88d827d67ae3 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
 DIST htop-3.1.0.tar.gz 378838 BLAKE2B c5b09f714c27879c0f3fe0d7233d1eacb979ceb76007ee0c2720bce5d08f84d0e6b9e3747c57fca11f2354909285365749d57d597911641fdb6dd834bec23166 SHA512 bb4422591a61978d1cc5b423413820c14cc571c4660087387949f1071609da38e42be2be8485863cb19b0b957d1fdeb5b2df46212d9ddd3891871b1c9d276c6e
 DIST htop-3.1.1.tar.gz 381277 BLAKE2B 4383991e8821e4c27a4f5cb002b198fa7915465c03d9fb83324fa2df732d8553be4061c2c559b92de934b0c214bb4445b068795050e1bee2afb803d7f32b9a67 SHA512 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d
+DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700

diff --git a/sys-process/htop/htop-3.1.2.ebuild b/sys-process/htop/htop-3.1.2.ebuild
new file mode 100644
index 000000000000..c11394f6a76a
--- /dev/null
+++ b/sys-process/htop/htop-3.1.2.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc:= )
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-11-30  7:10 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2021-11-30  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     f2d81485b027cee8c9f58aab7295758a6fcae64d
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 30 07:10:28 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Nov 30 07:10:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d81485

sys-process/htop: Removed old

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest             |  1 -
 sys-process/htop/htop-3.1.0-r1.ebuild | 99 -----------------------------------
 2 files changed, 100 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 88d827d67ae3..48494e948695 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1,3 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
-DIST htop-3.1.0.tar.gz 378838 BLAKE2B c5b09f714c27879c0f3fe0d7233d1eacb979ceb76007ee0c2720bce5d08f84d0e6b9e3747c57fca11f2354909285365749d57d597911641fdb6dd834bec23166 SHA512 bb4422591a61978d1cc5b423413820c14cc571c4660087387949f1071609da38e42be2be8485863cb19b0b957d1fdeb5b2df46212d9ddd3891871b1c9d276c6e
 DIST htop-3.1.1.tar.gz 381277 BLAKE2B 4383991e8821e4c27a4f5cb002b198fa7915465c03d9fb83324fa2df732d8553be4061c2c559b92de934b0c214bb4445b068795050e1bee2afb803d7f32b9a67 SHA512 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d
 DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700

diff --git a/sys-process/htop/htop-3.1.0-r1.ebuild b/sys-process/htop/htop-3.1.0-r1.ebuild
deleted file mode 100644
index 937e09730eba..000000000000
--- a/sys-process/htop/htop-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2021-12-30 13:21 Christian Ruppert
  0 siblings, 0 replies; 136+ messages in thread
From: Christian Ruppert @ 2021-12-30 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     495a2f57099947fef83ae8e724877b9ffb4614c6
Author:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 30 13:14:17 2021 +0000
Commit:     Christian Ruppert <idl0r <AT> gentoo <DOT> org>
CommitDate: Thu Dec 30 13:21:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=495a2f57

sys-process/htop: Drop myself as maintainer

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Christian Ruppert <idl0r <AT> gentoo.org>

 sys-process/htop/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index eda531025d7c..ab974da74e08 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>idl0r@gentoo.org</email>
-		<name>Christian Ruppert</name>
-	</maintainer>
 	<maintainer type="person">
 		<email>polynomial-c@gentoo.org</email>
 		<name>Lars Wendler</name>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-04  3:29 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-01-04  3:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e52d87d86577b8e167ef009efc0c1215dbe96aa8
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  3 16:09:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan  4 03:29:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52d87d8

sys-process/htop: remove kernel_FreeBSD

Signed-off-by: David Seifert <soap <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.0.5-r2.ebuild | 4 ++--
 sys-process/htop/htop-3.1.1-r1.ebuild | 4 ++--
 sys-process/htop/htop-3.1.2-r1.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-process/htop/htop-3.0.5-r2.ebuild b/sys-process/htop/htop-3.0.5-r2.ebuild
index 523b369d4265..b2034687cdd8 100644
--- a/sys-process/htop/htop-3.0.5-r2.ebuild
+++ b/sys-process/htop/htop-3.0.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-IUSE="debug hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+IUSE="debug hwloc kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="sys-libs/ncurses:=[unicode(+)?]

diff --git a/sys-process/htop/htop-3.1.1-r1.ebuild b/sys-process/htop/htop-3.1.1-r1.ebuild
index c11394f6a76a..5f2ec5816c20 100644
--- a/sys-process/htop/htop-3.1.1-r1.ebuild
+++ b/sys-process/htop/htop-3.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors openvz unicode vserver"
+IUSE="caps debug delayacct hwloc kernel_linux lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index 138f07eb7bd5..1e51312a3825 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_FreeBSD kernel_linux lm-sensors llvm-libunwind openvz unicode unwind vserver"
+IUSE="caps debug delayacct hwloc kernel_linux lm-sensors llvm-libunwind openvz unicode unwind vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-04 10:30 David Seifert
  0 siblings, 0 replies; 136+ messages in thread
From: David Seifert @ 2022-01-04 10:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4f6348a4d7a4b9da582cbdd02a5ffc75fb4cc6b7
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  4 10:30:04 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jan  4 10:30:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f6348a4

sys-process/htop: remove implicit kernel_linux

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sys-process/htop/htop-3.0.5-r2.ebuild | 2 +-
 sys-process/htop/htop-3.1.1-r1.ebuild | 2 +-
 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-3.0.5-r2.ebuild b/sys-process/htop/htop-3.0.5-r2.ebuild
index b2034687cdd8..6249887e7d60 100644
--- a/sys-process/htop/htop-3.0.5-r2.ebuild
+++ b/sys-process/htop/htop-3.0.5-r2.ebuild
@@ -14,7 +14,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-IUSE="debug hwloc kernel_linux lm-sensors openvz unicode vserver"
+IUSE="debug hwloc lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="sys-libs/ncurses:=[unicode(+)?]

diff --git a/sys-process/htop/htop-3.1.1-r1.ebuild b/sys-process/htop/htop-3.1.1-r1.ebuild
index 5f2ec5816c20..807d51af35fe 100644
--- a/sys-process/htop/htop-3.1.1-r1.ebuild
+++ b/sys-process/htop/htop-3.1.1-r1.ebuild
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_linux lm-sensors openvz unicode vserver"
+IUSE="caps debug delayacct hwloc lm-sensors openvz unicode vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index 1e51312a3825..8b750067a145 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -14,7 +14,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-IUSE="caps debug delayacct hwloc kernel_linux lm-sensors llvm-libunwind openvz unicode unwind vserver"
+IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14  9:45 Jakov Smolić
  0 siblings, 0 replies; 136+ messages in thread
From: Jakov Smolić @ 2022-01-14  9:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b2526faa2f3744f3e13623d05a1ba781e1958c1e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 09:45:28 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 09:45:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2526faa

sys-process/htop: Stabilize 3.1.2-r1 x86, #831174

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index 7f1cb210e9b9..d537b0de553b 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14  9:45 Jakov Smolić
  0 siblings, 0 replies; 136+ messages in thread
From: Jakov Smolić @ 2022-01-14  9:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e20511a5b4bc3e354eec49dfea0af10cfb9fa2ab
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 09:45:16 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 09:45:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20511a5

sys-process/htop: Stabilize 3.1.2-r1 amd64, #831174

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index 8b750067a145..7f1cb210e9b9 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 10:47 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-01-14 10:47 UTC (permalink / raw
  To: gentoo-commits

commit:     a7df27541562e37692507dd8883c9052366040b3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 10:47:39 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 10:47:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7df2754

sys-process/htop: Stabilize 3.1.2-r1 arm, #831174

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index d537b0de553b..296878083679 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 13:23 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-01-14 13:23 UTC (permalink / raw
  To: gentoo-commits

commit:     6d12865e21a7f6103a4451a382e1e41d412c5372
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 13:23:14 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 13:23:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d12865e

sys-process/htop: Stabilize 3.1.2-r1 ppc, #831174

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index 296878083679..a711ffcac9e8 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 13:25 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-01-14 13:25 UTC (permalink / raw
  To: gentoo-commits

commit:     63bbb84216ab80f22cc63c6c1227edf93f392007
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 13:24:43 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 13:24:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63bbb842

sys-process/htop: Stabilize 3.1.2-r1 sparc, #831174

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index a711ffcac9e8..f2346f6123d7 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 13:55 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-01-14 13:55 UTC (permalink / raw
  To: gentoo-commits

commit:     a750f4309c3cb568f8a04d917a4089cbadc2fab7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 13:55:13 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 13:55:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a750f430

sys-process/htop: Stabilize 3.1.2-r1 ppc64, #831174

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index f2346f6123d7..f37e336a9622 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 14:41 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-01-14 14:41 UTC (permalink / raw
  To: gentoo-commits

commit:     9149089dbf51591936a4ed08f4e27b5e5c0e6bc5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 14:41:26 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 14:41:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9149089d

sys-process/htop: Stabilize 3.1.2-r1 hppa, #831174

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index f37e336a9622..c06f514ff9e5 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-01-14 14:45 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-01-14 14:45 UTC (permalink / raw
  To: gentoo-commits

commit:     ac2099c1148adc2989e2dc28b4e6e1a3bc430264
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 14:45:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 14:45:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac2099c1

sys-process/htop: Stabilize 3.1.2-r1 arm64, #831174

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.1.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
index c06f514ff9e5..e390c41f80e9 100644
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ b/sys-process/htop/htop-3.1.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-05-02  7:07 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2022-05-02  7:07 UTC (permalink / raw
  To: gentoo-commits

commit:     8e81a3a72fa3c6dc0043bbb3cdbd54ed66f13bbe
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 07:04:01 2022 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon May  2 07:07:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e81a3a7

sys-process/htop: Removed old

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest             |  2 -
 sys-process/htop/htop-3.0.5-r2.ebuild | 77 ---------------------------
 sys-process/htop/htop-3.1.1-r1.ebuild | 99 -----------------------------------
 3 files changed, 178 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 1e8c23f8a542..a321ed370318 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1,2 @@
-DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
-DIST htop-3.1.1.tar.gz 381277 BLAKE2B 4383991e8821e4c27a4f5cb002b198fa7915465c03d9fb83324fa2df732d8553be4061c2c559b92de934b0c214bb4445b068795050e1bee2afb803d7f32b9a67 SHA512 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d
 DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
 DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c

diff --git a/sys-process/htop/htop-3.0.5-r2.ebuild b/sys-process/htop/htop-3.0.5-r2.ebuild
deleted file mode 100644
index 6249887e7d60..000000000000
--- a/sys-process/htop/htop-3.0.5-r2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-IUSE="debug hwloc lm-sensors openvz unicode vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	lm-sensors? ( sys-apps/lm-sensors )"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-		$(use_with lm-sensors sensors)
-	)
-
-	if ! use hwloc && use kernel_linux ; then
-		myeconfargs+=( --enable-linux-affinity )
-	else
-		myeconfargs+=( --disable-linux-affinity )
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}

diff --git a/sys-process/htop/htop-3.1.1-r1.ebuild b/sys-process/htop/htop-3.1.1-r1.ebuild
deleted file mode 100644
index 807d51af35fe..000000000000
--- a/sys-process/htop/htop-3.1.1-r1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors openvz unicode vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-05-02  7:07 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2022-05-02  7:07 UTC (permalink / raw
  To: gentoo-commits

commit:     ffded4e8c9ef3bf635ca88e8a381fb03917290f8
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 07:03:30 2022 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon May  2 07:07:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffded4e8

sys-process/htop: Bump to version 3.2.0

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |   1 +
 sys-process/htop/htop-3.2.0.ebuild | 106 +++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 48494e948695..1e8c23f8a542 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-3.0.5.tar.gz 297931 BLAKE2B a6e62f99ef349809d11bb14b4d515036601aa457507b34a96354607f136cc4e0d3d40a715f1576c70833db051d989fa55142b4f8bba0f5f432ea3676364d9575 SHA512 7dae83ceff6b3f30e69c30c9559dbb3bf69281df006c6a26e4e2c49dd5a147e05ed7bafeeac8ec5bedc8ba670470100cc128209a92654858f98df09a9394594f
 DIST htop-3.1.1.tar.gz 381277 BLAKE2B 4383991e8821e4c27a4f5cb002b198fa7915465c03d9fb83324fa2df732d8553be4061c2c559b92de934b0c214bb4445b068795050e1bee2afb803d7f32b9a67 SHA512 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d
 DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
+DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c

diff --git a/sys-process/htop/htop-3.2.0.ebuild b/sys-process/htop/htop-3.2.0.ebuild
new file mode 100644
index 000000000000..028834776fc9
--- /dev/null
+++ b/sys-process/htop/htop-3.2.0.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc:= )
+	unwind? (
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+	)
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof ; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	if [[ ${CBUILD} != ${CHOST} ]] ; then
+		export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	fi
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable unwind)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-05-19  7:28 WANG Xuerui
  0 siblings, 0 replies; 136+ messages in thread
From: WANG Xuerui @ 2022-05-19  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     3e16c99a3d2f9a55d92e96e13ae54be833b9f1f9
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 07:22:42 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu May 19 07:28:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e16c99a

sys-process/htop: keyword 3.2.0 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 sys-process/htop/htop-3.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.0.ebuild b/sys-process/htop/htop-3.2.0.ebuild
index 028834776fc9..97ec0972056e 100644
--- a/sys-process/htop/htop-3.2.0.ebuild
+++ b/sys-process/htop/htop-3.2.0.ebuild
@@ -10,7 +10,7 @@ inherit autotools linux-info python-any-r1 xdg-utils
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 LICENSE="BSD GPL-2+"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-05-21  8:35 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2022-05-21  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5325dae5e32f45af0a3c9805d7e37ba3b594f1b6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 08:20:22 2022 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May 21 08:34:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5325dae5

sys-process/htop: Added live ebuild

Introducing cap_sys_ptrace file capability for htop

Bug: https://bugs.gentoo.org/846635
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/htop-9999.ebuild | 113 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 113 insertions(+)

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
new file mode 100644
index 000000000000..f8aa53177141
--- /dev/null
+++ b/sys-process/htop/htop-9999.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools fcaps linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+if [[ ${PV} == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+else
+	SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc:= )
+	unwind? (
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+	)
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof ; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	if [[ ${CBUILD} != ${CHOST} ]] ; then
+		export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	fi
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable unwind)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+
+	fcaps cap_sys_ptrace /usr/bin/${PN}
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-06-03  2:38 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-06-03  2:38 UTC (permalink / raw
  To: gentoo-commits

commit:     5db477a0e2140ab9637dbee1e3ffbabbb5e8f451
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  3 02:35:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jun  3 02:35:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db477a0

sys-process/htop: add Python 3.11

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.0.ebuild | 2 +-
 sys-process/htop/htop-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-3.2.0.ebuild b/sys-process/htop/htop-3.2.0.ebuild
index 97ec0972056e..7010ef03499c 100644
--- a/sys-process/htop/htop-3.2.0.ebuild
+++ b/sys-process/htop/htop-3.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit autotools linux-info python-any-r1 xdg-utils
 

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index f8aa53177141..a79d5d03033d 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit autotools fcaps linux-info python-any-r1 xdg-utils
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-06-08  7:27 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2022-06-08  7:27 UTC (permalink / raw
  To: gentoo-commits

commit:     8b994f806ca1ae668a83f6fbb47e21c3b3c158b5
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  3 06:00:17 2022 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Jun  8 07:27:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b994f80

Revert "sys-process/htop: add Python 3.11"

This reverts commit 5db477a0e2140ab9637dbee1e3ffbabbb5e8f451.

  * another unauthorized drive-by commit
  * Support for python 3.11 will be added once a final python-3.11
    release is available

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/htop-3.2.0.ebuild | 2 +-
 sys-process/htop/htop-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/htop/htop-3.2.0.ebuild b/sys-process/htop/htop-3.2.0.ebuild
index 7010ef03499c..97ec0972056e 100644
--- a/sys-process/htop/htop-3.2.0.ebuild
+++ b/sys-process/htop/htop-3.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit autotools linux-info python-any-r1 xdg-utils
 

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index a79d5d03033d..f8aa53177141 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit autotools fcaps linux-info python-any-r1 xdg-utils
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-06-08  7:27 Lars Wendler
  0 siblings, 0 replies; 136+ messages in thread
From: Lars Wendler @ 2022-06-08  7:27 UTC (permalink / raw
  To: gentoo-commits

commit:     43dabd959a7d419159725f165e394572aaa941b1
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  6 17:09:04 2022 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Jun  8 07:27:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43dabd95

sys-process/htop: Bump to version 3.2.1

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-process/htop/Manifest          |   1 +
 sys-process/htop/htop-3.2.1.ebuild | 106 +++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index a321ed370318..bf26ca15fa8c 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1,3 @@
 DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
 DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c
+DIST htop-3.2.1.tar.gz 397632 BLAKE2B 301bc421b3ff8136a70603c523dd719d38703288114712a6e178c1a348b1bc9b9d578cdf3cf8fe99a9bcd2d5721cd2a10caeeeb4614b24c4f20a8e103c37d236 SHA512 d7b76e28ee870ac572ba1d9606dec6f9475346a00e599ca15838017c97683f1fc1be40417b9c1e76128cacc8a60ff9ba88c6b237be1835d309f98329b25644fc

diff --git a/sys-process/htop/htop-3.2.1.ebuild b/sys-process/htop/htop-3.2.1.ebuild
new file mode 100644
index 000000000000..97ec0972056e
--- /dev/null
+++ b/sys-process/htop/htop-3.2.1.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools linux-info python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc:= )
+	unwind? (
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+	)
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}
+	${PYTHON_DEPS}"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+S="${WORKDIR}/${P/_}"
+
+pkg_setup() {
+	if ! has_version sys-process/lsof ; then
+		ewarn "To use lsof features in htop (what processes are accessing"
+		ewarn "what files), you must have sys-process/lsof installed."
+	fi
+
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	if [[ ${CBUILD} != ${CHOST} ]] ; then
+		export ac_cv_file__proc_{meminfo,stat}=yes #328971
+	fi
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable unwind)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf ${myeconfargs[@]}
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-06-29  7:26 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-06-29  7:26 UTC (permalink / raw
  To: gentoo-commits

commit:     338e473063e93d5f5c729b0ec828cf2b72b974e8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 06:40:36 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 07:25:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=338e4730

sys-process/htop: update maintainers (add base-system@)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys-process/htop/metadata.xml b/sys-process/htop/metadata.xml
index 6e13313c778a..72a44e1e74ac 100644
--- a/sys-process/htop/metadata.xml
+++ b/sys-process/htop/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>base-system@gentoo.org</email>
+		<name>Gentoo Base System</name>
+	</maintainer>
 	<use>
 		<flag name="delayacct">Enable Linux delay accounting support via <pkg>dev-libs/libnl</pkg></flag>
 		<flag name="hwloc">Use <pkg>sys-apps/hwloc</pkg> for CPU affinity support</flag>


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-06-29  9:08 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-06-29  9:08 UTC (permalink / raw
  To: gentoo-commits

commit:     20d5319d31378762c32b0b2344e24f37ffbaccd2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 08:51:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 09:07:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d5319d

sys-process/htop: use release tarball

Closes: https://bugs.gentoo.org/849422
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/Manifest                          |  1 +
 .../{htop-9999.ebuild => htop-3.2.1-r1.ebuild}     | 42 +++++++++-------------
 sys-process/htop/htop-9999.ebuild                  | 42 +++++++++-------------
 3 files changed, 35 insertions(+), 50 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index bf26ca15fa8c..a84a0344d1f4 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,3 +1,4 @@
 DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
 DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c
 DIST htop-3.2.1.tar.gz 397632 BLAKE2B 301bc421b3ff8136a70603c523dd719d38703288114712a6e178c1a348b1bc9b9d578cdf3cf8fe99a9bcd2d5721cd2a10caeeeb4614b24c4f20a8e103c37d236 SHA512 d7b76e28ee870ac572ba1d9606dec6f9475346a00e599ca15838017c97683f1fc1be40417b9c1e76128cacc8a60ff9ba88c6b237be1835d309f98329b25644fc
+DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
similarity index 73%
copy from sys-process/htop/htop-9999.ebuild
copy to sys-process/htop/htop-3.2.1-r1.ebuild
index f8aa53177141..76b7ce3cb327 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -3,25 +3,26 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
-inherit autotools fcaps linux-info python-any-r1 xdg-utils
+inherit linux-info optfeature python-any-r1 xdg
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 if [[ ${PV} == *9999 ]] ; then
-	inherit git-r3
 	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+	inherit autotools git-r3
 else
-	SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
 	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
+S="${WORKDIR}/${P/_}"
+
 LICENSE="BSD GPL-2+"
 SLOT="0"
 IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
 
-BDEPEND="virtual/pkgconfig"
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)?]
 	hwloc? ( sys-apps/hwloc:= )
@@ -35,21 +36,15 @@ RDEPEND="
 		lm-sensors? ( sys-apps/lm-sensors )
 	)
 "
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+	virtual/pkgconfig"
 
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
 
-S="${WORKDIR}/${P/_}"
-
 pkg_setup() {
-	if ! has_version sys-process/lsof ; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
 	python-any-r1_pkg_setup
 	linux-info_pkg_setup
 }
@@ -57,12 +52,15 @@ pkg_setup() {
 src_prepare() {
 	default
 
-	eautoreconf
+	if [[ ${PV} == 9999 ]] ; then
+		eautoreconf
+	fi
 }
 
 src_configure() {
 	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		export ac_cv_file__proc_{meminfo,stat}=yes #328971
+		# bug #328971
+		export ac_cv_file__proc_{meminfo,stat}=yes
 	fi
 
 	local myeconfargs=(
@@ -97,17 +95,11 @@ src_configure() {
 		)
 	fi
 
-	econf ${myeconfargs[@]}
+	econf "${myeconfargs[@]}"
 }
 
 pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-
-	fcaps cap_sys_ptrace /usr/bin/${PN}
-}
+	xdg_pkg_postinst
 
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
+	optfeature "Viewing processes accessing certain files" sys-process/lsof
 }

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index f8aa53177141..76b7ce3cb327 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -3,25 +3,26 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
-inherit autotools fcaps linux-info python-any-r1 xdg-utils
+inherit linux-info optfeature python-any-r1 xdg
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 if [[ ${PV} == *9999 ]] ; then
-	inherit git-r3
 	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+	inherit autotools git-r3
 else
-	SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
 	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
+S="${WORKDIR}/${P/_}"
+
 LICENSE="BSD GPL-2+"
 SLOT="0"
 IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
 
-BDEPEND="virtual/pkgconfig"
 RDEPEND="
 	sys-libs/ncurses:=[unicode(+)?]
 	hwloc? ( sys-apps/hwloc:= )
@@ -35,21 +36,15 @@ RDEPEND="
 		lm-sensors? ( sys-apps/lm-sensors )
 	)
 "
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+	virtual/pkgconfig"
 
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
 
-S="${WORKDIR}/${P/_}"
-
 pkg_setup() {
-	if ! has_version sys-process/lsof ; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
 	python-any-r1_pkg_setup
 	linux-info_pkg_setup
 }
@@ -57,12 +52,15 @@ pkg_setup() {
 src_prepare() {
 	default
 
-	eautoreconf
+	if [[ ${PV} == 9999 ]] ; then
+		eautoreconf
+	fi
 }
 
 src_configure() {
 	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		export ac_cv_file__proc_{meminfo,stat}=yes #328971
+		# bug #328971
+		export ac_cv_file__proc_{meminfo,stat}=yes
 	fi
 
 	local myeconfargs=(
@@ -97,17 +95,11 @@ src_configure() {
 		)
 	fi
 
-	econf ${myeconfargs[@]}
+	econf "${myeconfargs[@]}"
 }
 
 pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-
-	fcaps cap_sys_ptrace /usr/bin/${PN}
-}
+	xdg_pkg_postinst
 
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
+	optfeature "Viewing processes accessing certain files" sys-process/lsof
 }


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20  2:45 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-07-20  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     9a400827159b5a7fba0b6811886edf2cb8e7b8d3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 02:44:58 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 02:44:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a400827

sys-process/htop: Stabilize 3.2.1-r1 ppc64, #859421

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 4e68a5e535b2..5a3bed77a346 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20  2:45 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-07-20  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     ca5ae2de1dcf110884940fc106a0be520bdc9b66
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 02:44:31 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 02:44:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca5ae2de

sys-process/htop: Stabilize 3.2.1-r1 arm64, #859421

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 12c9d84ae8c1..4e68a5e535b2 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20  2:45 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-07-20  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     4fe09bb23c7f4c269a6e009d9d2e64210a2a6901
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 02:44:30 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 02:44:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe09bb2

sys-process/htop: Stabilize 3.2.1-r1 ppc, #859421

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 76b7ce3cb327..12c9d84ae8c1 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20  2:45 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-07-20  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     574e75ec70d21c603bd193ab2cc3e714b73cf195
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 02:45:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 02:45:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=574e75ec

sys-process/htop: Stabilize 3.2.1-r1 amd64, #859421

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 5a3bed77a346..75c7bba8285b 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20  2:45 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-07-20  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     8973f782e1812f61654cede5cce042162954f4f5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 02:45:38 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 02:45:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8973f782

sys-process/htop: Stabilize 3.2.1-r1 x86, #859421

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 75c7bba8285b..9596364da91e 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20 13:41 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2022-07-20 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     d54732188ef5dce5d2f5099a5230119708cd42ef
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 13:41:19 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 13:41:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5473218

sys-process/htop: arm stable wrt bug #859421

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 9596364da91e..0135dad42339 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-20 13:45 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2022-07-20 13:45 UTC (permalink / raw
  To: gentoo-commits

commit:     21bf56044b37dd09325167c41a8d7e9908b0c52a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 13:45:27 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 13:45:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bf5604

sys-process/htop: sparc stable wrt bug #859421

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 0135dad42339..94f3bf530676 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-07-29 10:26 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-07-29 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     5f0b0edd445d546c67935fe6cf82161dbbba5e8d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 29 10:25:57 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 29 10:25:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f0b0edd

sys-process/htop: Stabilize 3.2.1-r1 hppa, #859421

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
index 94f3bf530676..51aac02058d6 100644
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ b/sys-process/htop/htop-3.2.1-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-08-09 20:06 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-08-09 20:06 UTC (permalink / raw
  To: gentoo-commits

commit:     6410deb61fa2ebd7adf5c82d7e9be941ab78a6d9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  9 03:12:29 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug  9 20:05:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6410deb6

sys-process/htop: drop back to xdg-utils.eclass

My own fault -- I didn't add a comment when I originally
inherited xdg-utils instead of xdg, and I broke it myself
later when changing to release tarballs!

See original commit for rationale.

Bug: https://bugs.gentoo.org/787470
Bug: https://bugs.gentoo.org/849422
Fixes: 20d5319d31378762c32b0b2344e24f37ffbaccd2
See: 1bf94ee45ca93a214be3fa2dda29b1d9fd90e0a9
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/{htop-9999.ebuild => htop-3.2.1-r2.ebuild} | 12 ++++++++++--
 sys-process/htop/htop-9999.ebuild                           | 12 ++++++++++--
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
similarity index 87%
copy from sys-process/htop/htop-9999.ebuild
copy to sys-process/htop/htop-3.2.1-r2.ebuild
index 76b7ce3cb327..7d41590b84b1 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -5,7 +5,9 @@ EAPI=8
 
 PYTHON_COMPAT=( python3_{8..11} )
 
-inherit linux-info optfeature python-any-r1 xdg
+# We avoid xdg.eclass here because it'll pull in glib, desktop utils on
+# htop which is often used on headless machines. bug #787470
+inherit linux-info optfeature python-any-r1 xdg-utils
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
@@ -99,7 +101,13 @@ src_configure() {
 }
 
 pkg_postinst() {
-	xdg_pkg_postinst
+	xdg_desktop_database_update
+	xdg_icon_cache_update
 
 	optfeature "Viewing processes accessing certain files" sys-process/lsof
 }
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index 76b7ce3cb327..7d41590b84b1 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -5,7 +5,9 @@ EAPI=8
 
 PYTHON_COMPAT=( python3_{8..11} )
 
-inherit linux-info optfeature python-any-r1 xdg
+# We avoid xdg.eclass here because it'll pull in glib, desktop utils on
+# htop which is often used on headless machines. bug #787470
+inherit linux-info optfeature python-any-r1 xdg-utils
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
@@ -99,7 +101,13 @@ src_configure() {
 }
 
 pkg_postinst() {
-	xdg_pkg_postinst
+	xdg_desktop_database_update
+	xdg_icon_cache_update
 
 	optfeature "Viewing processes accessing certain files" sys-process/lsof
 }
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:28 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-09-03 21:28 UTC (permalink / raw
  To: gentoo-commits

commit:     1a52e17548ec00a6b5010bede29565169bd58947
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:28:41 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:28:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a52e175

sys-process/htop: Stabilize 3.2.1-r2 arm64, #868300

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 3c937e369dac..3d8b5b9f6a2a 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:28 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-09-03 21:28 UTC (permalink / raw
  To: gentoo-commits

commit:     0ff4fb4a3a749f21b7c3e07e89acf9c023c4f4cb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:27:18 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:27:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff4fb4a

sys-process/htop: Stabilize 3.2.1-r2 x86, #868300

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 3097e91dd2fd..3c937e369dac 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:28 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-09-03 21:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b71e8e7445690472deabc96e0572c9b4f5f2e2bf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:27:00 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:27:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b71e8e74

sys-process/htop: Stabilize 3.2.1-r2 amd64, #868300

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 7d41590b84b1..3097e91dd2fd 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:30 Jakov Smolić
  0 siblings, 0 replies; 136+ messages in thread
From: Jakov Smolić @ 2022-09-03 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     19560b4e1b37da5f016f28d12e6675b8db2f440a
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:29:45 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:29:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19560b4e

sys-process/htop: Stabilize 3.2.1-r2 arm, #868300

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 3d8b5b9f6a2a..7b34f4d9c3dd 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:44 Jakov Smolić
  0 siblings, 0 replies; 136+ messages in thread
From: Jakov Smolić @ 2022-09-03 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     fa79e264c3c10f0c4374c3eaf85574e623068506
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:44:04 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:44:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa79e264

sys-process/htop: Stabilize 3.2.1-r2 ppc64, #868300

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 7b34f4d9c3dd..764902ad7f71 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-03 21:44 Jakov Smolić
  0 siblings, 0 replies; 136+ messages in thread
From: Jakov Smolić @ 2022-09-03 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     428df8c505ea33097204f19467410b940689d80e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 21:44:06 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 21:44:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=428df8c5

sys-process/htop: Stabilize 3.2.1-r2 ppc, #868300

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 764902ad7f71..e2174dfc4166 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-04 10:50 Agostino Sarubbo
  0 siblings, 0 replies; 136+ messages in thread
From: Agostino Sarubbo @ 2022-09-04 10:50 UTC (permalink / raw
  To: gentoo-commits

commit:     f6edfa0f7562b30a9d67a2019b9c0b3eae14f33f
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  4 10:50:47 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Sep  4 10:50:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6edfa0f

sys-process/htop: sparc stable wrt bug #868300

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index e2174dfc4166..882df6585471 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-09-23  2:09 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-09-23  2:09 UTC (permalink / raw
  To: gentoo-commits

commit:     bb3b9063aa0246f1f17a1382aded19951251686e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 23 02:05:20 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 23 02:08:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3b9063

sys-process/htop: drop 3.1.2-r1, 3.2.0, 3.2.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/Manifest             |   3 -
 sys-process/htop/htop-3.1.2-r1.ebuild | 104 ---------------------------------
 sys-process/htop/htop-3.2.0.ebuild    | 106 ----------------------------------
 sys-process/htop/htop-3.2.1.ebuild    | 106 ----------------------------------
 4 files changed, 319 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index a84a0344d1f4..dee143fae774 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,4 +1 @@
-DIST htop-3.1.2.tar.gz 387656 BLAKE2B a9682b6f3475fbae6ab7fd57330271190ec32267c5a8f2aac845cd18c566eaa9beed642c1e67fbc9606f120df600c27ed2ef0480a29ef304875a99898c1f10e4 SHA512 7e08b820042e480ca61137ff24b468804b49b95c1bbedaf82029dd79d29c2c541c5211284ec075692203788bbb868a9d4326ffd24c68419e22eec13ae5012700
-DIST htop-3.2.0.tar.gz 393712 BLAKE2B fff50fce1dd58d5738ca4a75a8b4078aa34e9544798c81bb18a2674823ab13a93ecec8c00d034704ecaab6a871efa2b021550dc1f0a03aa86f638c28e84f769e SHA512 174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c
-DIST htop-3.2.1.tar.gz 397632 BLAKE2B 301bc421b3ff8136a70603c523dd719d38703288114712a6e178c1a348b1bc9b9d578cdf3cf8fe99a9bcd2d5721cd2a10caeeeb4614b24c4f20a8e103c37d236 SHA512 d7b76e28ee870ac572ba1d9606dec6f9475346a00e599ca15838017c97683f1fc1be40417b9c1e76128cacc8a60ff9ba88c6b237be1835d309f98329b25644fc
 DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6

diff --git a/sys-process/htop/htop-3.1.2-r1.ebuild b/sys-process/htop/htop-3.1.2-r1.ebuild
deleted file mode 100644
index e390c41f80e9..000000000000
--- a/sys-process/htop/htop-3.1.2-r1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	unwind? (
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-	)
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	[[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable unwind)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}

diff --git a/sys-process/htop/htop-3.2.0.ebuild b/sys-process/htop/htop-3.2.0.ebuild
deleted file mode 100644
index 97ec0972056e..000000000000
--- a/sys-process/htop/htop-3.2.0.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	unwind? (
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-	)
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof ; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		export ac_cv_file__proc_{meminfo,stat}=yes #328971
-	fi
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable unwind)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}

diff --git a/sys-process/htop/htop-3.2.1.ebuild b/sys-process/htop/htop-3.2.1.ebuild
deleted file mode 100644
index 97ec0972056e..000000000000
--- a/sys-process/htop/htop-3.2.1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit autotools linux-info python-any-r1 xdg-utils
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-SRC_URI="https://github.com/htop-dev/${PN}/archive/${PV/_}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
-
-BDEPEND="virtual/pkgconfig"
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	unwind? (
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-	)
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}
-	${PYTHON_DEPS}"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-S="${WORKDIR}/${P/_}"
-
-pkg_setup() {
-	if ! has_version sys-process/lsof ; then
-		ewarn "To use lsof features in htop (what processes are accessing"
-		ewarn "what files), you must have sys-process/lsof installed."
-	fi
-
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		export ac_cv_file__proc_{meminfo,stat}=yes #328971
-	fi
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable unwind)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf ${myeconfargs[@]}
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-11-18  7:49 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2022-11-18  7:49 UTC (permalink / raw
  To: gentoo-commits

commit:     552f5f70e3ddb3947cafb2fb7a2e20b7a04391b6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 18 07:49:25 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 18 07:49:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=552f5f70

sys-process/htop: Stabilize 3.2.1-r2 hppa, #868300

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 882df6585471..db862d79f9a1 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2022-12-26  8:35 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2022-12-26  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     5a617709867b1c97259423f7a2a22ea64f953053
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 08:32:15 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 26 08:33:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a617709

sys-process/htop: drop 3.2.1-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r1.ebuild | 105 ----------------------------------
 1 file changed, 105 deletions(-)

diff --git a/sys-process/htop/htop-3.2.1-r1.ebuild b/sys-process/htop/htop-3.2.1-r1.ebuild
deleted file mode 100644
index 51aac02058d6..000000000000
--- a/sys-process/htop/htop-3.2.1-r1.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit linux-info optfeature python-any-r1 xdg
-
-DESCRIPTION="interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-if [[ ${PV} == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
-	inherit autotools git-r3
-else
-	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-fi
-
-S="${WORKDIR}/${P/_}"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
-
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	unwind? (
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-	)
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-pkg_setup() {
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	if [[ ${PV} == 9999 ]] ; then
-		eautoreconf
-	fi
-}
-
-src_configure() {
-	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		# bug #328971
-		export ac_cv_file__proc_{meminfo,stat}=yes
-	fi
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable unwind)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf "${myeconfargs[@]}"
-}
-
-pkg_postinst() {
-	xdg_pkg_postinst
-
-	optfeature "Viewing processes accessing certain files" sys-process/lsof
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-02-04 23:05 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2023-02-04 23:05 UTC (permalink / raw
  To: gentoo-commits

commit:     cf183ec7d9060b22d3ef0e2001512aca139e88a4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  4 22:54:46 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb  4 22:54:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf183ec7

sys-process/htop: add 3.2.2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/Manifest          |   1 +
 sys-process/htop/htop-3.2.2.ebuild | 113 +++++++++++++++++++++++++++++++++++++
 2 files changed, 114 insertions(+)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index dee143fae774..193049475da4 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1 +1,2 @@
 DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6
+DIST htop-3.2.2.tar.xz 384820 BLAKE2B da3b4aea4e5d32d4b432e0f45089e7795b59d9a947dc4af76cb6b7f9137e6d45901c8169c8d2c796a3f43162c1e3c8f1e18bd17f20750637e06fe4c3ebe22caa SHA512 59f3f06677076262e25a478552e4438ce37028e2f064d3fb78653d3213b48ae4d78c7e0d62ee785a4ed3c6c99b7faafd9afab94c4350a4e5c5843cef81aaf489

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
new file mode 100644
index 000000000000..7080f7e4ba08
--- /dev/null
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+# We avoid xdg.eclass here because it'll pull in glib, desktop utils on
+# htop which is often used on headless machines. bug #787470
+inherit linux-info optfeature python-any-r1 xdg-utils
+
+DESCRIPTION="interactive process viewer"
+HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
+if [[ ${PV} == *9999 ]] ; then
+	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
+	inherit autotools git-r3
+else
+	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+S="${WORKDIR}/${P/_}"
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
+
+RDEPEND="
+	sys-libs/ncurses:=[unicode(+)?]
+	hwloc? ( sys-apps/hwloc:= )
+	unwind? (
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+	)
+	kernel_linux? (
+		caps? ( sys-libs/libcap )
+		delayacct? ( dev-libs/libnl:3 )
+		lm-sensors? ( sys-apps/lm-sensors )
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+	virtual/pkgconfig"
+
+DOCS=( ChangeLog README )
+
+CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
+
+pkg_setup() {
+	python-any-r1_pkg_setup
+	linux-info_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	if [[ ${PV} == 9999 ]] ; then
+		eautoreconf
+	fi
+}
+
+src_configure() {
+	if [[ ${CBUILD} != ${CHOST} ]] ; then
+		# bug #328971
+		export ac_cv_file__proc_{meminfo,stat}=yes
+	fi
+
+	local myeconfargs=(
+		--enable-unicode
+		$(use_enable debug)
+		$(use_enable hwloc)
+		$(use_enable !hwloc affinity)
+		$(use_enable openvz)
+		$(use_enable unicode)
+		$(use_enable unwind)
+		$(use_enable vserver)
+	)
+
+	if use kernel_linux ; then
+		myeconfargs+=(
+			$(use_enable caps capabilities)
+			$(use_enable delayacct)
+			$(use_enable lm-sensors sensors)
+		)
+	else
+		if use kernel_Darwin ; then
+			# Upstream default to checking but --enable-affinity
+			# overrides this. Simplest to just disable on Darwin
+			# given it works on BSD anyway.
+			myeconfargs+=( --disable-affinity )
+		fi
+
+		myeconfargs+=(
+			--disable-capabilities
+			--disable-delayacct
+			--disable-sensors
+		)
+	fi
+
+	econf "${myeconfargs[@]}"
+}
+
+pkg_postinst() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+
+	optfeature "Viewing processes accessing certain files" sys-process/lsof
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-02-05 20:00 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2023-02-05 20:00 UTC (permalink / raw
  To: gentoo-commits

commit:     5fdefb280cc1c1f7d456bbf0c246f99d48f88f6f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  5 19:59:22 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb  5 19:59:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fdefb28

sys-process/htop: tweak DESCRIPTION

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.1-r2.ebuild | 2 +-
 sys-process/htop/htop-3.2.2.ebuild    | 2 +-
 sys-process/htop/htop-9999.ebuild     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
index 6814598d8439..3d2a6b0bdd42 100644
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ b/sys-process/htop/htop-3.2.1-r2.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{9..11} )
 # htop which is often used on headless machines. bug #787470
 inherit linux-info optfeature python-any-r1 xdg-utils
 
-DESCRIPTION="interactive process viewer"
+DESCRIPTION="Interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 if [[ ${PV} == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index 7080f7e4ba08..308bba2b8c3c 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{9..11} )
 # htop which is often used on headless machines. bug #787470
 inherit linux-info optfeature python-any-r1 xdg-utils
 
-DESCRIPTION="interactive process viewer"
+DESCRIPTION="Interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 if [[ ${PV} == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index 7080f7e4ba08..308bba2b8c3c 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{9..11} )
 # htop which is often used on headless machines. bug #787470
 inherit linux-info optfeature python-any-r1 xdg-utils
 
-DESCRIPTION="interactive process viewer"
+DESCRIPTION="Interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
 if [[ ${PV} == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     90818083c766a3476ba7bdadff0fcda239cc3904
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:43:33 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:43:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90818083

sys-process/htop: Stabilize 3.2.2 ppc64, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index e0425927e0cd..f5a38ce5d00e 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     2615b92a2608f9ee7402423a687e4448071ed90b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:43:34 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:43:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2615b92a

sys-process/htop: Stabilize 3.2.2 ppc, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index f5a38ce5d00e..d959ca7cd5c5 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     5f5272278f248e01a63c789955249a19f0ace847
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:43:32 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:43:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f527227

sys-process/htop: Stabilize 3.2.2 arm, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index 1f30297dd1f4..e0425927e0cd 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     43d1941b64347ca465c26057068f66c6ad2c50b7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:43:31 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:43:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43d1941b

sys-process/htop: Stabilize 3.2.2 sparc, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index 308bba2b8c3c..1f30297dd1f4 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     f9df9964d55855c6fb6ae5d5fea0e16d0ecba6dd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:44:27 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:44:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9df9964

sys-process/htop: Stabilize 3.2.2 arm64, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index 23bb2201d6c4..cb7b212c4271 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  7:44 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     33b428e12f1f59d254f39e3ef648b27f81850aaf
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 07:44:24 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 07:44:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b428e1

sys-process/htop: Stabilize 3.2.2 hppa, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index d959ca7cd5c5..23bb2201d6c4 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  8:08 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2023-03-10  8:08 UTC (permalink / raw
  To: gentoo-commits

commit:     b734689da9ba19f57726fdae50eb4a4fc2f05504
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 08:08:28 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 08:08:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b734689d

sys-process/htop: Stabilize 3.2.2 amd64, #900641

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index cb7b212c4271..dd3546067cc0 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-03-10  8:21 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2023-03-10  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     24f8868d09621c0efba4aee8adae9f68ee48d131
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 10 08:20:57 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 10 08:20:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24f8868d

sys-process/htop: Stabilize 3.2.2 x86, #900641

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index dd3546067cc0..3d2a6b0bdd42 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-12-18  7:10 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2023-12-18  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     727a16cedb529b0225b5847082bcbd4f72c3380f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 18 07:09:21 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 18 07:09:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727a16ce

sys-process/htop: drop stale Python usage

Thanks to parona for pointing this out, it was dropped upstream in a852fae8e02650d621abdd5aea29b7a56d9a3090 [0]

[0] https://github.com/htop-dev/htop/commit/a852fae8e02650d621abdd5aea29b7a56d9a3090

Closes: https://bugs.gentoo.org/919913
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.2.2.ebuild | 12 ++----------
 sys-process/htop/htop-9999.ebuild  | 12 ++----------
 2 files changed, 4 insertions(+), 20 deletions(-)

diff --git a/sys-process/htop/htop-3.2.2.ebuild b/sys-process/htop/htop-3.2.2.ebuild
index 3d2a6b0bdd42..6000d7d45005 100644
--- a/sys-process/htop/htop-3.2.2.ebuild
+++ b/sys-process/htop/htop-3.2.2.ebuild
@@ -3,11 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
-
 # We avoid xdg.eclass here because it'll pull in glib, desktop utils on
 # htop which is often used on headless machines. bug #787470
-inherit linux-info optfeature python-any-r1 xdg-utils
+inherit linux-info optfeature xdg-utils
 
 DESCRIPTION="Interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
@@ -39,18 +37,12 @@ RDEPEND="
 	)
 "
 DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}
-	virtual/pkgconfig"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
 
-pkg_setup() {
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
 src_prepare() {
 	default
 

diff --git a/sys-process/htop/htop-9999.ebuild b/sys-process/htop/htop-9999.ebuild
index 308bba2b8c3c..95b4f940ef01 100644
--- a/sys-process/htop/htop-9999.ebuild
+++ b/sys-process/htop/htop-9999.ebuild
@@ -3,11 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
-
 # We avoid xdg.eclass here because it'll pull in glib, desktop utils on
 # htop which is often used on headless machines. bug #787470
-inherit linux-info optfeature python-any-r1 xdg-utils
+inherit linux-info optfeature xdg-utils
 
 DESCRIPTION="Interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
@@ -39,18 +37,12 @@ RDEPEND="
 	)
 "
 DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}
-	virtual/pkgconfig"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( ChangeLog README )
 
 CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
 
-pkg_setup() {
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
 src_prepare() {
 	default
 


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2023-12-28  4:04 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2023-12-28  4:04 UTC (permalink / raw
  To: gentoo-commits

commit:     5491bc7dc1b908564b2858c6d2c5ef62087bf5d1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 04:01:23 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 04:01:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5491bc7d

sys-process/htop: drop 3.2.1-r2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/Manifest             |   1 -
 sys-process/htop/htop-3.2.1-r2.ebuild | 113 ----------------------------------
 2 files changed, 114 deletions(-)

diff --git a/sys-process/htop/Manifest b/sys-process/htop/Manifest
index 193049475da4..a9d7f274d4ea 100644
--- a/sys-process/htop/Manifest
+++ b/sys-process/htop/Manifest
@@ -1,2 +1 @@
-DIST htop-3.2.1.tar.xz 406048 BLAKE2B 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24 SHA512 f412c10ebdec4fb026fb93a79a9b0b84612ad5a0d28e37f06713e6c895f70e92cbd09a8737d04f3d51102295d7a419eb2c3ec3907b96f553fda8ff3d1a2142b6
 DIST htop-3.2.2.tar.xz 384820 BLAKE2B da3b4aea4e5d32d4b432e0f45089e7795b59d9a947dc4af76cb6b7f9137e6d45901c8169c8d2c796a3f43162c1e3c8f1e18bd17f20750637e06fe4c3ebe22caa SHA512 59f3f06677076262e25a478552e4438ce37028e2f064d3fb78653d3213b48ae4d78c7e0d62ee785a4ed3c6c99b7faafd9afab94c4350a4e5c5843cef81aaf489

diff --git a/sys-process/htop/htop-3.2.1-r2.ebuild b/sys-process/htop/htop-3.2.1-r2.ebuild
deleted file mode 100644
index 3d2a6b0bdd42..000000000000
--- a/sys-process/htop/htop-3.2.1-r2.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-# We avoid xdg.eclass here because it'll pull in glib, desktop utils on
-# htop which is often used on headless machines. bug #787470
-inherit linux-info optfeature python-any-r1 xdg-utils
-
-DESCRIPTION="Interactive process viewer"
-HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop"
-if [[ ${PV} == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/htop-dev/htop.git"
-	inherit autotools git-r3
-else
-	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-fi
-
-S="${WORKDIR}/${P/_}"
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-IUSE="caps debug delayacct hwloc lm-sensors llvm-libunwind openvz unicode unwind vserver"
-
-RDEPEND="
-	sys-libs/ncurses:=[unicode(+)?]
-	hwloc? ( sys-apps/hwloc:= )
-	unwind? (
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-	)
-	kernel_linux? (
-		caps? ( sys-libs/libcap )
-		delayacct? ( dev-libs/libnl:3 )
-		lm-sensors? ( sys-apps/lm-sensors )
-	)
-"
-DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README )
-
-CONFIG_CHECK="~TASKSTATS ~TASK_XACCT ~TASK_IO_ACCOUNTING ~CGROUPS"
-
-pkg_setup() {
-	python-any-r1_pkg_setup
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	if [[ ${PV} == 9999 ]] ; then
-		eautoreconf
-	fi
-}
-
-src_configure() {
-	if [[ ${CBUILD} != ${CHOST} ]] ; then
-		# bug #328971
-		export ac_cv_file__proc_{meminfo,stat}=yes
-	fi
-
-	local myeconfargs=(
-		--enable-unicode
-		$(use_enable debug)
-		$(use_enable hwloc)
-		$(use_enable !hwloc affinity)
-		$(use_enable openvz)
-		$(use_enable unicode)
-		$(use_enable unwind)
-		$(use_enable vserver)
-	)
-
-	if use kernel_linux ; then
-		myeconfargs+=(
-			$(use_enable caps capabilities)
-			$(use_enable delayacct)
-			$(use_enable lm-sensors sensors)
-		)
-	else
-		if use kernel_Darwin ; then
-			# Upstream default to checking but --enable-affinity
-			# overrides this. Simplest to just disable on Darwin
-			# given it works on BSD anyway.
-			myeconfargs+=( --disable-affinity )
-		fi
-
-		myeconfargs+=(
-			--disable-capabilities
-			--disable-delayacct
-			--disable-sensors
-		)
-	fi
-
-	econf "${myeconfargs[@]}"
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-
-	optfeature "Viewing processes accessing certain files" sys-process/lsof
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 13:31 Sam James
  0 siblings, 0 replies; 136+ messages in thread
From: Sam James @ 2024-02-18 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     7c0e625075ee412b0014331e029b210ebf64a5f3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 13:30:28 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 13:30:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c0e6250

sys-process/htop: Stabilize 3.3.0 arm, #924912

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 511fff1b3fac..832d10665f78 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 19:57 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-02-18 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     6b16554fc5b25261d1bc78cc16ecb3e6cc20cd4c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 19:56:58 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 19:57:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b16554f

sys-process/htop: Stabilize 3.3.0 x86, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 91676c38c7c9..020ed576caa2 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 19:57 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-02-18 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     737850c9bffdf1b2045bdcafbe08fa308b68ec74
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 19:56:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 19:57:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737850c9

sys-process/htop: Stabilize 3.3.0 amd64, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 832d10665f78..3d4b02d19f67 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 19:57 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-02-18 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     1673d7fb6fa1aa2ffc8f2c4f1ff464a99636f456
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 19:56:59 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 19:57:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1673d7fb

sys-process/htop: Stabilize 3.3.0 arm64, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 020ed576caa2..43155663cb31 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 19:57 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-02-18 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     bc3cfe10007032a057eb413740fbdc97528f24fb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 19:56:57 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 19:57:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc3cfe10

sys-process/htop: Stabilize 3.3.0 sparc, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 3d4b02d19f67..91676c38c7c9 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-02-18 20:02 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-02-18 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     85319da9355f5e00540a093ad99b8f37bc6c14c8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 20:01:16 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 20:01:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85319da9

sys-process/htop: Stabilize 3.3.0 ppc64, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index 43155663cb31..e0cea73ebb4c 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-03-02 16:27 Arthur Zamarin
  0 siblings, 0 replies; 136+ messages in thread
From: Arthur Zamarin @ 2024-03-02 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     05527df582261e136b505704ad5bd4f4c04cf201
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  2 16:27:46 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 16:27:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05527df5

sys-process/htop: Stabilize 3.3.0 ppc, #924912

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index e0cea73ebb4c..b4d17a057c3f 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/
@ 2024-03-19  3:42 Ionen Wolkens
  0 siblings, 0 replies; 136+ messages in thread
From: Ionen Wolkens @ 2024-03-19  3:42 UTC (permalink / raw
  To: gentoo-commits

commit:     bd64ad1ce58eae51f966e5b2a2d46a0fa2d98c2d
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Mon Mar 18 15:41:26 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Mar 19 03:42:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd64ad1c

sys-process/htop: Stabilize 3.3.0 hppa, #924912

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 sys-process/htop/htop-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.3.0.ebuild b/sys-process/htop/htop-3.3.0.ebuild
index b4d17a057c3f..d30d06f8ca4e 100644
--- a/sys-process/htop/htop-3.3.0.ebuild
+++ b/sys-process/htop/htop-3.3.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]] ; then
 	inherit autotools git-r3
 else
 	SRC_URI="https://github.com/htop-dev/htop/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 S="${WORKDIR}/${P/_}"


^ permalink raw reply related	[flat|nested] 136+ messages in thread

end of thread, other threads:[~2024-03-19  3:42 UTC | newest]

Thread overview: 136+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-18 19:57 [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-03-19  3:42 Ionen Wolkens
2024-03-02 16:27 Arthur Zamarin
2024-02-18 20:02 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 19:57 Arthur Zamarin
2024-02-18 13:31 Sam James
2023-12-28  4:04 Sam James
2023-12-18  7:10 Sam James
2023-03-10  8:21 Arthur Zamarin
2023-03-10  8:08 Sam James
2023-03-10  7:44 Arthur Zamarin
2023-03-10  7:44 Arthur Zamarin
2023-03-10  7:44 Arthur Zamarin
2023-03-10  7:44 Arthur Zamarin
2023-03-10  7:44 Arthur Zamarin
2023-03-10  7:44 Arthur Zamarin
2023-02-05 20:00 Sam James
2023-02-04 23:05 Sam James
2022-12-26  8:35 Sam James
2022-11-18  7:49 Arthur Zamarin
2022-09-23  2:09 Sam James
2022-09-04 10:50 Agostino Sarubbo
2022-09-03 21:44 Jakov Smolić
2022-09-03 21:44 Jakov Smolić
2022-09-03 21:30 Jakov Smolić
2022-09-03 21:28 Sam James
2022-09-03 21:28 Sam James
2022-09-03 21:28 Sam James
2022-08-09 20:06 Sam James
2022-07-29 10:26 Arthur Zamarin
2022-07-20 13:45 Agostino Sarubbo
2022-07-20 13:41 Agostino Sarubbo
2022-07-20  2:45 Sam James
2022-07-20  2:45 Sam James
2022-07-20  2:45 Sam James
2022-07-20  2:45 Sam James
2022-07-20  2:45 Sam James
2022-06-29  9:08 Sam James
2022-06-29  7:26 Sam James
2022-06-08  7:27 Lars Wendler
2022-06-08  7:27 Lars Wendler
2022-06-03  2:38 Sam James
2022-05-21  8:35 Lars Wendler
2022-05-19  7:28 WANG Xuerui
2022-05-02  7:07 Lars Wendler
2022-05-02  7:07 Lars Wendler
2022-01-14 14:45 Arthur Zamarin
2022-01-14 14:41 Arthur Zamarin
2022-01-14 13:55 Arthur Zamarin
2022-01-14 13:25 Arthur Zamarin
2022-01-14 13:23 Arthur Zamarin
2022-01-14 10:47 Sam James
2022-01-14  9:45 Jakov Smolić
2022-01-14  9:45 Jakov Smolić
2022-01-04 10:30 David Seifert
2022-01-04  3:29 Sam James
2021-12-30 13:21 Christian Ruppert
2021-11-30  7:10 Lars Wendler
2021-11-30  7:10 Lars Wendler
2021-11-03 21:20 Sam James
2021-10-29 22:44 Sam James
2021-10-14 23:22 Lars Wendler
2021-09-21  7:13 Lars Wendler
2021-09-06  6:07 Lars Wendler
2021-09-05 20:58 Sam James
2021-08-29 14:31 Lars Wendler
2021-08-11  2:05 Sam James
2021-08-11  2:05 Sam James
2021-07-17 21:30 David Seifert
2021-05-04 19:13 Sam James
2021-05-01 14:06 Sam James
2021-04-30 23:39 Sam James
2021-04-30 23:37 Sam James
2021-04-30 15:59 Sergei Trofimovich
2021-04-29 14:19 Sam James
2021-04-29 14:19 Sam James
2021-01-11 19:56 Lars Wendler
2021-01-11 19:56 Lars Wendler
2020-12-22 11:43 Lars Wendler
2020-12-21  9:36 Sergei Trofimovich
2020-12-15 10:30 Sam James
2020-12-13  0:31 Sam James
2020-12-07 13:18 Lars Wendler
2020-12-04 18:37 Sergei Trofimovich
2020-12-03  4:23 Sam James
2020-12-02 22:39 Sam James
2020-12-02 22:00 Sam James
2020-12-02  3:06 Thomas Deutschmann
2020-09-15  9:45 Lars Wendler
2020-09-15  9:45 Lars Wendler
2020-09-14  6:28 Lars Wendler
2020-09-03 11:11 Lars Wendler
2020-08-27 11:48 Thomas Deutschmann
2020-04-19  2:35 Craig Andrews
2020-02-10 13:26 Michał Górny
2019-10-31 22:48 Göktürk Yüksek
2019-07-25 14:57 Lars Wendler
2018-11-27  9:58 Mart Raudsepp
2018-10-17  9:53 Mikle Kolyada
2018-10-15 18:43 Sergei Trofimovich
2018-10-14  9:14 Sergei Trofimovich
2018-10-14  8:59 Sergei Trofimovich
2018-10-13 16:14 Sergei Trofimovich
2018-10-13  6:56 Tobias Klausmann
2018-10-12 19:08 Sergei Trofimovich
2018-10-10 13:31 Mikle Kolyada
2018-10-10  3:01 Thomas Deutschmann
2018-10-09 13:22 Lars Wendler
2018-07-24  8:45 Lars Wendler
2018-07-24  8:23 Lars Wendler
2018-07-24  8:17 Michał Górny
2018-06-08 20:45 Mikle Kolyada
2018-04-11  8:19 Lars Wendler
2018-04-09 15:23 Lars Wendler
2018-03-26 13:26 Lars Wendler
2018-03-26 13:26 Lars Wendler
2018-03-02  7:46 Lars Wendler
2017-12-24 13:56 Patrice Clement
2017-02-24 22:11 Michael Weber
2017-02-03 21:59 Lars Wendler
2017-02-03 21:44 Robin H. Johnson
2017-01-15  0:34 Jeroen Roovers
2016-12-24 10:25 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-19 11:07 Tobias Klausmann
2016-12-18 15:44 Agostino Sarubbo
2016-06-25 13:47 Lars Wendler
2016-03-08  8:04 Lars Wendler
2016-03-07 15:09 Lars Wendler
2016-03-07 15:09 Lars Wendler
2016-02-16  0:14 Stephen Klimaszewski
2015-09-10  8:39 Christian Ruppert
2015-08-16 10:31 Justin Lecher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox