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-video/pitivi/
Date: Mon, 31 May 2021 20:53:40
Message-Id: 1622494408.7fbe95cf242f883d2ad17b4b0c65483e51cce55d.mgorny@gentoo
1 commit: 7fbe95cf242f883d2ad17b4b0c65483e51cce55d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:48:35 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:53:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fbe95cf
7
8 media-video/pitivi: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 media-video/pitivi/pitivi-0.999-r3.ebuild | 106 ------------------------------
13 1 file changed, 106 deletions(-)
14
15 diff --git a/media-video/pitivi/pitivi-0.999-r3.ebuild b/media-video/pitivi/pitivi-0.999-r3.ebuild
16 deleted file mode 100644
17 index c23b6540c76..00000000000
18 --- a/media-video/pitivi/pitivi-0.999-r3.ebuild
19 +++ /dev/null
20 @@ -1,106 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -PYTHON_COMPAT=( python3_7 )
26 -PYTHON_REQ_USE="sqlite"
27 -
28 -inherit gnome.org meson python-single-r1 virtualx xdg
29 -
30 -DESCRIPTION="A non-linear video editor using the GStreamer multimedia framework"
31 -HOMEPAGE="http://www.pitivi.org"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -
37 -IUSE="v4l test"
38 -RESTRICT="!test? ( test )"
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -# XXX: recommends gst-plugins-libav and frei0r-plugins
42 -
43 -# Do not forget to check pitivi/check.py for dependencies!!!
44 -# pycanberra, libav, libnotify and liwnck are optional
45 -GST_VER="1.14.2"
46 -
47 -COMMON_DEPEND="
48 - ${PYTHON_DEPS}
49 - $(python_gen_cond_dep '
50 - >=dev-python/pycairo-1.10[${PYTHON_MULTI_USEDEP}]
51 - ')
52 - >=x11-libs/cairo-1.10
53 -
54 - >=media-libs/gstreamer-${GST_VER}:1.0[introspection]
55 - >=media-plugins/gst-transcoder-1.14.1
56 -"
57 -RDEPEND="${COMMON_DEPEND}
58 - >=dev-libs/glib-2.30.0:2
59 -
60 - >=dev-libs/gobject-introspection-1.34:=
61 - $(python_gen_cond_dep '
62 - dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
63 - >=dev-python/gst-python-1.4:1.0[${PYTHON_MULTI_USEDEP}]
64 - dev-python/matplotlib[${PYTHON_MULTI_USEDEP}]
65 - dev-python/numpy[${PYTHON_MULTI_USEDEP}]
66 - >=dev-python/pygobject-3.8:3[${PYTHON_MULTI_USEDEP}]
67 - ')
68 -
69 - gnome-base/librsvg:=
70 - >=media-libs/gsound-1.0
71 -
72 - >=media-libs/gstreamer-editing-services-${GST_VER}:1.0[introspection]
73 - >=media-libs/gst-plugins-base-${GST_VER}:1.0[introspection]
74 - >=media-libs/gst-plugins-bad-${GST_VER}:1.0
75 - >=media-plugins/gst-plugins-gtk-${GST_VER}:1.0
76 - >=media-libs/gst-plugins-good-${GST_VER}:1.0
77 - >=media-plugins/gst-plugins-libav-${GST_VER}:1.0
78 - >=media-plugins/gst-plugins-gdkpixbuf-${GST_VER}:1.0
79 -
80 - >=x11-libs/libnotify-0.7[introspection]
81 - x11-libs/libwnck:3[introspection]
82 - >=x11-libs/gtk+-3.20.0:3[introspection]
83 -
84 - v4l? ( >=media-plugins/gst-plugins-v4l2-${GST_VER}:1.0 )
85 -"
86 -DEPEND="${RDEPEND}"
87 -BDEPEND="
88 - app-text/yelp-tools
89 - dev-python/setuptools
90 - >=dev-util/intltool-0.35.5
91 - dev-util/itstool
92 - sys-devel/gettext
93 - virtual/pkgconfig
94 - test? (
95 - $(python_gen_cond_dep '
96 - dev-python/nose2[${PYTHON_MULTI_USEDEP}]
97 - ')
98 - )
99 -"
100 -
101 -PATCHES=(
102 - # Make tests optional, bug #594096
103 - # https://gitlab.gnome.org/GNOME/pitivi/issues/2303
104 - "${FILESDIR}"/${P}-optional-tests.patch
105 -)
106 -
107 -src_configure() {
108 - local emesonargs=(
109 - -Denable-tests=$(usex test true false)
110 - )
111 - meson_src_configure
112 -}
113 -
114 -src_compile() {
115 - meson_src_compile
116 -}
117 -
118 -src_test() {
119 - export PITIVI_TOP_LEVEL_DIR="${S}"
120 - virtx meson_src_test
121 -}
122 -
123 -src_install() {
124 - meson_src_install
125 - python_fix_shebang "${D}"
126 -}