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 1272D158091 for ; Sun, 12 Jun 2022 18:28:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC361E090F; Sun, 12 Jun 2022 18:28:17 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 93967E090F for ; Sun, 12 Jun 2022 18:28:17 +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 AF2B6341BF5 for ; Sun, 12 Jun 2022 18:28:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C10F50A for ; Sun, 12 Jun 2022 18:28:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1655058479.5d76ac34ce7fc51205f8cd1387796ad1d7b81c34.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild X-VCS-Directories: dev-python/imageio-ffmpeg/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5d76ac34ce7fc51205f8cd1387796ad1d7b81c34 X-VCS-Branch: master Date: Sun, 12 Jun 2022 18:28:14 +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: 58f60e54-e253-4c96-b888-8b599fa1f0cf X-Archives-Hash: 8b6246b1bb6fafc566d5ee3149826203 commit: 5d76ac34ce7fc51205f8cd1387796ad1d7b81c34 Author: Michał Górny gentoo org> AuthorDate: Sun Jun 12 18:10:45 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 12 18:27:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d76ac34 dev-python/imageio-ffmpeg: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild index 1ec434ff4fe6..f560bc2f9a3c 100644 --- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild +++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild @@ -4,11 +4,15 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) + inherit distutils-r1 DESCRIPTION="FFMPEG wrapper for Python" -HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ https://github.com/imageio/imageio-ffmpeg" +HOMEPAGE=" + https://github.com/imageio/imageio-ffmpeg/ + https://pypi.org/project/imageio-ffmpeg/ +" SRC_URI=" https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz @@ -20,8 +24,10 @@ KEYWORDS="~amd64 ~x86" PROPERTIES="test_network" RESTRICT="test" -# ffmpeg is used as executable during runtime -RDEPEND="media-video/ffmpeg:*" +# ffmpeg is used as an executable during runtime +RDEPEND=" + media-video/ffmpeg:* +" distutils_enable_tests pytest