pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/htop htop: update to 3.1.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/1aa5496aa272
branches: trunk
changeset: 768324:1aa5496aa272
user: nia <nia%pkgsrc.org@localhost>
date: Tue Oct 19 07:37:36 2021 +0000
description:
htop: update to 3.1.1
What's new in version 3.1.1
* Update license headers to explicitly say GPLv2+
* Document minimum version for libcap (thanks to James Brown)
* Fix mouse wheel collision with autogroups nice adjustment
* Adjust Makefile.am macro definitions for older automake versions
* Ensure consistent reporting of MemoryMeter 'used' memory
* Report hugepage memory as real and used memory (as before)
* Handle procExeDeleted, usesDeletedLib without mergedCommandline mode
* Validate meter configuration before proceeding beyond htoprc parsing
* Properly release memory on partially read configuration
* Handle interrupted sampling from within libpcp PDU transfers
* On Linux, provide O_PATH value if not defined
* On Linux, always compute procExeDeleted if already set
* Workaround for Rosetta 2 on Darwin (thanks to Alexander Momchilov)
* Fix FreeBSD cmdline memory leak in Process_updateCmdline, and
* Plug a Disk I/O meter memory leak on FreeBSD (thanks to Ximalas)
diffstat:
sysutils/htop/Makefile | 5 ++---
sysutils/htop/distinfo | 8 ++++----
sysutils/htop/patches/patch-MainPanel.c | 25 -------------------------
3 files changed, 6 insertions(+), 32 deletions(-)
diffs (58 lines):
diff -r a0e5a4f2d365 -r 1aa5496aa272 sysutils/htop/Makefile
--- a/sysutils/htop/Makefile Mon Oct 18 14:33:14 2021 +0000
+++ b/sysutils/htop/Makefile Tue Oct 19 07:37:36 2021 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.22 2021/09/28 17:57:38 fox Exp $
+# $NetBSD: Makefile,v 1.23 2021/10/19 07:37:36 nia Exp $
-DISTNAME= htop-3.1.0
+DISTNAME= htop-3.1.1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GITHUB:=htop-dev/}
-GITHUB_TAG= 3.1.0
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://htop.dev/
diff -r a0e5a4f2d365 -r 1aa5496aa272 sysutils/htop/distinfo
--- a/sysutils/htop/distinfo Mon Oct 18 14:33:14 2021 +0000
+++ b/sysutils/htop/distinfo Tue Oct 19 07:37:36 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2021/10/07 14:57:56 nia Exp $
+$NetBSD: distinfo,v 1.16 2021/10/19 07:37:36 nia Exp $
-RMD160 (htop-3.1.0.tar.gz) = eb64c52e19df747bfe5b03ebc607b950e5084bf3
-SHA512 (htop-3.1.0.tar.gz) = bb4422591a61978d1cc5b423413820c14cc571c4660087387949f1071609da38e42be2be8485863cb19b0b957d1fdeb5b2df46212d9ddd3891871b1c9d276c6e
-Size (htop-3.1.0.tar.gz) = 378838 bytes
+RMD160 (htop-3.1.1.tar.gz) = 3ba49c8793d461037c5787d1b02f21d72241751b
+SHA512 (htop-3.1.1.tar.gz) = 5e4ec9b5fdf4583c8a345dcc2fe9395737e3a6e8dd8e6547800b959be084b9d57ae30bf891f79a25f6bf99ec0b6eb7eaba8bc851072c5a550de70df4178dc07d
+Size (htop-3.1.1.tar.gz) = 381277 bytes
SHA1 (patch-MainPanel.c) = da63da783a1df784ec31ac4cbdacb0fbbfeb9ef6
diff -r a0e5a4f2d365 -r 1aa5496aa272 sysutils/htop/patches/patch-MainPanel.c
--- a/sysutils/htop/patches/patch-MainPanel.c Mon Oct 18 14:33:14 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-$NetBSD: patch-MainPanel.c,v 1.1 2021/09/28 17:57:39 fox Exp $
-
-Check for mouse events only if HAVE_GETMOUSE is defined.
-
-NOTE: This has been fixed upstream and the patch will be removed in the next release.
-https://github.com/htop-dev/htop/pull/820
-
---- MainPanel.c.orig 2021-09-28 02:18:18.760961460 +0000
-+++ MainPanel.c
-@@ -61,9 +61,15 @@ static HandlerResult MainPanel_eventHand
- if (ch == KEY_RESIZE)
- return IGNORED;
-
-+ #ifdef HAVE_GETMOUSE
- /* reset on every normal key, except mouse events while mouse support is disabled */
- if (ch != ERR && (ch != KEY_MOUSE || this->state->settings->enableMouse))
- this->state->hideProcessSelection = false;
-+ #else
-+ /* reset on every normal key */
-+ if (ch != ERR)
-+ this->state->hideProcessSelection = false;
-+ #endif
-
- if (EVENT_IS_HEADER_CLICK(ch)) {
- int x = EVENT_HEADER_CLICK_GET_X(ch);
Home |
Main Index |
Thread Index |
Old Index