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 93A7E15852A for ; Sat, 24 Aug 2024 11:16:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1808E2A50; Sat, 24 Aug 2024 11:16:49 +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 B36B3E2A50 for ; Sat, 24 Aug 2024 11:16:49 +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 2B0CC342FAC for ; Sat, 24 Aug 2024 11:16:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B09D1F00 for ; Sat, 24 Aug 2024 11:16:46 +0000 (UTC) From: "Eric Joldasov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eric Joldasov" Message-ID: <1724498100.816df82ac73f412c37495aeded527763b16e0270.bratishkaerik@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-zig/zls/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-zig/zls/zls-9999.ebuild X-VCS-Directories: dev-zig/zls/ X-VCS-Committer: bratishkaerik X-VCS-Committer-Name: Eric Joldasov X-VCS-Revision: 816df82ac73f412c37495aeded527763b16e0270 X-VCS-Branch: dev Date: Sat, 24 Aug 2024 11:16:46 +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: 6da1a927-1938-486b-abdf-6307bed71f82 X-Archives-Hash: 33e83ab896d5dfbb3c974fb2cb9d96a0 commit: 816df82ac73f412c37495aeded527763b16e0270 Author: Eric Joldasov landless-city net> AuthorDate: Sat Aug 24 11:12:46 2024 +0000 Commit: Eric Joldasov getgoogleoff me> CommitDate: Sat Aug 24 11:15:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=816df82a dev-zig/zls: fix 9999, langref is no longer fetched during building It's now commited in ZLS repo instead, see https://github.com/zigtools/zls/pull/2000 . Signed-off-by: Eric Joldasov landless-city.net> dev-zig/zls/zls-9999.ebuild | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev-zig/zls/zls-9999.ebuild b/dev-zig/zls/zls-9999.ebuild index 45d25ec9a..4966ee4a7 100644 --- a/dev-zig/zls/zls-9999.ebuild +++ b/dev-zig/zls/zls-9999.ebuild @@ -125,8 +125,6 @@ src_unpack() { cd "${S}" || die ezig build --fetch --global-cache-dir "${WORKDIR}/zig-eclass/" || die "Pre-fetching Zig modules failed" - local ZLS_GEN_FLAGS="--generate-version-data master --generate-version-data-path version_data.zig" - ezig build gen --verbose -- ${ZLS_GEN_FLAGS} || die "Pre-generating Zig version data failed" else default_src_unpack fi @@ -137,7 +135,6 @@ src_configure() { --prefix usr/ -Doptimize=ReleaseSafe --system "${WORKDIR}/zig-eclass/p/" - -Dversion_data_file_path=version_data.zig --verbose ) }