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 E4A30138332 for ; Fri, 13 Apr 2018 03:47:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5A72E0975; Fri, 13 Apr 2018 03:47:40 +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 C294DE0961 for ; Fri, 13 Apr 2018 03:47:40 +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 B2F13335C77 for ; Fri, 13 Apr 2018 03:47:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9F73287 for ; Fri, 13 Apr 2018 03:47:37 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1523591250.eec063365f7f66cbcf5416846fc6bab63a16a7a0.heroxbd@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.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: eec063365f7f66cbcf5416846fc6bab63a16a7a0 X-VCS-Branch: master Date: Fri, 13 Apr 2018 03:47:37 +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: ccff1057-12eb-457f-bd0f-e4db8a79cd47 X-Archives-Hash: 9363533be1d15d499b3ac9f127412f7f commit: eec063365f7f66cbcf5416846fc6bab63a16a7a0 Author: Benda Xu gentoo org> AuthorDate: Fri Apr 13 03:40:18 2018 +0000 Commit: Benda XU gentoo org> CommitDate: Fri Apr 13 03:47:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec06336 dev-python/pillow: pass configuration options correctly. distutils-r1_src_compile does not take arguments. All arguments have to be passed via mydistutilsargs. Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-python/pillow/pillow-4.3.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/pillow/pillow-4.3.0.ebuild b/dev-python/pillow/pillow-4.3.0.ebuild index d1c476ffeb2..0106f57a945 100644 --- a/dev-python/pillow/pillow-4.3.0.ebuild +++ b/dev-python/pillow/pillow-4.3.0.ebuild @@ -43,10 +43,11 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MY_P}" -src_compile() { +src_configure(){ # raqm not in portage yet - distutils-r1_src_compile \ + mydistutilsargs=( build_ext \ --disable-raqm \ + --disable-platform-guessing \ $(use_enable truetype freetype) \ $(use_enable jpeg2k jpeg2000) \ $(use_enable lcms) \ @@ -54,7 +55,7 @@ src_compile() { $(use_enable imagequant) \ $(use_enable webp) \ $(use_enable webp webpmux) \ - $(use_enable zlib) + $(use_enable zlib)) } python_compile_all() {