Mon Jun 29 15:12:00 2020 UTC ()
mkvtoolnix: updated to 48.0.0

Version 48.0.0 "Sick Of Losing Soulmates" 2020-06-27

New features and enhancements

* mkvmerge: AC-3: file identification will report AC-3 tracks encoded in Dolby
  Surround EX as codec "AC-3 Dolby Surround EX".
* MKVToolNix GUI: multiplexer: on new installations the GUI will now recognize
  all known ISO 639-2 language codes in file names by default instead of only
  the top 100 of languages by native speakers.
* MKVToolNix GUI: multiplexer: on new installations the list of "often used
  languages" will by default only contain certain agnostic ones ("multiple
  languages", "no linguistic content", "reserved for local use", "uncoded
  languages"), "English" and the default user interface language. The "list of
  spoken languages by native speaks" isn't used anymore.
* MKVToolNix GUI: header editor: added an option to remove all attachments to
  the tree context menu.
* MKVToolNix GUI: while the GUI is running it will remember the last page that
  was selected when the preferences dialog is closed. Upon re-opening the
  preferences that page will be selected by default.

Bug fixes

* mkvmerge: fixed a segmentation fault when exiting prematurely due to write
  errors such as the destination having run out of space.
* mkvmerge: DTS: fixed wrong channel count for DTS tracks with XCh
  extensions.
* mkvmerge: MPEG TS reader: fixed detecting h.264/AVC and h.265/HEVC tracks
  that consist of only a single frame.
* mkvmerge: MPEG TS reader: fixed handling of unbounded PES sizes for tracks
  that consist of only a single PES packet.
* mkvmerge: MPEG TS reader: PGS subtitle tracks are now exempt from the
  "detect bogus subtitle timestamps" heuristic which could lead to some PGS
  subtitles not being timestamped correctly. Symptoms were that they were
  shown at the wrong time or that they were shown indefinitely.
* mkvmerge: MPEG TS reader: when reading MPLS playlists the start timestamps
  of a play items were handled wrong: all the timestamps of packets read were
  compared to that start timestamp, dropping those packets whose timestamps
  were smaller than the play item's start timestamp. The correct behavior is
  to accept all packets as soon as the first one with a timestamp equal to or
  larger than the play item's start timestamp is encountered. This could
  result in PGS subtitle entries located right at the start of the play item
  being garbled/lost as they consist of multiple PES packets for which some
  timestamps are often slightly smaller.
* mkvmerge: MPEG TS reader: when reading MPLS playlists mkvmerge will no
  longer read the whole M2TS files they reference, processing only the packets
  lying inside the timestamp range given by the playlists's play item's start
  & end timestamps. Instead mkvmerge will use the index information present in
  corresponding clip information (CLPI) files in order to seek to the nearest
  file position of the play item's start timestamp. Additionally mkvmerge will
  simply stop processing a file once the end timestamp is seen. This change
  greatly speeds up processing files from which only small portions must be
  read.
* mkvmerge: WavPack: fixed support for files created by v5 of the
  program. Checksums, DSD audio data and non-standard sampling rates are
  handled correctly. Patch by David Bryant.
* MKVToolNix GUI: multiplexer: fixed the cursor being positioned wrong after
  entering or pasting characters that aren't allowed in file names into the
  "destination file" control.

Build system changes

* libEBML v1.4.0 and libMatroska v1.6.0 are now required.

Other changes

* The source code repository's main development branch was renamed to `main`.


(adam)
diff -r1.154 -r1.155 pkgsrc/multimedia/mkvtoolnix/Makefile
diff -r1.79 -r1.80 pkgsrc/multimedia/mkvtoolnix/distinfo

cvs diff -r1.154 -r1.155 pkgsrc/multimedia/mkvtoolnix/Makefile (expand / switch to unified diff)

--- pkgsrc/multimedia/mkvtoolnix/Makefile 2020/06/02 08:24:27 1.154
+++ pkgsrc/multimedia/mkvtoolnix/Makefile 2020/06/29 15:12:00 1.155
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.154 2020/06/02 08:24:27 adam Exp $ 1# $NetBSD: Makefile,v 1.155 2020/06/29 15:12:00 adam Exp $
2 2
3DISTNAME= mkvtoolnix-47.0.0 3DISTNAME= mkvtoolnix-48.0.0
4PKGREVISION= 1 
5CATEGORIES= multimedia 4CATEGORIES= multimedia
6MASTER_SITES= https://mkvtoolnix.download/sources/ 5MASTER_SITES= https://mkvtoolnix.download/sources/
7EXTRACT_SUFX= .tar.xz 6EXTRACT_SUFX= .tar.xz
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://mkvtoolnix.download/ 9HOMEPAGE= https://mkvtoolnix.download/
11COMMENT= Set of tools to create, alter and inspect Matroska files 10COMMENT= Set of tools to create, alter and inspect Matroska files
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14BUILD_DEPENDS+= docbook-xsl>=1.79.1nb5:../../textproc/docbook-xsl 13BUILD_DEPENDS+= docbook-xsl>=1.79.1nb5:../../textproc/docbook-xsl
15BUILD_DEPENDS+= po4a-[0-9]*:../../textproc/po4a 14BUILD_DEPENDS+= po4a-[0-9]*:../../textproc/po4a
16BUILD_DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} 15BUILD_DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR}
17 16
@@ -42,24 +41,24 @@ do-install: @@ -42,24 +41,24 @@ do-install:
42 cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} ${RAKE} install 41 cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${INSTALL_ENV} ${RAKE} install
43 42
44.include "options.mk" 43.include "options.mk"
45 44
46.include "../../lang/ruby/rubyversion.mk" 45.include "../../lang/ruby/rubyversion.mk"
47.include "../../archivers/bzip2/buildlink3.mk" 46.include "../../archivers/bzip2/buildlink3.mk"
48.include "../../archivers/lzo/buildlink3.mk" 47.include "../../archivers/lzo/buildlink3.mk"
49.include "../../audio/flac/buildlink3.mk" 48.include "../../audio/flac/buildlink3.mk"
50.include "../../audio/libvorbis/buildlink3.mk" 49.include "../../audio/libvorbis/buildlink3.mk"
51.include "../../converters/libiconv/buildlink3.mk" 50.include "../../converters/libiconv/buildlink3.mk"
52.include "../../devel/boost-headers/buildlink3.mk" 51.include "../../devel/boost-headers/buildlink3.mk"
53.include "../../devel/boost-libs/buildlink3.mk" 52.include "../../devel/boost-libs/buildlink3.mk"
54.include "../../devel/gettext-lib/buildlink3.mk" 53.include "../../devel/gettext-lib/buildlink3.mk"
55BUILDLINK_ABI_DEPENDS.libebml+= libebml>=1.3.5 54BUILDLINK_API_DEPENDS.libebml+= libebml>=1.4.0
56.include "../../devel/libebml/buildlink3.mk" 55.include "../../devel/libebml/buildlink3.mk"
57.include "../../devel/zlib/buildlink3.mk" 56.include "../../devel/zlib/buildlink3.mk"
58.include "../../multimedia/libmatroska/buildlink3.mk" 57.include "../../multimedia/libmatroska/buildlink3.mk"
59.include "../../multimedia/libogg/buildlink3.mk" 58.include "../../multimedia/libogg/buildlink3.mk"
60.include "../../sysutils/file/buildlink3.mk" 59.include "../../sysutils/file/buildlink3.mk"
61.include "../../textproc/cmark/buildlink3.mk" 60.include "../../textproc/cmark/buildlink3.mk"
62.include "../../textproc/expat/buildlink3.mk" 61.include "../../textproc/expat/buildlink3.mk"
63.include "../../textproc/fmtlib/buildlink3.mk" 62.include "../../textproc/fmtlib/buildlink3.mk"
64.include "../../textproc/pugixml/buildlink3.mk" 63.include "../../textproc/pugixml/buildlink3.mk"
65.include "../../mk/bsd.pkg.mk" 64.include "../../mk/bsd.pkg.mk"

cvs diff -r1.79 -r1.80 pkgsrc/multimedia/mkvtoolnix/distinfo (expand / switch to unified diff)

--- pkgsrc/multimedia/mkvtoolnix/distinfo 2020/05/31 11:34:15 1.79
+++ pkgsrc/multimedia/mkvtoolnix/distinfo 2020/06/29 15:12:00 1.80
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.79 2020/05/31 11:34:15 adam Exp $ 1$NetBSD: distinfo,v 1.80 2020/06/29 15:12:00 adam Exp $
2 2
3SHA1 (mkvtoolnix-47.0.0.tar.xz) = 785906ca26d12105235bed2155689884cc36c92c 3SHA1 (mkvtoolnix-48.0.0.tar.xz) = 9bbe9a58f8ac5f9934a7709bf82ed94f7a7be455
4RMD160 (mkvtoolnix-47.0.0.tar.xz) = d98253b41b71b078ea60b1b90a6f9c2f2d26d292 4RMD160 (mkvtoolnix-48.0.0.tar.xz) = 13140533c087f62767c054122f10c2f2dcbed4f3
5SHA512 (mkvtoolnix-47.0.0.tar.xz) = dad1c976acfbbaaa75114ea21ebd5bd1367b3fb843178c11fa5ac995169411a1f9210d43bc3adfd8990a8e69ba3c5dbe6b7416bcd9250a804df1a571d04afc2d 5SHA512 (mkvtoolnix-48.0.0.tar.xz) = 33cd028eb990a01433b511416b613ae0c44b398a80c4f2d56a8d419b0b76fde2c36f04024a182402d7e787ff369222df7f22873db34efe7af03746c1c2def80d
6Size (mkvtoolnix-47.0.0.tar.xz) = 7532248 bytes 6Size (mkvtoolnix-48.0.0.tar.xz) = 7476388 bytes
7SHA1 (patch-Rakefile) = 94c0a9ae0443f652a87f91cec195fe0d7afb61ac 7SHA1 (patch-Rakefile) = 94c0a9ae0443f652a87f91cec195fe0d7afb61ac
8SHA1 (patch-src_common_locale.cpp) = 2f3113c8c9171b87a421df447f6c421b1e4dc7e0 8SHA1 (patch-src_common_locale.cpp) = 2f3113c8c9171b87a421df447f6c421b1e4dc7e0