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 81ED515817D for ; Fri, 7 Jun 2024 21:48:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CED6E29FF; Fri, 7 Jun 2024 21:48:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A8E3E29FF for ; Fri, 7 Jun 2024 21:48:29 +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 84F16340C8A for ; Fri, 7 Jun 2024 21:48:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED52B1C7B for ; Fri, 7 Jun 2024 21:48:26 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1717688611.ad7680cf46e8e7f34d4d0b6bd1e3ecc7febd434e.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pillow-heif/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pillow-heif/pillow-heif-0.15.0.ebuild X-VCS-Directories: dev-python/pillow-heif/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: ad7680cf46e8e7f34d4d0b6bd1e3ecc7febd434e X-VCS-Branch: master Date: Fri, 7 Jun 2024 21:48:26 +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: 5a051da0-9105-496c-b7a0-383d2c75d664 X-Archives-Hash: 096c270a64951c8206b11f24fb673899 commit: ad7680cf46e8e7f34d4d0b6bd1e3ecc7febd434e Author: Takuya Wakazono gmail com> AuthorDate: Mon Jun 3 15:00:11 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Thu Jun 6 15:43:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad7680cf dev-python/pillow-heif: enable more tests Closes: https://bugs.gentoo.org/933458 Signed-off-by: Takuya Wakazono gmail.com> dev-python/pillow-heif/pillow-heif-0.15.0.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-python/pillow-heif/pillow-heif-0.15.0.ebuild b/dev-python/pillow-heif/pillow-heif-0.15.0.ebuild index 25bf53fd9..05eafe7f4 100644 --- a/dev-python/pillow-heif/pillow-heif-0.15.0.ebuild +++ b/dev-python/pillow-heif/pillow-heif-0.15.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 pypi DESCRIPTION="Python interface for libheif library" @@ -24,10 +24,17 @@ RDEPEND=" media-libs/libheif:= ) test? ( - dev-python/pillow[webp,${PYTHON_USEDEP}] + dev-python/pillow[jpeg,lcms,webp,zlib,${PYTHON_USEDEP}] media-libs/libheif:=[x265] ) " +BDEPEND=" + test? ( + dev-python/defusedxml[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + media-libs/opencv[python,${PYTHON_USEDEP}] + ) +" PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )