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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9414615802E for ; Sat, 29 Jun 2024 08:26:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6DC42BC016; Sat, 29 Jun 2024 08:26:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E2982BC016 for ; Sat, 29 Jun 2024 08:26:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BD494335C7E for ; Sat, 29 Jun 2024 08:26:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DBD31BC0 for ; Sat, 29 Jun 2024 08:26:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1719649552.a8eb973f55d83f88dbf22124a5e30b75ec547899.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-10.3.0.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a8eb973f55d83f88dbf22124a5e30b75ec547899 X-VCS-Branch: master Date: Sat, 29 Jun 2024 08:26: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 84637384-2cc8-4cdc-9713-51ec3631e92a X-Archives-Hash: 4c5f90ad8523bb7939467bfae4f23b84 commit: a8eb973f55d83f88dbf22124a5e30b75ec547899 Author: James Calligeros gmail com> AuthorDate: Sat Jun 29 06:39:40 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 29 08:25:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8eb973f dev-python/pillow: fix build with USE="-truetype" Build fails if USE="-truetype" due to implied flags conflicing with the vendor_{raqm,fribidi} = False flags. Guard them behind a usex so that they are only enabled if USE="truetype" Closes: https://bugs.gentoo.org/935124 Signed-off-by: James Calligeros gmail.com> Closes: https://github.com/gentoo/gentoo/pull/37345 Signed-off-by: Sam James gentoo.org> dev-python/pillow/pillow-10.3.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pillow/pillow-10.3.0.ebuild b/dev-python/pillow/pillow-10.3.0.ebuild index cb13d5f02390..c1d84827dc09 100644 --- a/dev-python/pillow/pillow-10.3.0.ebuild +++ b/dev-python/pillow/pillow-10.3.0.ebuild @@ -82,8 +82,8 @@ python_configure_all() { [build_ext] debug = True disable_platform_guessing = True - vendor_raqm = False - vendor_fribidi = False + $(usex truetype "vendor_raqm = False" "") # BUG 935124 + $(usex truetype "vendor_fribidi = False" "") # ditto $(usepil truetype)_freetype = True $(usepil jpeg)_jpeg = True $(usepil jpeg2k)_jpeg2000 = True