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 0B21E138334 for ; Mon, 22 Jul 2019 10:42:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 411D7E07B3; Mon, 22 Jul 2019 10:42:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 27A90E07B3 for ; Mon, 22 Jul 2019 10:42:22 +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 AF84B348701 for ; Mon, 22 Jul 2019 10:42:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31247615 for ; Mon, 22 Jul 2019 10:42:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1563792133.68155b57a637410f8a87c7a7c7ec444c44fa439b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lldb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lldb/lldb-9.0.0.9999.ebuild X-VCS-Directories: dev-util/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 68155b57a637410f8a87c7a7c7ec444c44fa439b X-VCS-Branch: master Date: Mon, 22 Jul 2019 10:42:18 +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: 57df4b74-b2b5-4dfa-802a-9d7c4207921f X-Archives-Hash: f0b7800100ab83177d928e4081461c4d commit: 68155b57a637410f8a87c7a7c7ec444c44fa439b Author: Michał Górny gentoo org> AuthorDate: Mon Jul 22 10:16:32 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 22 10:42:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68155b57 dev-util/lldb: readline extension removal is unneeded in 9.* too Signed-off-by: Michał Górny gentoo.org> dev-util/lldb/lldb-9.0.0.9999.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dev-util/lldb/lldb-9.0.0.9999.ebuild b/dev-util/lldb/lldb-9.0.0.9999.ebuild index e655e53c7be..6c729010c45 100644 --- a/dev-util/lldb/lldb-9.0.0.9999.ebuild +++ b/dev-util/lldb/lldb-9.0.0.9999.ebuild @@ -107,15 +107,5 @@ src_test() { src_install() { cmake-utils_src_install - # oh my... - if use python; then - # remove custom readline.so for now - # TODO: figure out how to deal with it - # upstream is basically building a custom readline.so with -ledit - # to avoid symbol collisions between readline and libedit... - rm "${D}$(python_get_sitedir)/readline.so" || die - - # byte-compile the modules - python_optimize - fi + use python && python_optimize }