pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/mkvtoolnix mkvtoolnix: updated to 32.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c97a4b83a651
branches:  trunk
changeset: 320959:c97a4b83a651
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Mar 13 17:36:26 2019 +0000

description:
mkvtoolnix: updated to 32.0.0

Version 32.0.0 "Astral Progressions":

New features and enhancements
* mkvinfo: when sizes are output the size of the element's data portion is
  output in addition to the element's total size.
* MKVToolNix GUI: info tool: the element's data portion is
  shown as an extra column.
* MKVToolNix GUI: multiplexer: added column "Delay" to the track list
  containing the additional delay to apply during multiplexing.

Bug fixes
* all: fixed handling of Unicode code points > U+FFFF.
* mkvmerge: Windows: mkvmerge was crashing with an exception when trying to
  identify certain files that can be used on Blu-rays (such as MPEG transport
  streams of MPLS play list files) and when the file name was given as a UNC
  path (e.g. `\\servername\sharename\path\to\file.m2ts`). The GUI emitted
  errors such as "the JSON output could not be parsed" in that case.
* MKVToolNix GUI: the portable mode wasn't detected correctly when the current
  working directory the GUI was started from wasn't the directory the GUI's
  executable file was located it. Examples for when this is the case are
  Windows' "send to" or "open with" functions.
* MKVToolNix GUI: multiplexer: using button to change the current destination
  directory to one of the recently used ones did not update the file name
  according to the "make file name unique" setting.
* MKVToolNix GUI: multiplexer: the function "set destination file name from
  selected file's name" will now only change the destination file's name but
  not its path.

Build system changes
* libEBML v1.3.7 and libMatroska 1.5.0 are now required as they fix their
  handling of Unicode code points > U+FFFF.

diffstat:

 multimedia/mkvtoolnix/Makefile                      |   4 ++--
 multimedia/mkvtoolnix/distinfo                      |  13 ++++++-------
 multimedia/mkvtoolnix/patches/patch-Rakefile        |  17 +++++++++--------
 multimedia/mkvtoolnix/patches/patch-build-config.in |  15 ---------------
 4 files changed, 17 insertions(+), 32 deletions(-)

diffs (77 lines):

diff -r 44efc9aef4bb -r c97a4b83a651 multimedia/mkvtoolnix/Makefile
--- a/multimedia/mkvtoolnix/Makefile    Wed Mar 13 17:34:25 2019 +0000
+++ b/multimedia/mkvtoolnix/Makefile    Wed Mar 13 17:36:26 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.126 2019/02/12 23:46:23 adam Exp $
+# $NetBSD: Makefile,v 1.127 2019/03/13 17:36:26 adam Exp $
 
-DISTNAME=      mkvtoolnix-31.0.0
+DISTNAME=      mkvtoolnix-32.0.0
 CATEGORIES=    multimedia
 MASTER_SITES=  https://mkvtoolnix.download/sources/
 EXTRACT_SUFX=  .tar.xz
diff -r 44efc9aef4bb -r c97a4b83a651 multimedia/mkvtoolnix/distinfo
--- a/multimedia/mkvtoolnix/distinfo    Wed Mar 13 17:34:25 2019 +0000
+++ b/multimedia/mkvtoolnix/distinfo    Wed Mar 13 17:36:26 2019 +0000
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.63 2019/02/12 23:46:23 adam Exp $
+$NetBSD: distinfo,v 1.64 2019/03/13 17:36:26 adam Exp $
 
-SHA1 (mkvtoolnix-31.0.0.tar.xz) = 0a7dd9b4e90e222450dc3cc83560f1d77e54deac
-RMD160 (mkvtoolnix-31.0.0.tar.xz) = 32cef0bce6f968b45f7fa200eab5899557ea7581
-SHA512 (mkvtoolnix-31.0.0.tar.xz) = 085bc7d5a2b2e692d584bef5f31aab8dc25883cc93d9f2b2c35ea6356d64536763b6e9f7cef2dbaf1b789e73c05cb5f9e76ce76c54f034aa9d46c30983d1a5b7
-Size (mkvtoolnix-31.0.0.tar.xz) = 7282492 bytes
-SHA1 (patch-Rakefile) = 85e44c7649dc27207d127a2957d3a9aeed49ec7e
-SHA1 (patch-build-config.in) = a9072de691ee3e011b472280dd276a67f1799fac
+SHA1 (mkvtoolnix-32.0.0.tar.xz) = 17334cb0d4c7b5e93667dd956ed1c0eefc30b75c
+RMD160 (mkvtoolnix-32.0.0.tar.xz) = 4c8302cf3d00389bf1f7470ddae13a874a3f95c2
+SHA512 (mkvtoolnix-32.0.0.tar.xz) = a209360fcad3164ebf127b7a54542b2b791318cef1ac8acbb24e64458bd9fe693ea6fa2b44b6e85504decab9668296637d9d4ce706effcf6a9f0d7bdea64793a
+Size (mkvtoolnix-32.0.0.tar.xz) = 7282928 bytes
+SHA1 (patch-Rakefile) = 7dd13c59dd891d4736e47e8fa83c245ccf97223c
 SHA1 (patch-src_common_locale.cpp) = 46ba293fb0dee8af0e6e6fbe17c725a509101109
diff -r 44efc9aef4bb -r c97a4b83a651 multimedia/mkvtoolnix/patches/patch-Rakefile
--- a/multimedia/mkvtoolnix/patches/patch-Rakefile      Wed Mar 13 17:34:25 2019 +0000
+++ b/multimedia/mkvtoolnix/patches/patch-Rakefile      Wed Mar 13 17:36:26 2019 +0000
@@ -1,14 +1,15 @@
-$NetBSD: patch-Rakefile,v 1.2 2019/02/12 23:46:23 adam Exp $
+$NetBSD: patch-Rakefile,v 1.3 2019/03/13 17:36:26 adam Exp $
 
-Fix buildling on macOS.
+Leave pkgsrc to handle security features.
 
---- Rakefile.orig      2019-02-12 23:14:10.000000000 +0000
+--- Rakefile.orig      2019-03-12 21:12:17.000000000 +0000
 +++ Rakefile
-@@ -145,7 +145,6 @@ def setup_globals
-   cxxflags                 = "#{cflags_common} #{c(:STD_CXX)}"
-   cxxflags                += " -Woverloaded-virtual" if c(:COMPILER_TYPE) != "gcc" # too many false positives in EbmlElement.h on g++ 8
-   cxxflags                += " -Wnon-virtual-dtor -Wextra -Wno-missing-field-initializers #{c(:WSHADOW_COMPATIBLE_LOCAL)} #{c(:WNO_MAYBE_UNINITIALIZED)}"
--  cxxflags                += " -fvisibility=hidden -fvisibility-inlines-hidden" if $building_for[:macos]
+@@ -151,8 +151,6 @@ def setup_globals
+   cxxflags                += " -Wno-inconsistent-missing-override -Wno-potentially-evaluated-expression" if is_clang?
+   cxxflags                += " -Wmisleading-indentation -Wduplicated-cond"                               if check_compiler_version("gcc", "6.0.0")
+   cxxflags                += " -Wshadow-compatible-local -Wduplicated-branches"                          if check_compiler_version("gcc", "7.0.0")
+-  cxxflags                += " -fstack-protector"                                                        if is_gcc? && !check_compiler_version("gcc", "4.9.0")
+-  cxxflags                += " -fstack-protector-strong"                                                 if check_compiler_version("gcc", "4.9.0") && check_compiler_version("clang", "3.5.0")
    cxxflags                += " #{c(:QT_CFLAGS)} #{c(:BOOST_CPPFLAGS)} #{c(:USER_CXXFLAGS)}"
  
    ldflags                  = ""
diff -r 44efc9aef4bb -r c97a4b83a651 multimedia/mkvtoolnix/patches/patch-build-config.in
--- a/multimedia/mkvtoolnix/patches/patch-build-config.in       Wed Mar 13 17:34:25 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-build-config.in,v 1.2 2018/12/02 17:13:41 adam Exp $
-
-Leave pkgsrc to handle security features.
-
---- build-config.in.orig       2018-12-01 11:15:36.000000000 +0000
-+++ build-config.in
-@@ -97,7 +97,7 @@ EGREP = @EGREP@
- EXTRA_CFLAGS = @EXTRA_CFLAGS@
- EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
- FMT_INTERNAL = @FMT_INTERNAL@
--FSTACK_PROTECTOR = @FSTACK_PROTECTOR@
-+FSTACK_PROTECTOR =
- GOOGLE_BENCHMARK = @GOOGLE_BENCHMARK@
- GTEST_TYPE = @GTEST_TYPE@
- LDFLAGS_RPATHS = @LDFLAGS_RPATHS@



Home | Main Index | Thread Index | Old Index