From patchwork Wed Apr 27 17:17:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5557 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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4KpQRy3Vd7z3x1y for ; Wed, 27 Apr 2022 17:17:50 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4KpQRw43jhz41g; Wed, 27 Apr 2022 17:17:48 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4KpQRw2crGz2yf6; Wed, 27 Apr 2022 17:17:48 +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) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4KpQRv20Rmz2xGC for ; Wed, 27 Apr 2022 17:17:47 +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 4KpQRt5SlKzPq; Wed, 27 Apr 2022 17:17:46 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1651079866; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=BnO2Q+E9cGv6ULH38SXmoO/wh28SVxu1mZzBhnH8EXY=; b=psC+zWOAmBik9oFVu2UbgcmfCDJm5Mty/SzwYs5LOQpEwGvgDCtpu/gokhp/puaXB4EHB0 4Dvt5I1CKVc8iQBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1651079866; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=BnO2Q+E9cGv6ULH38SXmoO/wh28SVxu1mZzBhnH8EXY=; b=IjTLADQ4dzsNcSq+8wDkf7LNk4id+X+IdiETH3sRg+wBZcYqQejHofJK5PONOsE6SG0ZJI SIteNlBZCP+Y2onphkhHmFv53wAlm63EW+VITJ9bvL8HTo4FWuIDvmfLP9DrxUIPaE9a28 hAnohO7RPr3VIBKigAgUjJHiIXcwbSLe1RJkRnNqI0xLYb9+07BNk4+4JFcb/I9qZGxO/q 7wSITTEx1eys5BdD7e7hhX+eYpczpmhQr2nZ7DUCXGpo1J+7NjHpU8evCDoDDNN3DD1ZZr il3km8OT3CDKrha3c5P4HAW9iK0N0NBn5n8SkMIUQt/rPsXZ+iNDvBbo7NOL9Q== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] libinih: Update to version r55 Date: Wed, 27 Apr 2022 19:17:42 +0200 Message-Id: <20220427171742.3494434-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 r53 to r55 - Update of rootfile not required - Changelog inih version 55 Added "version" to meson.build config: #135 (but bumped up to 55 in a subsequent commit, for this release). inih version 54 Mainly #134, adding the visibility symbols to the Meson build config, but also other small tweaks to tests and so on. Signed-off-by: Adolf Belka Reviewed-by: Peter Müller --- lfs/libinih | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/libinih b/lfs/libinih index df46d5218..0b4793d5d 100644 --- a/lfs/libinih +++ b/lfs/libinih @@ -24,7 +24,7 @@ include Config -VER = r53 +VER = r55 THISAPP = inih-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -42,7 +42,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 1242e6273c9dd9a11ea026a3495a487b2aa72d8e01f34304d8568c88897ae9c9bb425246f992dc16f4dc2210ec14c597d0ef595cec84ff98a5d6101ee5a643b9 +$(DL_FILE)_BLAKE2 = 28b5e04e54e31b3e0392b44799a2c2e75c1fe00527491a857480b7e960302f2438d29652b131dae5147487c863d93f577b67aeff3ab5f863546d3661628d8236 install : $(TARGET)