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 56ED615815E for ; Sun, 4 Feb 2024 14:47:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F1F9E29D9; Sun, 4 Feb 2024 14:47:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1CBA9E29D9 for ; Sun, 4 Feb 2024 14:47:20 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37560343288 for ; Sun, 4 Feb 2024 14:47:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30D6A358 for ; Sun, 4 Feb 2024 14:47:16 +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: <1707058030.23d88d75bca4270e162dbfbf84878a77c5535a75.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-debug/lldb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-debug/lldb/lldb-18.1.0_rc1.ebuild dev-debug/lldb/lldb-19.0.0.9999.ebuild dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild dev-debug/lldb/metadata.xml X-VCS-Directories: dev-debug/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 23d88d75bca4270e162dbfbf84878a77c5535a75 X-VCS-Branch: master Date: Sun, 4 Feb 2024 14:47:16 +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: a48d8a62-e367-4401-8163-37009aa2b9ca X-Archives-Hash: 5886831454d3b8293fd23202f21bc8e7 commit: 23d88d75bca4270e162dbfbf84878a77c5535a75 Author: Michał Górny gentoo org> AuthorDate: Sun Feb 4 13:50:57 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 4 14:47:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d88d75 dev-debug/lldb: Add USE=debuginfod to expose transitive deps Add USE=debuginfod to expose the transitive dependencies on dev-cpp/cpp-httplib and net-misc/curl from sys-devel/llvm. Static linking is such a great idea, right? Signed-off-by: Michał Górny gentoo.org> dev-debug/lldb/lldb-18.1.0_rc1.ebuild | 8 ++++++-- dev-debug/lldb/lldb-19.0.0.9999.ebuild | 8 ++++++-- dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild | 8 ++++++-- dev-debug/lldb/metadata.xml | 7 +++++++ 4 files changed, 25 insertions(+), 6 deletions(-) diff --git a/dev-debug/lldb/lldb-18.1.0_rc1.ebuild b/dev-debug/lldb/lldb-18.1.0_rc1.ebuild index caf23a9a38ee..eb67407b87fc 100644 --- a/dev-debug/lldb/lldb-18.1.0_rc1.ebuild +++ b/dev-debug/lldb/lldb-18.1.0_rc1.ebuild @@ -11,17 +11,21 @@ HOMEPAGE="https://llvm.org/" LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0/${LLVM_SOABI}" -IUSE="+debug +libedit lzma ncurses +python test +xml" +IUSE="+debug debuginfod +libedit lzma ncurses +python test +xml" RESTRICT="test" REQUIRED_USE=${PYTHON_REQUIRED_USE} DEPEND=" + debuginfod? ( + net-misc/curl:= + dev-cpp/cpp-httplib:= + ) libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} + ~sys-devel/llvm-${PV}[debuginfod=] " RDEPEND=" ${DEPEND} diff --git a/dev-debug/lldb/lldb-19.0.0.9999.ebuild b/dev-debug/lldb/lldb-19.0.0.9999.ebuild index caf23a9a38ee..eb67407b87fc 100644 --- a/dev-debug/lldb/lldb-19.0.0.9999.ebuild +++ b/dev-debug/lldb/lldb-19.0.0.9999.ebuild @@ -11,17 +11,21 @@ HOMEPAGE="https://llvm.org/" LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0/${LLVM_SOABI}" -IUSE="+debug +libedit lzma ncurses +python test +xml" +IUSE="+debug debuginfod +libedit lzma ncurses +python test +xml" RESTRICT="test" REQUIRED_USE=${PYTHON_REQUIRED_USE} DEPEND=" + debuginfod? ( + net-misc/curl:= + dev-cpp/cpp-httplib:= + ) libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} + ~sys-devel/llvm-${PV}[debuginfod=] " RDEPEND=" ${DEPEND} diff --git a/dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild b/dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild index caf23a9a38ee..eb67407b87fc 100644 --- a/dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild +++ b/dev-debug/lldb/lldb-19.0.0_pre20240203.ebuild @@ -11,17 +11,21 @@ HOMEPAGE="https://llvm.org/" LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0/${LLVM_SOABI}" -IUSE="+debug +libedit lzma ncurses +python test +xml" +IUSE="+debug debuginfod +libedit lzma ncurses +python test +xml" RESTRICT="test" REQUIRED_USE=${PYTHON_REQUIRED_USE} DEPEND=" + debuginfod? ( + net-misc/curl:= + dev-cpp/cpp-httplib:= + ) libedit? ( dev-libs/libedit:0= ) lzma? ( app-arch/xz-utils:= ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) xml? ( dev-libs/libxml2:= ) ~sys-devel/clang-${PV} - ~sys-devel/llvm-${PV} + ~sys-devel/llvm-${PV}[debuginfod=] " RDEPEND=" ${DEPEND} diff --git a/dev-debug/lldb/metadata.xml b/dev-debug/lldb/metadata.xml index 072910296ca3..964390cac7fe 100644 --- a/dev-debug/lldb/metadata.xml +++ b/dev-debug/lldb/metadata.xml @@ -7,4 +7,11 @@ llvm/llvm-project + + + Expose the transitive dependencies on net-misc/curl + and dev-cpp/cpp-httplib) to match + sys-devel/llvm. + +