From patchwork Wed Jan 21 13:38:59 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9427 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 "R12" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4dx5001BG4z3wpB for ; Wed, 21 Jan 2026 13:39:28 +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 "E8" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4dx4zx4SP7z5df for ; Wed, 21 Jan 2026 13:39:25 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4dx4zr73xcz34Hb for ; Wed, 21 Jan 2026 13:39:20 +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 "R12" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4dx4zk73TCz339t for ; Wed, 21 Jan 2026 13:39:14 +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 4dx4zj57R1z5Xh; Wed, 21 Jan 2026 13:39:13 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1769002753; 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: in-reply-to:in-reply-to:references:references; bh=8DxRYbncm+wo5GWkaNcfstu8dmwHPos3FFV2n7tTK4U=; b=s0RHTvxci0UYJAUWrpXTK4oMdF0k9W51uHjPE5sk/5KfqRCjSkFGRIYv0P17jM1vXwdKga LkD8ZliPr8pgG3BA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1769002753; 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: in-reply-to:in-reply-to:references:references; bh=8DxRYbncm+wo5GWkaNcfstu8dmwHPos3FFV2n7tTK4U=; b=kU6WtzgnK4HaI62LxjoTf+SoJkjXYQiYvLRTfva4j/tNPYqIdGyUTcP7BYLIP4O9JMPkqp RFokIDSqEv42IflRsfFwJsKRWmps27uChvnPmSHMjHbAcVtt4DS2wknovwn+8wAITlIslw nCN/vrPtiFZ1oeVuG5gAUs/3Hrx3z8Zu3AUM/f4tYd+TGdp4b+LzFw5rhj13dIdXZ/7rrI 9cJkF1i0FEmJE5rRMRGtp6/Nf6jsbRKpjobtzSp9PgN1VWZUoj8VNGJl80mdhwmqjpY7PS N26kTavEvuxHb5Ic3jAkhVYCm23HwnxFltv+Nq71QEoBuJ8QV+W4ZjfEiuwTiQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] libplist: Update to version 2.7.0 Date: Wed, 21 Jan 2026 14:38:59 +0100 Message-ID: <20260121133907.3552584-9-adolf.belka@ipfire.org> In-Reply-To: <20260121133907.3552584-1-adolf.belka@ipfire.org> References: <20260121133907.3552584-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 2.4.0 to 2.7.0 - Update of rootfile - Changelog 2.7.0 - Changes: * Add plist_new_unix_date, plist_get_unix_date_val, plist_set_unix_date_val functions that work with int64_t values representing a UNIX timestamp instead of using the 'MAC epoch'. These new functions should be used instead of plist_new_date, plist_get_date_val, and plist_set_date_val, which are now marked deprecated and might be removed in a future version of libplist. * Allow building the library without tool(s) * Switch to more generic global initializer method * json: Allow e+/E+ in exponent as per RFC 8259 * C++: Add more convenience functions to the interface * C++: Add more type variants to different constructors and operators - Bugfixes: * Fix segmentation fault when calling plist_sort() on an empty dictionary * Fix compilation on MSVC * C++: Fix bug in internal helper function of Array class * C++: Fix String::GetValue memory leaking and support assignment of const char* 2.6.0 - Changes: * Revert back API change around PLIST_DATA to use char* again 2.5.0 - Changes: * Change API around PLIST_DATA to use uint8_t* instead of char* * Add PLIST_DICT helper functions for different operations * Require Cython 3.0 for python bindings Signed-off-by: Adolf Belka --- config/rootfiles/packages/libplist | 4 ++-- lfs/libplist | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/rootfiles/packages/libplist b/config/rootfiles/packages/libplist index 53be64faa..019f9a586 100644 --- a/config/rootfiles/packages/libplist +++ b/config/rootfiles/packages/libplist @@ -17,11 +17,11 @@ #usr/lib/libplist++-2.0.la #usr/lib/libplist++-2.0.so usr/lib/libplist++-2.0.so.4 -usr/lib/libplist++-2.0.so.4.4.0 +usr/lib/libplist++-2.0.so.4.7.0 #usr/lib/libplist-2.0.la #usr/lib/libplist-2.0.so usr/lib/libplist-2.0.so.4 -usr/lib/libplist-2.0.so.4.4.0 +usr/lib/libplist-2.0.so.4.7.0 #usr/lib/pkgconfig/libplist++-2.0.pc #usr/lib/pkgconfig/libplist-2.0.pc #usr/share/man/man1/plistutil.1 diff --git a/lfs/libplist b/lfs/libplist index 8cf4f5470..e806a51e2 100644 --- a/lfs/libplist +++ b/lfs/libplist @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2026 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 # @@ -26,7 +26,7 @@ include Config SUMMARY = A library to handle Apple Property List format in binary or XML -VER = 2.4.0 +VER = 2.7.0 THISAPP = libplist-$(VER) DL_FILE = $(THISAPP).tar.bz2 @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libplist -PAK_VER = 3 +PAK_VER = 4 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = b12d929d4451389dfab4a2eaef2b8e85c5695a17feedad80f7dfbee7238f6b78b5d3819b9b59593612bb8f39b887147403a8de469b2d44ad26b8fa8c35b8fbef +$(DL_FILE)_BLAKE2 = 4ee37be5f39eeefb5273214fb211385fba1c23565c16b4a8a984bcf3ef8aa8c923d8d681a66979709f1e810b28bdccde4ae6864a5f7afdefdb0290ed9a8b29bd install : $(TARGET)