From patchwork Wed Sep 20 11:30:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 7221 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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4RrGYy54FSz3wnC for ; Wed, 20 Sep 2023 11:31:02 +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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RrGYx2NgSz1x0; Wed, 20 Sep 2023 11:31:01 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4RrGYx1dyFz2yWs; Wed, 20 Sep 2023 11:31:01 +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 4RrGYw20wmz2xGy for ; Wed, 20 Sep 2023 11:31:00 +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 (secp384r1) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4RrGYv4WF2z3BW; Wed, 20 Sep 2023 11:30:59 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1695209459; 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=QGA5T9QvAVikFODFMdgB4VMIi4uqWkozvJXWmDn2q90=; b=XJDtvwz8ny4GMr4LwEOaDM4xNQ+upHZCu3TfsJLJ9Wv+UGTu9KzeHLiexk9m0LpekEQvUS 47b/0Aw2JPqYnCCA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1695209459; 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=QGA5T9QvAVikFODFMdgB4VMIi4uqWkozvJXWmDn2q90=; b=ZVT2FN3dmJOup4alzIxpKAOeWcw2UopeShby06A8R6yfLJpFhRNSlXW5eyT3w6y/T48bol s7I1zqdSLBTagzZEz7cHZXap0DuopKx4eDhBHk6KQmCOamM6blddequ9jDKGDr2Zxos8YS XKt7fmpoRvxdnoMnhQP7eNugnZFq+awSlWaMZMG1qj7UW5pYMRywiVE0x2hIkCGPk0247Q rvWirVn9P+pCqbk0cvsMKywdotbSjkkOLUAMgfSBmkKP/Zk7tIkeEAxvv8+potcx0aTLWx 4pvN87DA6IFtnbGE9V/XYDl2YU/T/68nm3AB0z6n+1pK2IOTMk1Pmta8aEVUaA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] tree: Update to version 2.1.1-1 Date: Wed, 20 Sep 2023 13:30:56 +0200 Message-ID: <20230920113056.94387-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" - IPFire-3.x - Update from version 2.1.0-2 to 2.1.1-1 - Changelog 2.1.1 - Various spelling corrections. - Fix issue where following links while doing JSON output would lead to incorrect JSON output. (simonpmind) - Fix issue where .info patterns relative to the .info file that did not use a wildcard for matching the prefix were not matching files properly. (German Lashevich) - Added support for making trees from tab indented files (--fromtabfile) (gitlab @AvidSeeker), also cleaned up some other issues in the fromfile code. - Fix buffer overflow in listdir() when file names are allowed to be longer than 256 characters (like when using fromfile.) (Javier Jaramago Fernández) - If when attempting to open a .gitignore or .info file from a top level directory and failing, recursively check the parents for such a file. This stops when successful at opening such a file. This behavior might in the future be modified to open all such files in all parents to until root is reached. (Damien Bezborodov) Note that this requires the use of realpath() which I think may be an issue for some OSes. - Fix issue where tree would never descend (-l) a symbolic link when a full tree is gathered (--du/matchdirs/prune) (gitlab @6ramr) Signed-off-by: Adolf Belka --- tree/tree.nm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tree/tree.nm b/tree/tree.nm index 895948bc4..8eaead08c 100644 --- a/tree/tree.nm +++ b/tree/tree.nm @@ -4,8 +4,8 @@ ############################################################################### name = tree -version = 2.1.0 -release = 2 +version = 2.1.1 +release = 1 groups = Applications/File url = https://mama.indstate.edu/users/ice/tree/