From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31A7A1584AD for ; Fri, 09 May 2025 12:09:58 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0F6223431FE for ; Fri, 09 May 2025 12:09:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C158911036F; Fri, 09 May 2025 12:09:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B2CE711036F for ; Fri, 09 May 2025 12:09:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D9C23430C9 for ; Fri, 09 May 2025 12:09:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1E5F2667 for ; Fri, 09 May 2025 12:09:52 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1746792548.06339c371226b74c00a31e7e021b24586d1670ab.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vidcutter/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vidcutter/vidcutter-9999.ebuild X-VCS-Directories: media-video/vidcutter/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 06339c371226b74c00a31e7e021b24586d1670ab X-VCS-Branch: master Date: Fri, 09 May 2025 12:09:52 +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: bd242c03-a40a-4639-b47a-4b3a8ac24379 X-Archives-Hash: 58957d0c343bee396c035820b31bae3f commit: 06339c371226b74c00a31e7e021b24586d1670ab Author: Pacho Ramos gentoo org> AuthorDate: Fri May 9 12:08:34 2025 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri May 9 12:09:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06339c37 media-video/vidcutter: update live ebuild Signed-off-by: Pacho Ramos gentoo.org> media-video/vidcutter/vidcutter-9999.ebuild | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/media-video/vidcutter/vidcutter-9999.ebuild b/media-video/vidcutter/vidcutter-9999.ebuild index 1336186ef154..7736f92199de 100644 --- a/media-video/vidcutter/vidcutter-9999.ebuild +++ b/media-video/vidcutter/vidcutter-9999.ebuild @@ -3,11 +3,13 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{11..13} ) DISTUTILS_USE_PEP517=setuptools +DISTUTILS_EXT=1 inherit distutils-r1 xdg +MY_COMMIT="db6818f11bbb4d5598dfc5ceeddf7f81c7078499" DESCRIPTION="FFmpeg-based simple video cutter & joiner with a modern PyQt5 GUI" HOMEPAGE="http://vidcutter.ozmartians.com https://github.com/ozmartian/vidcutter" @@ -15,13 +17,15 @@ if [[ ${PV} == 9999 ]];then inherit git-r3 EGIT_REPO_URI="https://github.com/ozmartian/vidcutter" else - SRC_URI="https://github.com/ozmartian/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/ozmartian/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi +S="${WORKDIR}/${PN}-${MY_COMMIT}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + LICENSE="GPL-3" SLOT="0" -IUSE="" DEPEND=" >=media-video/mpv-0.25:=[libmpv] @@ -30,11 +34,19 @@ RDEPEND="${DEPEND} >=dev-python/pyqt5-5.7[dbus,multimedia,widgets,${PYTHON_USEDEP}] dev-python/pyopengl[${PYTHON_USEDEP}] media-video/ffmpeg[X,encode(+)] - media-video/mediainfo" + media-video/mediainfo +" BDEPEND=" ${PYTHON_DEPS} - dev-python/setuptools[${PYTHON_USEDEP}]" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" + dev-python/cython[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" + +python_prepare_all() { + # https://bugs.gentoo.org/929679 + rm vidcutter/libs/pympv/mpv.c || die + distutils-r1_python_prepare_all +} src_install() { distutils-r1_src_install