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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 83EBF1580B9 for ; Sun, 22 Aug 2021 16:44:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6097E087E; Sun, 22 Aug 2021 16:44:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64096E087E for ; Sun, 22 Aug 2021 16:44:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28522340E29 for ; Sun, 22 Aug 2021 16:44:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C6987DC for ; Sun, 22 Aug 2021 16:44:16 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1629650623.49391271d94b4c526a1a613439672421f7c07628.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/img2pdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild X-VCS-Directories: media-gfx/img2pdf/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 49391271d94b4c526a1a613439672421f7c07628 X-VCS-Branch: master Date: Sun, 22 Aug 2021 16:44:16 +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: 88d4aab7-9a8b-4bc4-870b-16db13427329 X-Archives-Hash: 064039316ad7a8191afb6d7234335189 commit: 49391271d94b4c526a1a613439672421f7c07628 Author: Louis Sautier gentoo org> AuthorDate: Sun Aug 22 16:36:09 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Aug 22 16:43:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49391271 media-gfx/img2pdf: hopefully the final attempt at fixing test deps * Bit depth tests failures happen when ImageMagick is built with a quantum depth of 8 or 32 instead of 16. * ICC profile tests (test_png_icc) fail when ImageMagick lacks lcms support. * Some tests (test_general and test_tiff_gray1) need Pillow with tiff support. Closes: https://bugs.gentoo.org/809593 Signed-off-by: Louis Sautier gentoo.org> media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild b/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild index 1b3da90848e..8568129c5e2 100644 --- a/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild +++ b/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild @@ -27,9 +27,10 @@ BDEPEND=" app-text/poppler[cairo,png,tiff] dev-python/numpy[${PYTHON_USEDEP}] dev-python/pdfrw[${PYTHON_USEDEP}] + dev-python/pillow[tiff,${PYTHON_USEDEP}] dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] - media-gfx/imagemagick[jpeg,jpeg2k,png,q8,q32,tiff] + media-gfx/imagemagick[jpeg,jpeg2k,lcms,png,-q8,-q32,tiff] media-libs/exiftool media-libs/netpbm[jpeg] )