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 6B8C4158089 for ; Sun, 1 Oct 2023 12:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0B462BC022; Sun, 1 Oct 2023 12:02:55 +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 9811B2BC022 for ; Sun, 1 Oct 2023 12:02:55 +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 82360335C7E for ; Sun, 1 Oct 2023 12:02:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D95C4888 for ; Sun, 1 Oct 2023 12:02:52 +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: <1696161757.cd08499a62bbfd5db1835b970f0096c397cf8c7d.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: cd08499a62bbfd5db1835b970f0096c397cf8c7d X-VCS-Branch: master Date: Sun, 1 Oct 2023 12:02:52 +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: c22b4651-1db8-4e89-b3fb-e40cbf26e1a8 X-Archives-Hash: c9570ce016d244535cb848572e32725a commit: cd08499a62bbfd5db1835b970f0096c397cf8c7d Author: Sam James gentoo org> AuthorDate: Sun Oct 1 12:02:05 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 1 12:02:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd08499a Revert "dev-libs/libgee: Call vala_setup in pkg_setup" This reverts commit b2fa199d292ae87ce73b055be600a9c432c1f764. Bug: https://bugs.gentoo.org/894376 Bug: https://bugs.gentoo.org/915015 Signed-off-by: Sam James gentoo.org> dev-libs/libgee/libgee-0.20.6.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-libs/libgee/libgee-0.20.6.ebuild b/dev-libs/libgee/libgee-0.20.6.ebuild index 4b4fb7a89b2c..31ae5bb1cead 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 vala +inherit gnome2 DESCRIPTION="GObject-based interfaces and classes for commonly used data structures" HOMEPAGE="https://wiki.gnome.org/Projects/Libgee" @@ -21,11 +21,8 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -pkg_setup() { - vala_setup -} - src_configure() { gnome2_src_configure \ - $(use_enable introspection) + $(use_enable introspection) \ + VALAC="$(type -P false)" }