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 975AB138334 for ; Wed, 11 Jul 2018 14:39:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69896E079C; Wed, 11 Jul 2018 14:39:09 +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 12BA0E079C for ; Wed, 11 Jul 2018 14:39:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 71CB2335C02 for ; Wed, 11 Jul 2018 14:39:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB8ED364 for ; Wed, 11 Jul 2018 14:39:05 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1531319921.331fb7baff4fbe2674745c087e0522a2be6591a6.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-4.3.0-r2.ebuild dev-python/pillow/pillow-5.2.0.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 331fb7baff4fbe2674745c087e0522a2be6591a6 X-VCS-Branch: master Date: Wed, 11 Jul 2018 14:39:05 +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-Archives-Salt: ac98d77d-fa6a-4540-9464-9ae5a0749f75 X-Archives-Hash: 5130c57bcbbf2b9004c38771bddd56ec commit: 331fb7baff4fbe2674745c087e0522a2be6591a6 Author: Virgil Dupras gentoo org> AuthorDate: Wed Jul 11 14:38:41 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Wed Jul 11 14:38:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331fb7ba dev-python/pillow: fix test dependencies Some tests require imagemagick to be installed but, more importantly, installed with the png USE flag. When imagemagick was installed without the png use flag, those tests would run and fail. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/pillow/pillow-4.3.0-r2.ebuild | 5 ++++- dev-python/pillow/pillow-5.2.0.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-python/pillow/pillow-4.3.0-r2.ebuild b/dev-python/pillow/pillow-4.3.0-r2.ebuild index 77e205fdfb5..803aa344a80 100644 --- a/dev-python/pillow/pillow-4.3.0-r2.ebuild +++ b/dev-python/pillow/pillow-4.3.0-r2.ebuild @@ -38,7 +38,10 @@ DEPEND="${RDEPEND} dev-python/sphinx[${PYTHON_USEDEP}] dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] ) - test? ( dev-python/nose[${PYTHON_USEDEP}] ) + test? ( + dev-python/nose[${PYTHON_USEDEP}] + media-gfx/imagemagick[png] + ) " S="${WORKDIR}/${MY_P}" diff --git a/dev-python/pillow/pillow-5.2.0.ebuild b/dev-python/pillow/pillow-5.2.0.ebuild index 50913f7c98a..ad0c8bde22b 100644 --- a/dev-python/pillow/pillow-5.2.0.ebuild +++ b/dev-python/pillow/pillow-5.2.0.ebuild @@ -38,7 +38,10 @@ DEPEND="${RDEPEND} dev-python/sphinx[${PYTHON_USEDEP}] dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + media-gfx/imagemagick[png] + ) " S="${WORKDIR}/${MY_P}"