Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-transcoder/
Date: Fri, 01 Jan 2021 01:06:52
Message-Id: 1609463002.3882ace807688820e217ab18b97ef266b296857a.mgorny@gentoo
1 commit: 3882ace807688820e217ab18b97ef266b296857a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 01:03:22 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 01:03:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3882ace8
7
8 media-plugins/gst-transcoder: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 media-plugins/gst-transcoder/Manifest | 1 -
13 .../gst-transcoder/gst-transcoder-1.8.2-r1.ebuild | 42 ----------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/media-plugins/gst-transcoder/Manifest b/media-plugins/gst-transcoder/Manifest
17 index dbf040ff230..c6599025cfd 100644
18 --- a/media-plugins/gst-transcoder/Manifest
19 +++ b/media-plugins/gst-transcoder/Manifest
20 @@ -1,2 +1 @@
21 DIST gst-transcoder-1.14.1.tar.gz 37919 BLAKE2B 2687150ff3d609245449135d5725840aab9ed83b487bebeb0daf86634db27b3e68a5aca6ec8fb21ae5bf7e3c3808bc8729db5b24f75dabdf2bff7715a456fb9e SHA512 22dcb75bb706193e67a840218a69df797d5f833935e87d8df03838def5d426d94b25972ca4db8ae2f20fea915d18ef0044ee928a2dfe240f3134cdf1fced7657
22 -DIST gst-transcoder-1.8.2.tar.gz 29884 BLAKE2B 1004f038f50db87c98cf7c6a9645a25b0e532daf3b80188444990a672f595f9a64b002e479c73448c03dbb1bebd70929d4d560cf172021535aa26f5d33a5ecc7 SHA512 cabb3b0eacf018248a176fcc5b077fd8b0f9caab3d7853810809f5e2954b1c1fe62c9511453dc8a87fa930066c7c71e0d01ef86900c982eb5fc8a2769ada8494
23
24 diff --git a/media-plugins/gst-transcoder/gst-transcoder-1.8.2-r1.ebuild b/media-plugins/gst-transcoder/gst-transcoder-1.8.2-r1.ebuild
25 deleted file mode 100644
26 index 12d36ffb3fc..00000000000
27 --- a/media-plugins/gst-transcoder/gst-transcoder-1.8.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_6 )
35 -
36 -inherit python-any-r1 xdg
37 -
38 -DESCRIPTION="GStreamer Transcoding API"
39 -HOMEPAGE="https://github.com/pitivi/gst-transcoder"
40 -SRC_URI="https://github.com/pitivi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE=""
46 -
47 -RDEPEND="
48 - dev-libs/gobject-introspection:=
49 - dev-libs/glib:2
50 - >=media-libs/gstreamer-${PV}:1.0[introspection]
51 - >=media-libs/gst-plugins-base-${PV}:1.0[introspection]
52 -"
53 -DEPEND="${RDEPEND}
54 - ${PYTHON_DEPS}
55 - >=dev-util/meson-0.28.0
56 - virtual/pkgconfig
57 -"
58 -
59 -src_configure() {
60 - # Not a normal configure
61 - # --buildtype=plain needed for honoring CFLAGS/CXXFLAGS and not
62 - # defaulting to debug
63 - ./configure --prefix="${EPREFIX}/usr" --libdir="$(get_libdir)" --buildtype=plain || die
64 -}
65 -
66 -src_compile() {
67 - addpredict /dev #590848
68 - # We cannot use 'make' as it won't allow us to build verbosely
69 - cd mesonbuild || die
70 - ninja -v || die
71 -}