public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gstreamer-editing-services/
Date: Tue, 07 Jan 2025 02:24:17 +0000 (UTC)	[thread overview]
Message-ID: <1736216565.3d9f9dc9cc7e78524deed6d0c39f1a99603eafa1.sam@gentoo> (raw)

commit:     3d9f9dc9cc7e78524deed6d0c39f1a99603eafa1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  7 02:19:06 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan  7 02:22:45 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9f9dc9

media-libs/gstreamer-editing-services: add 1.24.11

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/gstreamer-editing-services/Manifest     |  1 +
 .../gstreamer-editing-services-1.24.11.ebuild      | 55 ++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/media-libs/gstreamer-editing-services/Manifest b/media-libs/gstreamer-editing-services/Manifest
index 37c93a2ea2aa..2c7cb8c938b5 100644
--- a/media-libs/gstreamer-editing-services/Manifest
+++ b/media-libs/gstreamer-editing-services/Manifest
@@ -1,3 +1,4 @@
 DIST gst-editing-services-1.22.11.tar.xz 836008 BLAKE2B 49ce48e45b956f9675f64f8da4ce2a8cd851ccba5573e722d8f823ff08a96053a4b8beca14fe5d32b4d8f71abf32feba2c2b80c10cf3825c32a5eaf52ce474a4 SHA512 87f1240c3c18d1530ace3f15ad50acef90dab2808198658b5f9da54a5cfe2ee2c040e7bdd766550e566c5e86a1509b12a473b6063f3a7e471ee18b163b40873d
 DIST gst-editing-services-1.22.12.tar.xz 836768 BLAKE2B 252426269ab9b7893bf688335ec8920203846f3211a37ccbbd5256104bcee44d3897986e8787ecc138cfb97402c69f27e1622a774f7ada5d0ae6ea07e0495204 SHA512 34a888ca63c883c55e27b5b7270c6842f03d45544fd698c60e35a640f978c60667a23baec096e4be73a618beffdbf251bcc310437a1f1122aa98c2dc7a0b301c
 DIST gst-editing-services-1.24.10.tar.xz 854400 BLAKE2B 85ac071a608e6d21c9c72328851b70d046eef58c9c029d92c0f8e78673a36cf8c6d5b4c00f8b8dec2f801da989edbd9645b20b1961a5cdcc107e30493707bebf SHA512 864c6f03470288bdad2ab9d9c712bc471ae313bad58c08b83aca4b7959d71f7e026b55a8c125fae8abecc89bfb9717e0eaae5bce7c681a82cbd96f1f66684e64
+DIST gst-editing-services-1.24.11.tar.xz 855536 BLAKE2B 3273bb65ddbd23a98f1046a34b1fee28d4187e817662603ecd6fd723e1b9feada4ed478eb9d921062bc2b7f75c3fc04de3c306297f63dd77c85b5cc57d6e6903 SHA512 04535b53aa6120d944ad10beec717fc10a5241d62d3277922750a6523dc0f2e939b2eb4e87b8d7bed615c1920b9cc97e1a40bc25b5b5b7427251541904e4eaa8

diff --git a/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.24.11.ebuild b/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.24.11.ebuild
new file mode 100644
index 000000000000..e55b8864a59d
--- /dev/null
+++ b/media-libs/gstreamer-editing-services/gstreamer-editing-services-1.24.11.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit meson 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/gstreamer/gst}.tar.xz"
+S="${WORKDIR}"/${P/gstreamer/gst}
+
+LICENSE="LGPL-2+"
+SLOT="1.0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+IUSE="+introspection test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# Some tests are failing
+RESTRICT="test"
+
+RDEPEND="
+	${PYTHON_DEPS}
+	>=dev-libs/glib-2.40.0:2
+	dev-libs/libxml2:2
+	>=media-libs/gstreamer-${PV}:1.0[introspection?]
+	>=media-libs/gst-plugins-base-${PV}:1.0[introspection?]
+	>=media-libs/gst-plugins-bad-${PV}:1.0[introspection?]
+	introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+	python_setup
+
+	local emesonargs=(
+		-Ddoc=disabled # hotdoc not packaged
+		$(meson_feature introspection)
+		$(meson_feature test tests)
+		-Dbash-completion=disabled
+		-Dxptv=disabled
+		-Dpython=enabled
+		-Dvalidate=disabled
+		-Dexamples=disabled
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	python_moduleinto gi.overrides
+	python_foreach_impl python_domodule bindings/python/gi/overrides/GES.py
+}


             reply	other threads:[~2025-01-07  2:24 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-07  2:24 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-04 21:45 [gentoo-commits] repo/gentoo:master commit in: media-libs/gstreamer-editing-services/ 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-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=1736216565.3d9f9dc9cc7e78524deed6d0c39f1a99603eafa1.sam@gentoo \
    --to=sam@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