ncdu: Update to version 1.20

Message ID 20240813163109.1114917-1-adolf.belka@ipfire.org
State Staged
Commit 1ab0b00940d0249d07cf895ee4e19a348979505b
Headers
Series ncdu: Update to version 1.20 |

Commit Message

Adolf Belka Aug. 13, 2024, 4:31 p.m. UTC
  - Update from version 1.18.1 to 1.20
- Update of rootfile not required
- Changelog
    1.20
	- Revert default color scheme back to 'off'
	- Rewrite man page in mdoc, drop pod2man dependency
    1.19
	- Fix typo in --exclude-from argument
	- Add --(enable|disable)-natsort options
	- Add indicator to apparent size/disk usage selection in the footer

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/ncdu | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
  

Patch

diff --git a/lfs/ncdu b/lfs/ncdu
index a562cd26e..935e70712 100644
--- a/lfs/ncdu
+++ b/lfs/ncdu
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -27,7 +27,7 @@  include Config
 
 SUMMARY    = NCurses Disk Usage
 
-VER        = 1.18.1
+VER        = 1.20
 
 THISAPP    = ncdu-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -35,7 +35,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = ncdu
-PAK_VER    = 4
+PAK_VER    = 5
 
 DEPS	    =
 
@@ -49,7 +49,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = fc64ea50cbc7bd2f5b0026ea1e87f18a25693f8ac8eb01468dcbf4d1185f71c472074217ed3088d9a029239547ce9dffe0fbf4b2d4cd8e0904657bd1e2bf6f84
+$(DL_FILE)_BLAKE2 = 0bb6576ecbb3df281c67a48409db2118521760f378defd9c082f732519c9828451b77897ca49e777674ae73a5aac0fd975b94d5a95b1689cd552b5840ac3b5de
 
 install : $(TARGET)
 
@@ -82,7 +82,8 @@  $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xvf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=/usr
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)