mkvtoolnix: 86.0 -> 87.0

This commit is contained in:
Tim Biermann 2024-09-10 23:37:24 +02:00
parent db02122353
commit 9057c2b09d
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 5 additions and 36 deletions

View File

@ -1,6 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35HmAFIZgVXN5tY2ikhaBDpYntchxGlb62nkFiEEY2YQpNcUs8ZIXRFiuvY41gD8D6gfhJyGbMkgJCbbWCa3Aws=
SHA256 (Pkgfile) = 5320b220dd5ed26c25c7d9d481fdb0a27488a4b45cbad1ecd79fff1b503c0b8b
RWSagIOpLGJF30J0C42NWDSxqmIqsEm+tkA2d1b/eQhyEsmPa8kBQENVV2xbcpEczjD9X6fZvScQeXHLDYMvosCWjqIDfJ5+EgM=
SHA256 (Pkgfile) = 9225d0891fa85169229e89f9bd115ee86b0abeaef38e08eac1000a2282fcdf09
SHA256 (.footprint) = bae97e1f0ab2b9e8ddb6194eff37e00cec42b8d17cef132aae16f25f60782c8d
SHA256 (mkvtoolnix-86.0.tar.xz) = 29a9155fbba99f9074de2abcfbdc4e966ea38c16d9f6f547cf2d8d9a48152c97
SHA256 (b57dde69dc80b151844e0762a2ae6bca3ba86d95.patch) = 09d6e953db263db44ea70d0c18b9d6ddb993431b223a27d113733036eaca46be
SHA256 (mkvtoolnix-87.0.tar.xz) = 01cdfcbe01d9a771da4d475ed44d882a97695d08b6939684cebf56231bdee820

View File

@ -5,16 +5,14 @@
# Optional: hicolor-icon-theme
name=mkvtoolnix
version=86.0
version=87.0
release=1
source=(https://mkvtoolnix.download/sources/$name-$version.tar.xz
b57dde69dc80b151844e0762a2ae6bca3ba86d95.patch)
source=(https://mkvtoolnix.download/sources/$name-$version.tar.xz)
build() {
cd $name-$version
rm -rf lib/{fmt,libebml,libmatroska,nlohmann-json,pugixml}
patch -Np1 -i $SRC/b57dde69dc80b151844e0762a2ae6bca3ba86d95.patch
./autogen.sh
./configure $PKGMK_MKVTOOLNIX \

View File

@ -1,28 +0,0 @@
From b57dde69dc80b151844e0762a2ae6bca3ba86d95 Mon Sep 17 00:00:00 2001
From: Kefu Chai <tchaikov@gmail.com>
Date: Mon, 15 Jul 2024 11:10:09 +0800
Subject: [PATCH] fix build with fmt v11
fmt::join() was moved into fmt/ranges.h since fmt 11, so let's
include this header for using it.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
---
src/common/common.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/common/common.h b/src/common/common.h
index 68a129fab2..b5e0c8a899 100644
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -35,6 +35,7 @@
#include <fmt/format.h>
#include <fmt/ostream.h>
+#include <fmt/ranges.h>
#include <boost/algorithm/string.hpp>
#include <boost/multiprecision/cpp_int.hpp>
--
GitLab