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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CCE06158089 for ; Sun, 1 Oct 2023 07:55:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21EA62BC019; Sun, 1 Oct 2023 07:55:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 001652BC014 for ; Sun, 1 Oct 2023 07:55:14 +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 F35C3335CD6 for ; Sun, 1 Oct 2023 07:55:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75B8E10D2 for ; Sun, 1 Oct 2023 07:55:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1696146525.b2fa199d292ae87ce73b055be600a9c432c1f764.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgee/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgee/libgee-0.20.6.ebuild X-VCS-Directories: dev-libs/libgee/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b2fa199d292ae87ce73b055be600a9c432c1f764 X-VCS-Branch: master Date: Sun, 1 Oct 2023 07:55:12 +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: b8c45301-5154-428e-a658-53718cacc7f0 X-Archives-Hash: 925147453b159c81e7b2792f2c81bcc8 commit: b2fa199d292ae87ce73b055be600a9c432c1f764 Author: Violet Purcell inventati org> AuthorDate: Sun Sep 24 16:15:03 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 1 07:48:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2fa199d dev-libs/libgee: Call vala_setup in pkg_setup libgee is written in vala, but the generated C sources are included in the release tarballs. However, vala_setup also includes the workaround for clang 16+, so call it here anyway. Closes: https://bugs.gentoo.org/894376 Signed-off-by: Violet Purcell inventati.org> Closes: https://github.com/gentoo/gentoo/pull/33036 Signed-off-by: Sam James gentoo.org> dev-libs/libgee/libgee-0.20.6.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-libs/libgee/libgee-0.20.6.ebuild b/dev-libs/libgee/libgee-0.20.6.ebuild index 31ae5bb1cead..4b4fb7a89b2c 100644 --- a/dev-libs/libgee/libgee-0.20.6.ebuild +++ b/dev-libs/libgee/libgee-0.20.6.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit gnome2 +inherit gnome2 vala DESCRIPTION="GObject-based interfaces and classes for commonly used data structures" HOMEPAGE="https://wiki.gnome.org/Projects/Libgee" @@ -21,8 +21,11 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" +pkg_setup() { + vala_setup +} + src_configure() { gnome2_src_configure \ - $(use_enable introspection) \ - VALAC="$(type -P false)" + $(use_enable introspection) }