media-libs/gstreamer-editing-services: bump to 1.14.3 for upstream bug fixes
authorMart Raudsepp <leio@gentoo.org>
Tue, 18 Sep 2018 00:22:18 +0000 (03:22 +0300)
committerMart Raudsepp <leio@gentoo.org>
Tue, 18 Sep 2018 00:25:54 +0000 (03:25 +0300)
Package-Manager: Portage-2.3.49, Repoman-2.3.10

media-libs/gstreamer-editing-services/Manifest
media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.3.ebuild [new file with mode: 0644]

index 2a9f8bc0d1b230dbf081b49b1f19d36e8d16eaf3..2b5cb406c64497c5a1b4bc150098815b04a7d5fa 100644 (file)
@@ -1,2 +1,3 @@
 DIST gstreamer-editing-services-1.14.1.tar.xz 1059888 BLAKE2B d176c5d4341df208ee87d71f1838e5bb6c3bce7f072a3214d6907b91e75a81f5cd79cf424266205641281d525dea7e36423ffb98adef3cddd54814ea763a8d00 SHA512 3801769a515f248b923c50ad51961175094a66f2aa55184e82ecb948331c05b6e297a723d5443db11ec3274ee48f56d6dcc8af8a95cf9e701cc4e02615f8e6e4
 DIST gstreamer-editing-services-1.14.2.tar.xz 1063208 BLAKE2B b26db0c944e203026c1be242b80d3d16396d754c1883c07608f73f236d3e96979ef0eb5a7a0230fc360edd34caf22afa3d1e59eb4109ef17e60481b428703539 SHA512 74cd168d1308086e1b4c350eeec1757f790e05a8a762ebb7dd43c7ecdc0e747d7e5cfa2c3b0266eea18d98a369beb1fa544dafb4a1d22fe23af1d4e055322b29
+DIST gstreamer-editing-services-1.14.3.tar.xz 1066740 BLAKE2B c5511ca12eccb08d49733540e2d264290a6ca53ec0d5e9007d354e10808568727ed10bfb205c425fd56d334ef12e30324d67b0dcff8115b3c13d1123fe6026b9 SHA512 5dc4fc65c7ce9604b75516774c4481f3214ed703c0d3bb2a6fa348e5a8a09c963ac711e81e5c91f12f57ab3df63a94d7d178fcd4aab4d4d429f32e055c14a205
diff --git a/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.3.ebuild b/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.3.ebuild
new file mode 100644 (file)
index 0000000..0bb7fc8
--- /dev/null
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+GNOME2_LA_PUNT="yes"
+
+inherit bash-completion-r1 gnome2 python-r1
+
+DESCRIPTION="SDK for making video editors and more"
+HOMEPAGE="http://wiki.pitivi.org/wiki/GES"
+SRC_URI="https://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz"
+
+LICENSE="LGPL-2+"
+SLOT="1.0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+introspection"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+       ${PYTHON_DEPS}
+       >=dev-libs/glib-2.40.0:2
+       dev-libs/libxml2:2
+       dev-python/pygobject:3[${PYTHON_USEDEP}]
+       >=media-libs/gstreamer-${PV}:1.0[introspection?]
+       >=media-libs/gst-plugins-base-${PV}:1.0[introspection?]
+       introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+"
+DEPEND="${RDEPEND}
+       >=dev-util/gtk-doc-am-1.3
+       virtual/pkgconfig
+"
+# XXX: tests do pass but need g-e-s to be installed due to missing
+# AM_TEST_ENVIRONMENT setup.
+RESTRICT="test"
+
+src_configure() {
+       # gtk is only used for examples
+       gnome2_src_configure \
+               $(use_enable introspection) \
+               --disable-examples \
+               --without-gtk \
+               --with-bash-completion-dir="$(get_bashcompdir)" \
+               --with-package-name="GStreamer editing services ebuild for Gentoo" \
+               --with-package-origin="https://packages.gentoo.org/package/media-libs/gstreamer-editing-services"
+}
+
+src_compile() {
+       # Prevent sandbox violations, bug #538888
+       # https://bugzilla.gnome.org/show_bug.cgi?id=744135
+       # https://bugzilla.gnome.org/show_bug.cgi?id=744134
+       addpredict /dev
+       gnome2_src_compile
+}