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 A961B158004 for ; Fri, 5 Apr 2024 08:59:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED21CE29D5; Fri, 5 Apr 2024 08:59:04 +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 CA48EE29D5 for ; Fri, 5 Apr 2024 08:59:04 +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 BFC513430F4 for ; Fri, 5 Apr 2024 08:59:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2252E1564 for ; Fri, 5 Apr 2024 08:59:02 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1712307520.87ba96cf12d3212f9d40a5d934cc78466af167a0.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tree-sitter-typescript/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild X-VCS-Directories: dev-libs/tree-sitter-typescript/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 87ba96cf12d3212f9d40a5d934cc78466af167a0 X-VCS-Branch: master Date: Fri, 5 Apr 2024 08:59:02 +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: eac27ba5-7270-4408-8a9d-020a261c1bb4 X-Archives-Hash: 8d7213f89abb163231732f02394a681e commit: 87ba96cf12d3212f9d40a5d934cc78466af167a0 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Apr 5 08:57:53 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Apr 5 08:58:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87ba96cf dev-libs/tree-sitter-typescript: fix test invocation Closes: https://bugs.gentoo.org/928629 Signed-off-by: Arthur Zamarin gentoo.org> .../tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-libs/tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild b/dev-libs/tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild index 3ab5b3028d0d..ac1c2721a6f8 100644 --- a/dev-libs/tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild +++ b/dev-libs/tree-sitter-typescript/tree-sitter-typescript-0.20.6.ebuild @@ -12,3 +12,10 @@ S="${WORKDIR}"/${P}/typescript LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" + +src_prepare() { + # fix test corpus path + ln -s ../common test || die + + tree-sitter-grammar_src_prepare +}