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 E4CD21382C5 for ; Sun, 7 Mar 2021 16:27:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40635E07DB; Sun, 7 Mar 2021 16:27:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2B54AE07DB for ; Sun, 7 Mar 2021 16:27:18 +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 1764F33BF1A for ; Sun, 7 Mar 2021 16:27:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7950567 for ; Sun, 7 Mar 2021 16:27:15 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1615134420.330346ce66cae755165a2a786527b0605d521279.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/swift/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/swift/swift-4.0.2-r102.ebuild X-VCS-Directories: net-im/swift/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 330346ce66cae755165a2a786527b0605d521279 X-VCS-Branch: master Date: Sun, 7 Mar 2021 16:27:15 +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: 046ff145-46c7-42e9-a5fd-f9fb5fe67884 X-Archives-Hash: 8cdad645e18878dd097da53b5a4e6ae9 commit: 330346ce66cae755165a2a786527b0605d521279 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Mar 7 16:26:14 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Mar 7 16:27:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330346ce net-im/swift: fix compilation with installed dev-libs/libedit Closes: https://bugs.gentoo.org/773961 Signed-off-by: Conrad Kostecki gentoo.org> net-im/swift/swift-4.0.2-r102.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-im/swift/swift-4.0.2-r102.ebuild b/net-im/swift/swift-4.0.2-r102.ebuild index 50967ebf691..41eaf45dd36 100644 --- a/net-im/swift/swift-4.0.2-r102.ebuild +++ b/net-im/swift/swift-4.0.2-r102.ebuild @@ -132,6 +132,9 @@ src_configure() { hunspell_enable="no" icu="$(usex icu)" install_git_hooks="no" + # Use 'DISABLE' as an invalid lib name, so no editline lib is used, + # as current version is not compatible and compilation will fail. + editline_libname="DISABLE" libidn_bundled_enable="false" libminiupnpc_force_bundled="false" libnatpmp_force_bundled="false"