From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2995A138BEF for ; Sat, 10 Oct 2015 15:40:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EFAFE0845; Sat, 10 Oct 2015 15:40:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E5750E0845 for ; Sat, 10 Oct 2015 15:40:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 031BD340688 for ; Sat, 10 Oct 2015 15:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AB8CDF3 for ; Sat, 10 Oct 2015 15:40:09 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1444491606.b409ada9dd9d09b5d7443b99613b78c348e48a45.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-3.0.0.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: b409ada9dd9d09b5d7443b99613b78c348e48a45 X-VCS-Branch: master Date: Sat, 10 Oct 2015 15:40:09 +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: d396a480-9820-4402-bb99-57dd978ad880 X-Archives-Hash: a5d8d53d96431d349d5e7395fb3a0e20 commit: b409ada9dd9d09b5d7443b99613b78c348e48a45 Author: Justin Lecher gentoo org> AuthorDate: Sat Oct 10 15:39:58 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Oct 10 15:40:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b409ada9 dev-python/pillow: Do not require anything unconditionally Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=562188 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pillow/pillow-3.0.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/pillow/pillow-3.0.0.ebuild b/dev-python/pillow/pillow-3.0.0.ebuild index 511398d..eca59cf 100644 --- a/dev-python/pillow/pillow-3.0.0.ebuild +++ b/dev-python/pillow/pillow-3.0.0.ebuild @@ -66,6 +66,11 @@ python_prepare_all() { sed -i -e 's:feature.jpeg2000 =:& None #:' setup.py || die fi + sed \ + -e "/required/s:=.*:= set():g" \ + -e "/if feature in/s:'jpeg', 'libz'::g" \ + -i setup.py || die + distutils-r1_python_prepare_all }