Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmatroska/
Date: Tue, 30 Jun 2020 02:49:33
Message-Id: 1593483378.115876aa3a253f39645cdeb1cbc9e9f65a646b85.radhermit@gentoo
1 commit: 115876aa3a253f39645cdeb1cbc9e9f65a646b85
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 02:16:18 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 02:16:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115876aa
7
8 media-libs/libmatroska: version bump to 1.6.0
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-libs/libmatroska/Manifest | 1 +
13 media-libs/libmatroska/libmatroska-1.6.0.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/media-libs/libmatroska/Manifest b/media-libs/libmatroska/Manifest
17 index 3a8238b2e9a..c83f982bada 100644
18 --- a/media-libs/libmatroska/Manifest
19 +++ b/media-libs/libmatroska/Manifest
20 @@ -1 +1,2 @@
21 DIST libmatroska-1.5.2.tar.xz 64996 BLAKE2B 6af202b9817ed54feca76c0a9ed60a0eca0431ffc4ebc9aeae2df191066501c16fb7bb8dc37cb6353eb22c87dfe9fa22420cbbf18d3a6a6edeec4900a59bc0cf SHA512 122b71b91ae89e2a7cc89db17655a006248d58f18d913b4f9ffc885aef7e39681a3a16eed43cd8ecd949c570a939007797c79829f5ee87d08562aee3f0224ba2
22 +DIST libmatroska-1.6.0.tar.xz 65316 BLAKE2B a374ed7f6ee46b578f4643bea5480d3d429e1cd3240e72876ea8f7bd510f161329b4470bfb0a47053baed34f4e99d7292dd0d213ecf97fd78007e031360edaad SHA512 7908730aeae426e3f7a90c6cc9151686b453e03cc7046b87a655e51c78c6e5fde5c37d7e0db18c2c237ce853dbe428671b983801104a0860ab0ab1919234f30f
23
24 diff --git a/media-libs/libmatroska/libmatroska-1.6.0.ebuild b/media-libs/libmatroska/libmatroska-1.6.0.ebuild
25 new file mode 100644
26 index 00000000000..b11f8b3bc3d
27 --- /dev/null
28 +++ b/media-libs/libmatroska/libmatroska-1.6.0.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit cmake
36 +
37 +DESCRIPTION="Extensible multimedia container format based on EBML"
38 +HOMEPAGE="https://www.matroska.org/ https://github.com/Matroska-Org/libmatroska/"
39 +SRC_URI="https://dl.matroska.org/downloads/${PN}/${P}.tar.xz"
40 +
41 +LICENSE="LGPL-2.1"
42 +SLOT="0/7" # subslot = soname major version
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND=">=dev-libs/libebml-1.4.0:="
47 +DEPEND="${RDEPEND}"
48 +
49 +src_configure() {
50 + local mycmakeargs=( -DBUILD_SHARED_LIBS=YES )
51 + cmake_src_configure
52 +}