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 2A52A158020 for ; Mon, 5 Dec 2022 20:01:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B904E0886; Mon, 5 Dec 2022 20:01:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 56F98E0886 for ; Mon, 5 Dec 2022 20:01:15 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91116341101 for ; Mon, 5 Dec 2022 20:01:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C6AC775 for ; Mon, 5 Dec 2022 20:01:13 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1670270455.1fb9daef87ffc3f1911e020da3dde8a7c8d07fe3.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tree-sitter-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild X-VCS-Directories: dev-libs/tree-sitter-cpp/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 1fb9daef87ffc3f1911e020da3dde8a7c8d07fe3 X-VCS-Branch: master Date: Mon, 5 Dec 2022 20:01:13 +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: 9c5c1dca-285e-4234-a0e4-8b2072001280 X-Archives-Hash: f99b337f8ba1c60fc89152d143482008 commit: 1fb9daef87ffc3f1911e020da3dde8a7c8d07fe3 Author: Matoro Mahri users noreply github com> AuthorDate: Fri Dec 2 16:26:55 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Mon Dec 5 20:00:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb9daef dev-libs/tree-sitter-cpp: restrict tests Requires sample files from tree-sitter-c to be available, but these files are not installed with dev-libs/tree-sitter-c, and are instead expected to be pulled down via making the tree-sitter-c javascript wrapper package a dependency in package.json. However since we invoke "tree-sitter test" directly rather than via "npm test" the source package for tree-sitter-c will not be available. Bug: https://bugs.gentoo.org/844223 Signed-off-by: Matoro Mahri users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/28529 Signed-off-by: Matthew Smith gentoo.org> dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild b/dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild index dd3045851377..654df3497df3 100644 --- a/dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild +++ b/dev-libs/tree-sitter-cpp/tree-sitter-cpp-0.20.0.ebuild @@ -11,3 +11,6 @@ HOMEPAGE="https://github.com/tree-sitter/tree-sitter-cpp" LICENSE="MIT" SLOT="0" KEYWORDS="amd64" + +# requires test data from tree-sitter-c +RESTRICT="test"