From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gstreamer-editing-services/
Date: Sun, 17 Jun 2018 21:53:19 +0000 (UTC) [thread overview]
Message-ID: <1529272215.172fa41e372994fb98d96efef4d4abe6cee4a4d9.leio@gentoo> (raw)
commit: 172fa41e372994fb98d96efef4d4abe6cee4a4d9
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 17:41:30 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 21:50:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=172fa41e
media-libs/gstreamer-editing-services: bump to 1.14.1, drop wrong gnonlin dep
gst-editing-services hasn't been using libgnl for a while now.
Closes: https://bugs.gentoo.org/636304
Package-Manager: Portage-2.3.40, Repoman-2.3.9
media-libs/gstreamer-editing-services/Manifest | 1 +
.../gstreamer-editing-services-1.14.1.ebuild | 54 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/media-libs/gstreamer-editing-services/Manifest b/media-libs/gstreamer-editing-services/Manifest
index 0b92cc6606e..00ee72e2b0a 100644
--- a/media-libs/gstreamer-editing-services/Manifest
+++ b/media-libs/gstreamer-editing-services/Manifest
@@ -1,2 +1,3 @@
DIST gstreamer-editing-services-1.12.3.tar.xz 1061796 BLAKE2B 250983e470a607f5734a1dde799223521f3918f2c985ddc9995f4a9720e7ce7147a60f9d90b71be65f06f3caf7fe0428d90a7f9395f31930f06fc18b9710ce36 SHA512 18f2ae1e04e5848221f45728b5d4002549aeaaeaa39af58410666fbc6ab01971900fabaa92cc3d17f910c4d4d5dc691689aeb7930164a24a6b9c49709e7fb669
DIST gstreamer-editing-services-1.12.4.tar.xz 1062972 BLAKE2B e2f401e419e793a37b3deac71696326f6d2c7491d7a138c40de8af46f2bd5ba415b56b9656a9d225d9704e3339b15aee3e587299441c2b75633a7792a954d4b3 SHA512 b845fc897384aaf691a9dcbf26e6ba682c9eca161e0ad227f47fb0865527d05254fd7b08d082e824a026bfe6909efe8069e3205e209a2e6dfce07f5a7d18dfdf
+DIST gstreamer-editing-services-1.14.1.tar.xz 1059888 BLAKE2B d176c5d4341df208ee87d71f1838e5bb6c3bce7f072a3214d6907b91e75a81f5cd79cf424266205641281d525dea7e36423ffb98adef3cddd54814ea763a8d00 SHA512 3801769a515f248b923c50ad51961175094a66f2aa55184e82ecb948331c05b6e297a723d5443db11ec3274ee48f56d6dcc8af8a95cf9e701cc4e02615f8e6e4
diff --git a/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.1.ebuild b/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.1.ebuild
new file mode 100644
index 00000000000..3fe3cbc6e91
--- /dev/null
+++ b/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.14.1.ebuild
@@ -0,0 +1,54 @@
+# 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} )
+
+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
+}
next reply other threads:[~2018-06-17 21:53 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-17 21:53 Mart Raudsepp [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-07 2:24 [gentoo-commits] repo/gentoo:master commit in: media-libs/gstreamer-editing-services/ Sam James
2025-01-04 21:45 Sam James
2025-01-04 21:34 Sam James
2024-12-24 10:20 Sam James
2024-04-30 8:28 Mart Raudsepp
2024-04-22 8:19 Arthur Zamarin
2024-04-19 14:23 Arthur Zamarin
2024-04-01 19:55 Mart Raudsepp
2023-11-04 23:03 Mart Raudsepp
2023-10-13 7:33 Mart Raudsepp
2023-09-19 17:48 Arthur Zamarin
2023-07-25 18:10 Arthur Zamarin
2023-07-23 19:32 Arthur Zamarin
2023-06-10 9:45 Arthur Zamarin
2023-05-30 18:21 Sam James
2023-05-30 18:05 Sam James
2022-06-07 14:47 Agostino Sarubbo
2022-06-07 6:34 Agostino Sarubbo
2022-05-31 5:14 Sam James
2022-05-31 5:14 Sam James
2022-05-31 4:46 Sam James
2022-02-02 15:51 Craig Andrews
2021-02-19 23:03 Mart Raudsepp
2021-02-13 21:41 Mart Raudsepp
2020-02-10 21:25 Michał Górny
2019-08-27 21:30 Mart Raudsepp
2019-08-15 9:38 Mart Raudsepp
2019-02-05 23:58 Mart Raudsepp
2019-01-15 23:38 Mart Raudsepp
2018-09-18 0:28 Mart Raudsepp
2018-07-31 9:41 Mart Raudsepp
2018-07-31 7:12 Mart Raudsepp
2018-06-17 21:53 Mart Raudsepp
2018-03-17 17:19 Mikle Kolyada
2018-02-15 0:33 Mart Raudsepp
2017-12-17 1:04 Mart Raudsepp
2017-09-18 21:56 Mart Raudsepp
2017-09-18 21:56 Mart Raudsepp
2017-09-16 20:50 Mart Raudsepp
2017-09-02 4:19 Mart Raudsepp
2017-02-11 14:52 Mart Raudsepp
2017-01-26 5:19 Mart Raudsepp
2016-09-18 22:44 Gilles Dartiguelongue
2016-03-06 20:36 Mikle Kolyada
2016-01-04 22:12 Gilles Dartiguelongue
2015-12-26 18:21 Gilles Dartiguelongue
2015-11-08 19:27 Gilles Dartiguelongue
2015-10-25 23:01 Gilles Dartiguelongue
2015-09-06 20:55 Pacho Ramos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1529272215.172fa41e372994fb98d96efef4d4abe6cee4a4d9.leio@gentoo \
--to=leio@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox