From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1101044-garchives=archives.gentoo.org@lists.gentoo.org> 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 3949E138334 for <garchives@archives.gentoo.org>; Sun, 21 Jul 2019 19:41:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62444E0887; Sun, 21 Jul 2019 19:40:57 +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 47070E0887 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Jul 2019 19:40:57 +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 E61B4348415 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Jul 2019 19:40:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FBDC755 for <gentoo-commits@lists.gentoo.org>; Sun, 21 Jul 2019 19:40:51 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1563738035.3aeec3b3bf290469fa22f8c04ea5edbc2120da96.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-10.0.0.9999.ebuild X-VCS-Directories: dev-util/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3aeec3b3bf290469fa22f8c04ea5edbc2120da96 X-VCS-Branch: master Date: Sun, 21 Jul 2019 19:40:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 28169ccc-0a98-42ee-80bb-419fb6cc19a0 X-Archives-Hash: b1a1b6bade4965a5beccc12fc2c58f6e commit: 3aeec3b3bf290469fa22f8c04ea5edbc2120da96 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Jul 21 19:38:16 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Jul 21 19:40:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aeec3b3 dev-util/lldb: -10.0.0 no longer builds the readline module Remove readline.so removal since the extension is no longer present in git. It probably isn't present in -9.0.0 as well but I want to be able to test it first. Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-util/lldb/lldb-10.0.0.9999.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dev-util/lldb/lldb-10.0.0.9999.ebuild b/dev-util/lldb/lldb-10.0.0.9999.ebuild index 537fb0c30af..b28959dc3c2 100644 --- a/dev-util/lldb/lldb-10.0.0.9999.ebuild +++ b/dev-util/lldb/lldb-10.0.0.9999.ebuild @@ -106,15 +106,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 }