taglib: Update to version 2.1.1
Commit Message
- 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 <adolf.belka@ipfire.org>
---
config/rootfiles/packages/taglib | 8 ++++++--
lfs/taglib | 15 +++++++--------
2 files changed, 13 insertions(+), 10 deletions(-)
@@ -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
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
# #
# 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)