From patchwork Thu Apr 28 21:25:55 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5568 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4Kq7vv5Gs6z3x1y for ; Thu, 28 Apr 2022 21:26:03 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Kq7vv2S1Zz5lQ; Thu, 28 Apr 2022 21:26:03 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Kq7vv2GMPz2yV3; Thu, 28 Apr 2022 21:26:03 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4Kq7vt07kWz2xxL for ; Thu, 28 Apr 2022 21:26:02 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4Kq7vs5xgMzfF; Thu, 28 Apr 2022 21:26:01 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1651181161; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=VEPvTE8C4rY2uEJ5Dd/F9+DexSCxuPcuJvN4LDeC6wY=; b=dmcUhklqT4mcHU/gMd2BLbsS2MJcUunUr+ko+zGUF7p3uF/DQn6ZuCzPIiejiXWfMisw2M b00a1VuD5bjfpwDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1651181161; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=VEPvTE8C4rY2uEJ5Dd/F9+DexSCxuPcuJvN4LDeC6wY=; b=KLkAMSzmCr+PKcNdeP8qXIzWUc8WqjojF38U4Or3ti0ONL5NgtFT3BVKvnUlatSP7mnHzX +OpEVZv7LsEqlO1nKgPAN/Qhsz6/IRhKz1FXs6ajautH9Q1u1QDJlYkiyFSncQd/oG1390 ahkkRUbOut6Nl/bpOg5HDFRHYRQKR/z5/HAwibhy2PM8mbGY/t79e59gYWS1SveThpvz7y YtndHY2/y8TrJ2VtUTD9fsAWNkD9oGvB+HRMzuNxANPmYNk+ZpXAblX2RI6N0YAkkoA6kZ U/0tMDr99d7Fm0MZXWl7Yb6L6HYTiKKdEuM+oqSXlCgrTHo+pzCO6h6ktUxiMQ== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] ncdu: Update to version 1.17 Date: Thu, 28 Apr 2022 23:25:55 +0200 Message-Id: <20220428212555.2202732-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from version 1.16 to 1.17 - Update of rootfile not required - Changelog 1.17 - 2022-04-28 - ncdu-1.17.tar.gz Add ‘dark-bg’ color scheme and use that by default Use natural sort order when sorting by file name Improve compatibility with C89 environments Fix wrong assumption about errno not being set by realloc() Signed-off-by: Adolf Belka Reviewed-by: Peter Müller --- lfs/ncdu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/ncdu b/lfs/ncdu index 1e63a45aa..f1338f033 100644 --- a/lfs/ncdu +++ b/lfs/ncdu @@ -27,7 +27,7 @@ include Config SUMMARY = NCurses Disk Usage -VER = 1.16 +VER = 1.17 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 = 2 +PAK_VER = 3 DEPS = @@ -49,7 +49,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 61d004581bdcf1885bec24d0a1de4fc890fe91bba511abbdbc507a48f31946caf5c7324979e8410e53cfca8ada1b20342b737dc4e8b1f034f2fca5aea84e4369 +$(DL_FILE)_BLAKE2 = 7d36a648b8fb0a26d3b6bcc533ed8f510e7f37b3084cb585a0c785d73fd82f537e0f2f9493c3b56173eae1324255e7acf7617a1cd1614c92a3b7bf0d53b7d77f install : $(TARGET)