* [PATCH] htop: Update to version 3.1.2
@ 2021-12-07 17:36 Adolf Belka
2021-12-08 9:55 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2021-12-07 17:36 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2008 bytes --]
- Update from 3.1.1 to 3.1.2
- Update of rootfile not required
- Changelog
version 3.1.2
* Bugfix for crash when storing modified settings at exit
* Generate xz-compressed source tarball (with configure) using github actions
* Allow -u UID with numerical value as argument
* Added documentation for obsolete/state libraries/program files highlighting
* Some obsolete/stale library highlighting refinements
* Column width issues resolved
* Dynamic UID column sizing improved
* Discard stale information from Disk and Network I/O meters
* Refined Linux kernel thread detection
* Reworked process state handling
* New CCGROUP column showing abbreviated cgroup name
* New OFFSET column in the list of open files screen
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/htop | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lfs/htop b/lfs/htop
index 277b6532e..d874c8614 100644
--- a/lfs/htop
+++ b/lfs/htop
@@ -24,15 +24,15 @@
include Config
-VER = 3.1.1
+VER = 3.1.2
THISAPP = htop-$(VER)
-DL_FILE = $(THISAPP).tar.gz
+DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = htop
-PAK_VER = 17
+PAK_VER = 18
DEPS =
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 76ad907a6d43cf38c089e3e9b0100590
+$(DL_FILE)_MD5 = 13f3be1bb11165c0c46d8b3ff7e17f45
install : $(TARGET)
@@ -78,7 +78,7 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
- @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+ @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./autogen.sh
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && make $(MAKETUNING)
--
2.34.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] htop: Update to version 3.1.2
2021-12-07 17:36 [PATCH] htop: Update to version 3.1.2 Adolf Belka
@ 2021-12-08 9:55 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2021-12-08 9:55 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2242 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 7 Dec 2021, at 17:36, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from 3.1.1 to 3.1.2
> - Update of rootfile not required
> - Changelog
> version 3.1.2
> * Bugfix for crash when storing modified settings at exit
> * Generate xz-compressed source tarball (with configure) using github actions
> * Allow -u UID with numerical value as argument
> * Added documentation for obsolete/state libraries/program files highlighting
> * Some obsolete/stale library highlighting refinements
> * Column width issues resolved
> * Dynamic UID column sizing improved
> * Discard stale information from Disk and Network I/O meters
> * Refined Linux kernel thread detection
> * Reworked process state handling
> * New CCGROUP column showing abbreviated cgroup name
> * New OFFSET column in the list of open files screen
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/htop | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/lfs/htop b/lfs/htop
> index 277b6532e..d874c8614 100644
> --- a/lfs/htop
> +++ b/lfs/htop
> @@ -24,15 +24,15 @@
>
> include Config
>
> -VER = 3.1.1
> +VER = 3.1.2
>
> THISAPP = htop-$(VER)
> -DL_FILE = $(THISAPP).tar.gz
> +DL_FILE = $(THISAPP).tar.xz
> DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = htop
> -PAK_VER = 17
> +PAK_VER = 18
>
> DEPS =
>
> @@ -46,7 +46,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 76ad907a6d43cf38c089e3e9b0100590
> +$(DL_FILE)_MD5 = 13f3be1bb11165c0c46d8b3ff7e17f45
>
> install : $(TARGET)
>
> @@ -78,7 +78,7 @@ $(subst %,%_MD5,$(objects)) :
>
> $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> @$(PREBUILD)
> - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
> + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
> cd $(DIR_APP) && ./autogen.sh
> cd $(DIR_APP) && ./configure --prefix=/usr
> cd $(DIR_APP) && make $(MAKETUNING)
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-08 9:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-07 17:36 [PATCH] htop: Update to version 3.1.2 Adolf Belka
2021-12-08 9:55 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox