Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gst-plugins-ugly/
Date: Sun, 03 May 2020 19:12:59
Message-Id: 1588533131.ef7f11fd5e0557a71289f715b567c3eaeb9d6ae3.leio@gentoo
1 commit: ef7f11fd5e0557a71289f715b567c3eaeb9d6ae3
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Sat Feb 15 22:10:05 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun May 3 19:12:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7f11fd
7
8 media-libs/gst-plugins-ugly: Version bump, 1.16.2
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-libs/gst-plugins-ugly/Manifest | 1 +
14 .../gst-plugins-ugly-1.16.2.ebuild | 41 ++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/media-libs/gst-plugins-ugly/Manifest b/media-libs/gst-plugins-ugly/Manifest
18 index cda56f7ff09..ee418bb501f 100644
19 --- a/media-libs/gst-plugins-ugly/Manifest
20 +++ b/media-libs/gst-plugins-ugly/Manifest
21 @@ -1 +1,2 @@
22 DIST gst-plugins-ugly-1.14.3.tar.xz 889492 BLAKE2B 0c76ca28e1f062d0eac438f1692d2af33536719913ec10229eb6bc64f1f957bc7f6afe45e1c528ab4015c25dec61b8b9d2c517fee78a8a992c76bd41ff9e75d1 SHA512 0866bbcc3f1d0d668e77b5ef83fa7469dc80c957d2c6526126e761db46e83ff18d941c247833d27336106d8ba043e9ad50cafbddbff241f95bb16f9b1a0fbacc
23 +DIST gst-plugins-ugly-1.16.2.tar.xz 893964 BLAKE2B c607a7aa3459625a930021d247705f00e418e57557c57b8f9793bce74cb5c4d708b253250f0bbebd9698e9ff80d5636d578dded8c360ca2d34e3d43c9a722416 SHA512 9f393043f51b12b376607e68b3b86437af86e321e3a3566e59c7f3507ed26622211df87e30a23bcc927f37bc11f53ca3b29f1b12bf58e623ce18edc88a9cdee3
24
25 diff --git a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.16.2.ebuild b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.16.2.ebuild
26 new file mode 100644
27 index 00000000000..20f7b7bd4a7
28 --- /dev/null
29 +++ b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.16.2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GST_ORG_MODULE="gst-plugins-ugly"
36 +
37 +inherit gstreamer
38 +
39 +DESCRIPTION="Basepack of plugins for gstreamer"
40 +HOMEPAGE="https://gstreamer.freedesktop.org/"
41 +
42 +LICENSE="LGPL-2+" # some split plugins are LGPL but combining with a GPL library
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.40.0:2[${MULTILIB_USEDEP}]
47 + >=media-libs/gstreamer-${PV}:${SLOT}[${MULTILIB_USEDEP}]
48 + >=media-libs/gst-plugins-base-${PV}:${SLOT}[${MULTILIB_USEDEP}]
49 +"
50 +DEPEND="${RDEPEND}
51 + >=dev-util/gtk-doc-am-1.12
52 +"
53 +
54 +PATCHES=(
55 + "${FILESDIR}"/${PN}-1.14.3-make43.patch # remove when bumping and switching to Meson
56 +)
57 +
58 +multilib_src_configure() {
59 + gstreamer_multilib_src_configure
60 +
61 + if multilib_is_native_abi; then
62 + ln -s "${S}"/docs/plugins/html docs/plugins/html || die
63 + fi
64 +
65 +}
66 +
67 +multilib_src_install_all() {
68 + DOCS="AUTHORS ChangeLog NEWS README RELEASE"
69 + einstalldocs
70 + find "${ED}" -name '*.la' -delete || die
71 +}