From b3acd186b5afcdea061be3dc704e9de77d5b6e4b Mon Sep 17 00:00:00 2001 From: Mateusz Sylwestrzak Date: Tue, 25 Feb 2025 23:59:04 +0100 Subject: [PATCH] mp3unicode: revbump for libtag --- srcpkgs/mp3unicode/patches/taglib-2.patch | 11 +++++++++++ srcpkgs/mp3unicode/template | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/mp3unicode/patches/taglib-2.patch diff --git a/srcpkgs/mp3unicode/patches/taglib-2.patch b/srcpkgs/mp3unicode/patches/taglib-2.patch new file mode 100644 index 00000000000..e7a4091a165 --- /dev/null +++ b/srcpkgs/mp3unicode/patches/taglib-2.patch @@ -0,0 +1,11 @@ +--- a/mp3unicode.cpp 2012-05-07 14:03:19.000000000 +0200 ++++ b/mp3unicode.cpp 2025-02-25 23:57:07.907736208 +0100 +@@ -192,7 +192,7 @@ + bool + heuristicIsUnicode (TagLib::String string) { + unsigned u0080 = 0; +- for(TagLib::uint i = 0; i < string.size(); i++) { ++ for(unsigned int i = 0; i < string.size(); i++) { + if(string[i] > 255) { + return true; + } diff --git a/srcpkgs/mp3unicode/template b/srcpkgs/mp3unicode/template index 7c30d271da3..8bee0048c9b 100644 --- a/srcpkgs/mp3unicode/template +++ b/srcpkgs/mp3unicode/template @@ -1,7 +1,7 @@ # Template file for 'mp3unicode' pkgname=mp3unicode version=1.2.1 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="taglib-devel"