Gentoo Archives: gentoo-commits

From: John Helmert III <ajak@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/tsmuxer/
Date: Thu, 01 Sep 2022 17:46:37
Message-Id: 1662054318.3be5ebc85d013c7390db32d6fc5f10a88a127f30.ajak@gentoo
1 commit: 3be5ebc85d013c7390db32d6fc5f10a88a127f30
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Sat Feb 15 08:19:44 2020 +0000
4 Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 17:45:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be5ebc8
7
8 media-video/tsmuxer: update to new version
9
10 Updated to opensourced (license is Apache-2.0) version available at
11 https://github.com/justdan96/tsMuxer
12 Resolved multiple vulnerabilities (CVE-2021-26805, CVE-2021-34067,
13 CVE-2021-34068, CVE-2021-34069, CVE-2021-34070, CVE-2021-34071,
14 CVE-2021-35344, CVE-2021-35346, CVE-2021-45860, CVE-2021-45861,
15 CVE-2021-45863, CVE-2021-45864)
16
17 Closes: https://bugs.gentoo.org/691814
18 Bug: https://bugs.gentoo.org/783519
19 Package-Manager: Portage-2.3.84, Repoman-2.3.20
20 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
21 Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
22
23 media-video/tsmuxer/Manifest | 1 +
24 media-video/tsmuxer/metadata.xml | 3 ++
25 .../tsmuxer/tsmuxer-2.6.16_p20220706.ebuild | 40 ++++++++++++++++++++++
26 3 files changed, 44 insertions(+)
27
28 diff --git a/media-video/tsmuxer/Manifest b/media-video/tsmuxer/Manifest
29 index 602c43239fed..2ccc03ae6c61 100644
30 --- a/media-video/tsmuxer/Manifest
31 +++ b/media-video/tsmuxer/Manifest
32 @@ -1 +1,2 @@
33 DIST tsmuxer-2.6.11.tar.gz 538798 BLAKE2B 18f5f9002e356664ae84343afbadcddd447743404bcdcca709ba039ebb2ab05e5fba7eda0f30c86c29e18040d646004d1aec7dec34ed008ddbdb15228c63f09d SHA512 25b552153b76231ac1b88858d2178564d22edd18c6b08dc872765ac214ca6fd1ff6df5c5fff0f24647ea35f3f990e364bfb8adff5dd79c69cc12875fafb4f137
34 +DIST tsmuxer-2.6.16_p20220706.tar.gz 699612 BLAKE2B 101f97b0846a1051c7920878c304e62d6e4d42a3c85c0d1e0fe8cd7cf2ebfd49ad0c75966c0b5e171a6e878d19ff6a03481b29bac4d0b1994285c24893597349 SHA512 96ffaf04a02a0f7cc643a49b54d299648bff551aa03263547d17abeb7871cdb867d98d13becea6e69d1d5691afffc9011ce502a3e7e9bd78f5025bff79d3ad76
35
36 diff --git a/media-video/tsmuxer/metadata.xml b/media-video/tsmuxer/metadata.xml
37 index 3f59174a7177..5cb1a1ccb7e0 100644
38 --- a/media-video/tsmuxer/metadata.xml
39 +++ b/media-video/tsmuxer/metadata.xml
40 @@ -11,4 +11,7 @@
41 Dune HD Ultra, Sony Playstation3 and others). tsMuxeR is a part of
42 SmartCONTENT, content preparation solution.
43 </longdescription>
44 + <upstream>
45 + <remote-id type="github">justdan96/tsMuxer</remote-id>
46 + </upstream>
47 </pkgmetadata>
48
49 diff --git a/media-video/tsmuxer/tsmuxer-2.6.16_p20220706.ebuild b/media-video/tsmuxer/tsmuxer-2.6.16_p20220706.ebuild
50 new file mode 100644
51 index 000000000000..963a534a2470
52 --- /dev/null
53 +++ b/media-video/tsmuxer/tsmuxer-2.6.16_p20220706.ebuild
54 @@ -0,0 +1,40 @@
55 +# Copyright 1999-2022 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=8
59 +
60 +inherit cmake
61 +
62 +COMMIT="fafc3cd747457906290df773063ad8022684a33a"
63 +MY_PN="tsMuxer"
64 +
65 +DESCRIPTION="Utility to create and demux TS and M2TS files"
66 +HOMEPAGE="https://github.com/justdan96/tsMuxer"
67 +SRC_URI="https://github.com/justdan96/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
68 +
69 +LICENSE="Apache-2.0"
70 +SLOT="0"
71 +KEYWORDS="~amd64 ~x86"
72 +IUSE="qt5"
73 +
74 +BDEPEND="virtual/pkgconfig
75 + qt5? ( dev-qt/linguist-tools:5 )"
76 +DEPEND="qt5? (
77 + dev-qt/qtmultimedia:5
78 + dev-qt/qtwidgets:5
79 + )
80 + media-libs/freetype
81 + sys-libs/zlib"
82 +RDEPEND="${DEPEND}"
83 +
84 +S="${WORKDIR}/${MY_PN}-${COMMIT}"
85 +
86 +DOCS=( README.md )
87 +
88 +src_configure() {
89 + local mycmakeargs=(
90 + -DTSMUXER_STATIC_BUILD=OFF
91 + -DTSMUXER_GUI=$(usex qt5)
92 + )
93 + cmake_src_configure
94 +}