From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4bYTz50yHWz37Mg for ; Fri, 4 Jul 2025 10:15:13 +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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4bYTz14B5nz37V3 for ; Fri, 4 Jul 2025 10:15:09 +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 4bYTys3txZz7PH; Fri, 4 Jul 2025 10:15:01 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1751624101; 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=Xp2yrAtRZ8/L7GSF1h/Zx1qgV/VqwHqUxgSNAkWck6A=; b=W7zIHaxqbDvtGiGWbri/oK6QdKWupcoNkcRzJ0+KKIqckkn54GPHkJNWDDDTZtBIJVUmKq DiHOL3+NtFdBCLAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1751624101; 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=Xp2yrAtRZ8/L7GSF1h/Zx1qgV/VqwHqUxgSNAkWck6A=; b=q37TvRl9psSjtYky2yksV3Qcka+Wa+tQdmUYWy+5DMajTX5ddtWWqKdyZUuEIwjZ94AR6w JkllAtYHi5ma2FPGkqeM4rQNVFBqLSiDmmBrLFRHXpxeldTCCedSn6ZCl+WZ1uEI3fSypI ulIcPx5g08W7cE+NlZPw1/Aihwy9CdEgGTMRmottpgY8a+eVkrpSQWYXAbm0uDLZvd4DX0 Ql73oGM1V3BmKRVPOti25+pNK1lO7W5LDt4y60u1SRBwSxmXrk7IRhmSf0aK5dPi3cHIfh MJ5elwJ3UkIocDeLfL8SbpfOgAzilnLd0jazQImmJLi88P0c622mfAJS0etq/w== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] taglib: Update to version 2.1.1 Date: Fri, 4 Jul 2025 12:14:45 +0200 Message-ID: <20250704101446.8038-30-adolf.belka@ipfire.org> In-Reply-To: <20250704101446.8038-1-adolf.belka@ipfire.org> References: <20250704101446.8038-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 Content-Transfer-Encoding: 8bit - Update from version 2.0.2 to 2.1.1 - Update of rootfile - Changelog 2.1.1 * Map ID3v2.3 IPLS frames to both ID3v2.4 TIPL and TMCL to have a consistent behavior when using MusicBrainz tags with the property map interface. * Fix missing include for `wchar_t` when using C bindings with MinGW. 2.1 * Support for Shorten (SHN) files. * Compile time configuration of supported formats: WITH_APE, WITH_ASF, ... * Compile time configuration of data and temporary directories for unit tests: TESTS_DIR and TESTS_TMPDIR. * C bindings: Added taglib_file_new_wchar() and taglib_file_new_type_wchar(). * Preserve unicode encoding when downgrading to ID3v2.3. * Do not store FLAC metadata blocks which are too large. * Fix segfaults with String and ByteVector nullptr arguments. Signed-off-by: Adolf Belka --- config/rootfiles/packages/taglib | 8 ++++++-- lfs/taglib | 15 +++++++-------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/config/rootfiles/packages/taglib b/config/rootfiles/packages/taglib index 1dbab71e1..3ebbae98f 100644 --- a/config/rootfiles/packages/taglib +++ b/config/rootfiles/packages/taglib @@ -71,6 +71,9 @@ usr/bin/taglib-config #usr/include/taglib/rifffile.h #usr/include/taglib/s3mfile.h #usr/include/taglib/s3mproperties.h +#usr/include/taglib/shortenfile.h +#usr/include/taglib/shortenproperties.h +#usr/include/taglib/shortentag.h #usr/include/taglib/speexfile.h #usr/include/taglib/speexproperties.h #usr/include/taglib/synchronizedlyricsframe.h @@ -78,6 +81,7 @@ usr/bin/taglib-config #usr/include/taglib/tag.h #usr/include/taglib/tag_c.h #usr/include/taglib/taglib.h +#usr/include/taglib/taglib_config.h #usr/include/taglib/taglib_export.h #usr/include/taglib/tbytevector.h #usr/include/taglib/tbytevectorlist.h @@ -120,9 +124,9 @@ usr/bin/taglib-config #usr/lib/cmake/taglib/taglib-targets.cmake #usr/lib/libtag.so usr/lib/libtag.so.2 -usr/lib/libtag.so.2.0.2 +usr/lib/libtag.so.2.1.1 #usr/lib/libtag_c.so usr/lib/libtag_c.so.2 -usr/lib/libtag_c.so.2.0.2 +usr/lib/libtag_c.so.2.1.1 #usr/lib/pkgconfig/taglib.pc #usr/lib/pkgconfig/taglib_c.pc diff --git a/lfs/taglib b/lfs/taglib index 527ae9e3f..3e6001aea 100644 --- a/lfs/taglib +++ b/lfs/taglib @@ -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 # @@ -26,7 +26,7 @@ include Config SUMMARY = Audio Meta-Data Library -VER = 2.0.2 +VER = 2.1.1 THISAPP = taglib-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = taglib -PAK_VER = 5 +PAK_VER = 6 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 389af213bd467d68e2b0ca4485f51c35e660439baf2ecb7165069e5cb73589f5cf6c92d56e25780cea60e082b6fa51c5dde320dd25b8c5ef0e3b738ff0a6d4ea +$(DL_FILE)_BLAKE2 = 2661183375764cebce8393d317ffa818abab16904b4481db30b2694fedce512ac9dc0239cf03decaddabb380f59b53e043bb28e5a0071277c53442aa683ba4cf install : $(TARGET) check : $(patsubst %,$(DIR_CHK)/%,$(objects)) @@ -83,10 +83,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && mkdir -pv build cd $(DIR_APP)/build && cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_SHARED_LIBS=ON - + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_SHARED_LIBS=ON cd $(DIR_APP)/build && make $(MAKETUNING) cd $(DIR_APP)/build && make install @rm -rf $(DIR_APP) -- 2.50.0