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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C6DE15812D for ; Sun, 05 Jan 2025 17:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEA16E077A; Sun, 05 Jan 2025 17:23:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A14D2E077A for ; Sun, 05 Jan 2025 17:23:35 +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 7EA60341256 for ; Sun, 05 Jan 2025 17:23:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7CBD19C1 for ; Sun, 05 Jan 2025 17:23:32 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1736067302.323947fdf07c536a1d03140f73449df00a007501.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/ashell/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/ashell/ashell-0.3.0.ebuild X-VCS-Directories: gui-apps/ashell/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 323947fdf07c536a1d03140f73449df00a007501 X-VCS-Branch: master Date: Sun, 05 Jan 2025 17:23:32 +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: c72cbc6b-a6b5-446b-a358-d87c4aa50d9a X-Archives-Hash: 2e3767c52f9198e0707e1ec30d1479a8 commit: 323947fdf07c536a1d03140f73449df00a007501 Author: Takuya Wakazono gmail com> AuthorDate: Sun Jan 5 08:55:02 2025 +0000 Commit: Julien Roy jroy ca> CommitDate: Sun Jan 5 08:55:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=323947fd gui-apps/ashell: use llvm-r1 to setup libclang Closes: https://bugs.gentoo.org/944409 Signed-off-by: Takuya Wakazono gmail.com> gui-apps/ashell/ashell-0.3.0.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/gui-apps/ashell/ashell-0.3.0.ebuild b/gui-apps/ashell/ashell-0.3.0.ebuild index f1d5ec626..b6a8da85c 100644 --- a/gui-apps/ashell/ashell-0.3.0.ebuild +++ b/gui-apps/ashell/ashell-0.3.0.ebuild @@ -472,7 +472,10 @@ declare -A GIT_CRATES=( [smithay-clipboard]='https://github.com/pop-os/smithay-clipboard;ab422ddcc95a9a1717df094f9c8fe69e2fdb2a27;smithay-clipboard-%commit%' ) -inherit cargo +LLVM_COMPAT=( 18 19 ) +RUST_NEEDS_LLVM=1 + +inherit cargo llvm-r1 DESCRIPTION="A ready to go Wayland status bar for Hyprland" HOMEPAGE="https://github.com/MalpenZibo/ashell" @@ -497,3 +500,12 @@ RDEPEND=" media-video/pipewire:= x11-libs/libxkbcommon " +# libclang is required for bindgen +BDEPEND=" + $(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}') +" + +pkg_setup() { + llvm-r1_pkg_setup + rust_pkg_setup +}