Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/pitivi/files/, media-video/pitivi/
Date: Sun, 27 Dec 2015 17:14:43
Message-Id: 1451236465.7fb679a31331286dde6e8b78ee4f540bbbb56f8e.eva@gentoo
1 commit: 7fb679a31331286dde6e8b78ee4f540bbbb56f8e
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 17:13:00 2015 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 17:14:25 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb679a3
7
8 media-video/pitivi: drop old revision, bug #569648
9
10 Package-Manager: portage-2.2.26
11
12 media-video/pitivi/Manifest | 1 -
13 .../pitivi/files/pitivi-0.94-unittest.patch | 14 ----
14 media-video/pitivi/pitivi-0.94.ebuild | 90 ----------------------
15 3 files changed, 105 deletions(-)
16
17 diff --git a/media-video/pitivi/Manifest b/media-video/pitivi/Manifest
18 index 7418515..029beb3 100644
19 --- a/media-video/pitivi/Manifest
20 +++ b/media-video/pitivi/Manifest
21 @@ -1,2 +1 @@
22 -DIST pitivi-0.94.tar.xz 3271200 SHA256 f52a0643bc5a9149069c01d0b5ef4149032473bb505e6d679dd3f3153506faec SHA512 fcf3ccb537980418af55ead196963b3503d407e23fcaf7409898c9c3e61077ae7491d91c82f6fa3eb63182a383035e1ec2ada4f046ec9b7cdf9f02829662c3c3 WHIRLPOOL c308595a582f304f8910fd04aadcfebe9743b560db48165247feb15065694441441564feb91e13a609f3d9344be05be369094b2e52638bd9a6525e95a1a00acd
23 DIST pitivi-0.95.tar.xz 3341488 SHA256 5f15220bcc3d02cef4edacaa19da284014caf725e41fc9cbec70469582e1d313 SHA512 e628302ecbb790e955459a4dc124e8580081f6eff8abde210a1b537ae18696c3861bd619efe1434e8e1cf1069adb72cbff0cf44c64706c4046d2cfb7f9aecdfa WHIRLPOOL df6e625dddcf113a8e84aabf5a7a40d90e6b38130e63201a1674f4a576a735696c6b9a9a35b2743cbe5bac8d444c04cd0ea9c5a43358718e1b32b6ebc97f435c
24
25 diff --git a/media-video/pitivi/files/pitivi-0.94-unittest.patch b/media-video/pitivi/files/pitivi-0.94-unittest.patch
26 deleted file mode 100644
27 index a117d10..0000000
28 --- a/media-video/pitivi/files/pitivi-0.94-unittest.patch
29 +++ /dev/null
30 @@ -1,14 +0,0 @@
31 -Allow fallback to a non GL sink for unittests.
32 -
33 ---- a/pitivi/utils/pipeline.py 2015-05-25 13:58:33.980916075 +0200
34 -+++ b/pitivi/utils/pipeline.py 2015-05-25 13:57:52.277261138 +0200
35 -@@ -182,6 +182,9 @@
36 - # Create a cluttersink element used for display. Subclasses must connect
37 - # it to self._pipeline themselves
38 - self.video_sink = Gst.ElementFactory.make("glimagesink", None)
39 -+ if self.video_sink is None:
40 -+ self.video_sink = Gst.ElementFactory.make("xvimagesink", None)
41 -+
42 - if isinstance(pipeline, GES.Pipeline):
43 - self._pipeline.preview_set_video_sink(self.video_sink)
44 - else:
45
46 diff --git a/media-video/pitivi/pitivi-0.94.ebuild b/media-video/pitivi/pitivi-0.94.ebuild
47 deleted file mode 100644
48 index 157ec8b..0000000
49 --- a/media-video/pitivi/pitivi-0.94.ebuild
50 +++ /dev/null
51 @@ -1,90 +0,0 @@
52 -# Copyright 1999-2015 Gentoo Foundation
53 -# Distributed under the terms of the GNU General Public License v2
54 -# $Id$
55 -
56 -EAPI="5"
57 -GCONF_DEBUG="no"
58 -GNOME2_LA_PUNT="yes"
59 -PYTHON_COMPAT=( python{3_3,3_4} )
60 -PYTHON_REQ_USE="sqlite"
61 -
62 -inherit eutils gnome2 python-single-r1 virtualx
63 -
64 -DESCRIPTION="A non-linear video editor using the GStreamer multimedia framework"
65 -HOMEPAGE="http://www.pitivi.org"
66 -
67 -LICENSE="LGPL-2.1"
68 -SLOT="0"
69 -KEYWORDS="~amd64 ~x86"
70 -IUSE="v4l test"
71 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
72 -
73 -# Do not forget to check pitivi/check.py for dependencies
74 -# pycanberra, gnome-desktop, libav and libnotify are optional
75 -COMMON_DEPEND="
76 - ${PYTHON_DEPS}
77 - >=dev-python/pycairo-1.10[${PYTHON_USEDEP}]
78 - >=x11-libs/cairo-1.10
79 -"
80 -RDEPEND="${COMMON_DEPEND}
81 - dev-libs/glib:2
82 -
83 - >=dev-libs/gobject-introspection-1.34
84 - dev-python/dbus-python[${PYTHON_USEDEP}]
85 - >=dev-python/gst-python-1.4:1.0[${PYTHON_USEDEP}]
86 - dev-python/numpy[${PYTHON_USEDEP}]
87 - dev-python/pycanberra[${PYTHON_USEDEP}]
88 - >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}]
89 - dev-python/pyxdg[${PYTHON_USEDEP}]
90 -
91 - gnome-base/librsvg:=
92 - gnome-base/gnome-desktop:3[introspection]
93 -
94 - >=media-libs/clutter-1.12:1.0[introspection]
95 - >=media-libs/clutter-gst-2:2.0[introspection]
96 - >=media-libs/clutter-gtk-1.4:1.0[introspection]
97 - >=media-libs/gnonlin-1.4:1.0
98 - >=media-libs/gstreamer-1.4:1.0[introspection]
99 - >=media-libs/gstreamer-editing-services-1.4:1.0[introspection]
100 - >=media-libs/gst-plugins-base-1.4:1.0
101 - >=media-libs/gst-plugins-good-1.4:1.0
102 - >=media-plugins/gst-plugins-libav-1.4:1.0
103 -
104 - x11-libs/libnotify[introspection]
105 - >=x11-libs/gtk+-3.10:3[introspection]
106 -
107 - v4l? ( >=media-plugins/gst-plugins-v4l2-1.4:1.0 )
108 -"
109 -DEPEND="${RDEPEND}
110 - app-text/yelp-tools
111 - dev-python/setuptools
112 - >=dev-util/intltool-0.35.5
113 - sys-devel/gettext
114 - virtual/pkgconfig
115 - test? ( dev-python/mock[${PYTHON_USEDEP}] )
116 -"
117 -
118 -src_prepare() {
119 - # Allow using non-GL sink when it cannot be found
120 - epatch "${FILESDIR}"/${PN}-0.94-unittest.patch
121 -
122 - gnome2_src_prepare
123 -}
124 -src_configure() {
125 - gnome2_src_configure \
126 - ITSTOOL="$(type -P true)" \
127 - --disable-static
128 -}
129 -
130 -src_test() {
131 - # Force Xvfb to be used
132 - unset DISPLAY
133 - unset DBUS_SESSION_BUS_ADDRESS
134 - export PITIVI_TOP_LEVEL_DIR="${S}"
135 - Xemake check
136 -}
137 -
138 -src_install() {
139 - gnome2_src_install
140 - python_fix_shebang "${D}"
141 -}