From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 132381581D3 for ; Mon, 27 May 2024 06:02:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BA34E29F3; Mon, 27 May 2024 06:02:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A978E29F3 for ; Mon, 27 May 2024 06:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 341CB342FA3 for ; Mon, 27 May 2024 06:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 887EF1AC8 for ; Mon, 27 May 2024 06:02:50 +0000 (UTC) From: "Ronny Gutbrod" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ronny Gutbrod" Message-ID: <1716789434.5efa7a017ac96ebbf0bf39f1366c171102d83ad8.tastytea@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/ciano/ciano-0.2.4-r2.ebuild X-VCS-Directories: media-video/ciano/ X-VCS-Committer: tastytea X-VCS-Committer-Name: Ronny Gutbrod X-VCS-Revision: 5efa7a017ac96ebbf0bf39f1366c171102d83ad8 X-VCS-Branch: dev Date: Mon, 27 May 2024 06:02:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fc1bf346-5009-4859-b8fd-379e9d9bfc84 X-Archives-Hash: cdcc764ba88ee6a25a4ed799cca98e22 commit: 5efa7a017ac96ebbf0bf39f1366c171102d83ad8 Author: tea tastytea de> AuthorDate: Mon May 27 05:57:14 2024 +0000 Commit: Ronny Gutbrod tastytea de> CommitDate: Mon May 27 05:57:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5efa7a01 media-video/ciano: add runtime dependencies Closes: https://bugs.gentoo.org/932813 Signed-off-by: tea tastytea.de> media-video/ciano/ciano-0.2.4-r2.ebuild | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/media-video/ciano/ciano-0.2.4-r2.ebuild b/media-video/ciano/ciano-0.2.4-r2.ebuild new file mode 100644 index 000000000..98a08b557 --- /dev/null +++ b/media-video/ciano/ciano-0.2.4-r2.ebuild @@ -0,0 +1,48 @@ +# Copyright 2020-2022,2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) + +inherit gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="A multimedia file converter focused on simplicity" +HOMEPAGE="https://robertsanseries.github.io/ciano/" +SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-libs/granite" +BDEPEND="${PYTHON_DEPS}" +RDEPEND=" + ${DEPEND} + dev-libs/glib + dev-libs/libgee + media-video/ffmpeg + virtual/imagemagick-tools + x11-libs/gtk+:3 + x11-libs/pango +" + +src_prepare() { + vala_setup + default +} + +src_install() { + meson_src_install + dosym com.github.robertsanseries.ciano usr/bin/ciano +} + +pkg_postinst() { + gnome2_schemas_update + xdg_pkg_postinst +} + +pkg_postrm() { + gnome2_schemas_update + xdg_pkg_postrm +}