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 6F26615800A for ; Thu, 13 Jul 2023 06:03:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92F2CE086F; Thu, 13 Jul 2023 06:03:24 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74D62E086F for ; Thu, 13 Jul 2023 06:03:24 +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 6AC0D340BB9 for ; Thu, 13 Jul 2023 06:03:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3F21ACF for ; Thu, 13 Jul 2023 06:03:21 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1689228197.674f85a395b48b4d9a511efd9a98a5adcdde5a2f.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vcsi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vcsi/vcsi-7.0.13-r2.ebuild X-VCS-Directories: media-video/vcsi/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 674f85a395b48b4d9a511efd9a98a5adcdde5a2f X-VCS-Branch: master Date: Thu, 13 Jul 2023 06:03:21 +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: 6b704c9c-35fb-4828-aa0a-b891e43c255e X-Archives-Hash: e148178de11df48c9172bb11aac87519 commit: 674f85a395b48b4d9a511efd9a98a5adcdde5a2f Author: Joonas Niilola gentoo org> AuthorDate: Thu Jul 13 06:00:36 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jul 13 06:03:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674f85a3 media-video/vcsi: DistutilsNonPEP517Build, PYTHON_COMPAT+=3.12 Closes: https://bugs.gentoo.org/909997 Signed-off-by: Joonas Niilola gentoo.org> media-video/vcsi/vcsi-7.0.13-r2.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/media-video/vcsi/vcsi-7.0.13-r2.ebuild b/media-video/vcsi/vcsi-7.0.13-r2.ebuild new file mode 100644 index 000000000000..2ab93bdaa915 --- /dev/null +++ b/media-video/vcsi/vcsi-7.0.13-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +MY_COMMIT="fa7aa8ca781d0fe3188eea76f79c5702bf9b7330" + +DESCRIPTION="Create thumbnail sheets from video files" +HOMEPAGE="https://github.com/amietn/vcsi" +SRC_URI="https://github.com/amietn/vcsi/archive/${MY_COMMIT}.tar.gz -> ${P}-r1.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/jinja[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/parsedatetime[${PYTHON_USEDEP}] + dev-python/pillow[jpeg,truetype,${PYTHON_USEDEP}] + dev-python/texttable[${PYTHON_USEDEP}] + media-fonts/dejavu + media-video/ffmpeg" + +distutils_enable_tests pytest + +S="${WORKDIR}"/vcsi-${MY_COMMIT}