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 47626138359 for ; Tue, 18 Aug 2020 17:47:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B390EE0919; Tue, 18 Aug 2020 17:47:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9EACDE0919 for ; Tue, 18 Aug 2020 17:47:48 +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 A3E5534F57A for ; Tue, 18 Aug 2020 17:47:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88DD1338 for ; Tue, 18 Aug 2020 17:47:43 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1597768709.b489701975f666a112195e13676adfe09fce1a0e.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kpat/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kpat/kpat-9999.ebuild X-VCS-Directories: kde-apps/kpat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b489701975f666a112195e13676adfe09fce1a0e X-VCS-Branch: master Date: Tue, 18 Aug 2020 17:47:43 +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: 938df3f0-23e4-4f10-bf59-22f45ef9132b X-Archives-Hash: 431cd5a1d10465d2c3a0ec18d02dda2c commit: b489701975f666a112195e13676adfe09fce1a0e Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 18 16:36:41 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 18 16:38:29 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b4897019 kde-apps/kpat: Disable WITH_BH_SOLVER Introduced in upstream commit c13de9bc4ddcec8c8b66ffa06b2d26c38018df07 Enabled by default in upstream commit e9ceec479c482642b9d19209f4343a18d2309680 Reported-by: Duncan <1i5t5.duncan cox.net> Closes: https://bugs.gentoo.org/733502 Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kpat/kpat-9999.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/kde-apps/kpat/kpat-9999.ebuild b/kde-apps/kpat/kpat-9999.ebuild index bcc44c565d..1937e5fc0c 100644 --- a/kde-apps/kpat/kpat-9999.ebuild +++ b/kde-apps/kpat/kpat-9999.ebuild @@ -39,3 +39,11 @@ DEPEND=" >=kde-frameworks/kxmlgui-${KFMIN}:5 " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DWITH_BH_SOLVER=OFF # bug 733502, requires unpackaged dependency + ) + + ecm_src_configure +}