commit: bde99bdae07733c39188a7f4097a962cd08e7863 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Sun Dec 21 06:13:53 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 30 13:17:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde99bda
media-video/celluloid: add 0.29 add any-python-r1.eclass for src/generate-authors.py update min_ver use gtk+ workaround for wayland/X add missing gtk-pixbuf Closes: https://bugs.gentoo.org/770118 Closes: https://bugs.gentoo.org/934939 Closes: https://bugs.gentoo.org/957980 Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/45119 Signed-off-by: Sam James <sam <AT> gentoo.org> media-video/celluloid/Manifest | 1 + media-video/celluloid/celluloid-0.29.ebuild | 52 +++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/media-video/celluloid/Manifest b/media-video/celluloid/Manifest index c2367e33e5b0..41d6eb11a518 100644 --- a/media-video/celluloid/Manifest +++ b/media-video/celluloid/Manifest @@ -1,2 +1,3 @@ DIST celluloid-0.21.tar.xz 413072 BLAKE2B 726eb035f15c24333151833ded843be611b6d6340d77de13f38d29f92307da1e30c63c657e654327f10b617987f8800e59b72e28bcc65cdcad4ef9ab002214c4 SHA512 6e48d982be127c21cc6afeec8e94ae5c78c667f865690f8fad6db2f0b8290922682334c4d905827e99765dc2084c1b8a36927ff3de485a7a456f4a2fb7058ae6 DIST celluloid-0.26.tar.xz 305420 BLAKE2B d74f5be26427ac0798f67e37066f0840d6af1a5a43e4bf714d02519e57231c57c34e191a678d11ebdca0ccbfd8f40eed4a23410f054394cc9f42559c6bbc934c SHA512 bcbb970b8ce512d4d7e64833a309a2e32631b262989ee7f9e1ec4b7f0015387b3978c8cbc0206a5aa86bd9e74fae3b7d38776e71be8c16996444d234bc37d42f +DIST celluloid-0.29.tar.xz 362568 BLAKE2B c83dcfbf4f7a0c622040048a3abbd2bf36784c7a66d78b07cf0b1de4987d33083c696132de7c138ec531bf524370bf0dc2c38d4a86bbe85406f65efb07348668 SHA512 5df44379473f9f5aaca80aff25bf1f3d2d6e8bc634657292e9d57a06c7a35b29e4dfb0310b8a0381c37f5325c9225c8de72aa2dcf324af3c60141e8f8e445b03 diff --git a/media-video/celluloid/celluloid-0.29.ebuild b/media-video/celluloid/celluloid-0.29.ebuild new file mode 100644 index 000000000000..ce61426dbe83 --- /dev/null +++ b/media-video/celluloid/celluloid-0.29.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..14} ) +inherit flag-o-matic gnome2-utils meson python-any-r1 xdg + +DESCRIPTION="Simple GTK+ frontend for mpv" +HOMEPAGE="https://celluloid-player.github.io/" +SRC_URI="https://github.com/celluloid-player/celluloid/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64" +IUSE="wayland X" + +RDEPEND=" + >=dev-libs/glib-2.68:2 + >=gui-libs/gtk-4.16:4[wayland?,X?] + >=gui-libs/libadwaita-1.6.0:1 + >=media-video/mpv-0.32:=[libmpv] + media-libs/libepoxy + x11-libs/gdk-pixbuf:2 +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + dev-libs/appstream-glib + dev-util/gdbus-codegen + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + # defang automagic dependencies + use X || append-cppflags -DGENTOO_GTK_HIDE_X11 + use wayland || append-cppflags -DGENTOO_GTK_HIDE_WAYLAND + + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}
