From patchwork Tue Aug 26 18:48:57 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9007 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) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4cBGtX4dFhz3wkP for ; Tue, 26 Aug 2025 18:49:56 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4cBGtX36ylz2t9 for ; Tue, 26 Aug 2025 18:49:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cBGt61NCVz33gT for ; Tue, 26 Aug 2025 18:49:34 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cBGsx70xNz32Mj for ; Tue, 26 Aug 2025 18:49:25 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cBGsw6m5Zz5Hc; Tue, 26 Aug 2025 18:49:24 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1756234165; 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: in-reply-to:in-reply-to:references:references; bh=vQ7Jz/C7ky3mliGMyZWt8Q73d7CyzNfmF3enzC/NYak=; b=CUDA9mOKfwC6gx6BVTUHrVRJfOBvCoeeP/TJUo0umRiwhHgMG93ny+2Isl5V3hHlA4mGrX Sev730/8eQxNX4DA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1756234165; 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: in-reply-to:in-reply-to:references:references; bh=vQ7Jz/C7ky3mliGMyZWt8Q73d7CyzNfmF3enzC/NYak=; b=Q+kpBCLW7WtfqD+ZV6nLfFdnTDfu/kw8Ky7Vn8O9eSGccy0EKIvliBPeCOEjSD9vMe1bw8 SSn4BV0bTD5iyz0DiaPM9u0Fgr2pnPveI4zH4I9+v8imYbfp2/Pcmo6Vp3RlcG1JXpdtQG q45GgPV1O60nkByaZxtN+3e1zqzswNcdO6f5RxbRoCeHQ/XJHLiT3TW8XqXstEbXppt8t5 PJFDPNaSKbPJsK5dy+5xnNat4p584wNo4c8geLyit0kSbrszdZx5Emh9Xdl92ikVTjzJ7E BohATjjmnpPED9oJoYDNdktx374kEpdS67UwDO9kYsPXxNbSVYe//6x1awgxUA== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] libinih: Update to version 61 Date: Tue, 26 Aug 2025 20:48:57 +0200 Message-ID: <20250826184904.6229-16-adolf.belka@ipfire.org> In-Reply-To: <20250826184904.6229-1-adolf.belka@ipfire.org> References: <20250826184904.6229-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Update from version 58 to 61 - Update of rootfile not required - Changelog 61 add option to disable the test suite by @sage-etcher in #195 add ini_parse_string_length() that avoids internal strlen(), and ease… by @lihuiba in #196 Fix bug where name only options are not processed after an error has occurred by @msquire in #197 Optimise ini_rstrip() by @msquire in #198 60 test long lines by @isidroas in #190 Require C++ only for the host machine; bump project version to 59 by @bgilbert in #191 meson: fix tests under Windows by @neheb in #192 59 INIReader: change variable visibility from private to protected by @meiyasan in #165 Add meson test driver by @matoro in #170 Swap rstrip() and lskip() to reduce execution time of strlen() by @isidroas in #177 Add preprocessor exclusions when INI_ALLOW_MULTILINE=0 by @isidroas in #178 tests: define only once the compiler and flag by @isidroas in #179 Test that long sections are truncated by @isidroas in #180 Add INIReader Sections and Keys methods by @Ishan09811 in #186 If a line is longer than INI_MAX_LINE, consume input up to next newline by @benhoyt in #188 Signed-off-by: Adolf Belka --- lfs/libinih | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lfs/libinih b/lfs/libinih index 2df1d7799..7a0eca385 100644 --- a/lfs/libinih +++ b/lfs/libinih @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2025 IPFire Team # # # # 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 # @@ -24,7 +24,7 @@ include Config -VER = 58 +VER = 61 THISAPP = inih-r$(VER) DL_FILE = $(THISAPP).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = ba71b21b30c039df026adbd29b422b064934046ced21a37479421e866b73969826dc1fea4e3bc0c5ea427248c774d8f80b83056c54769d454bafa2f336d08024 +$(DL_FILE)_BLAKE2 = 6e0d5c3976db52c2a49c56026be79e00ff21fd92a96c37e13478c0e70ed955ec555af66f9737beb4e1338bb286418d86ae401098a6e7b9f599e05619458fea29 install : $(TARGET) @@ -76,7 +76,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) - cd $(DIR_APP) && meson --prefix=/usr builddir/ + cd $(DIR_APP) && meson \ + --prefix=/usr \ + builddir/ cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) cd $(DIR_APP) && ninja -C builddir/ install @rm -rf $(DIR_APP)