Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/img2pdf/
Date: Sun, 22 Aug 2021 16:44:20
Message-Id: 1629650623.49391271d94b4c526a1a613439672421f7c07628.sbraz@gentoo
1 commit: 49391271d94b4c526a1a613439672421f7c07628
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 16:36:09 2021 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 16:43:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49391271
7
8 media-gfx/img2pdf: hopefully the final attempt at fixing test deps
9
10 * Bit depth tests failures happen when ImageMagick is built with a
11 quantum depth of 8 or 32 instead of 16.
12 * ICC profile tests (test_png_icc) fail when ImageMagick lacks lcms support.
13 * Some tests (test_general and test_tiff_gray1) need Pillow with tiff support.
14
15 Closes: https://bugs.gentoo.org/809593
16 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
17
18 media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild | 3 ++-
19 1 file changed, 2 insertions(+), 1 deletion(-)
20
21 diff --git a/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild b/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild
22 index 1b3da90848e..8568129c5e2 100644
23 --- a/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild
24 +++ b/media-gfx/img2pdf/img2pdf-0.4.1-r1.ebuild
25 @@ -27,9 +27,10 @@ BDEPEND="
26 app-text/poppler[cairo,png,tiff]
27 dev-python/numpy[${PYTHON_USEDEP}]
28 dev-python/pdfrw[${PYTHON_USEDEP}]
29 + dev-python/pillow[tiff,${PYTHON_USEDEP}]
30 dev-python/pytest-xdist[${PYTHON_USEDEP}]
31 dev-python/scipy[${PYTHON_USEDEP}]
32 - media-gfx/imagemagick[jpeg,jpeg2k,png,q8,q32,tiff]
33 + media-gfx/imagemagick[jpeg,jpeg2k,lcms,png,-q8,-q32,tiff]
34 media-libs/exiftool
35 media-libs/netpbm[jpeg]
36 )