mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 23:08:09 -07:00
Required by bindgen. Closes: https://bugs.gentoo.org/970787 Signed-off-by: idealseal <realidealseal@protonmail.com> Part-of: https://codeberg.org/gentoo/gentoo/pulls/193 Merges: https://codeberg.org/gentoo/gentoo/pulls/193 Signed-off-by: Sam James <sam@gentoo.org>
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES=""
|
|
RUST_MIN_VER="1.88.0"
|
|
|
|
LLVM_COMPAT=( {19..22} )
|
|
|
|
inherit cargo llvm-r2
|
|
|
|
MY_PN="${PN/-cli}"
|
|
MY_P=${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="Command-line tool for creating and testing tree-sitter grammars"
|
|
HOMEPAGE="https://github.com/tree-sitter/tree-sitter"
|
|
SRC_URI="
|
|
https://github.com/${MY_PN}/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${MY_P}.tar.gz
|
|
https://github.com/gentoo-crate-dist/${MY_PN}/releases/download/v${PV}/${MY_P}-crates.tar.xz
|
|
"
|
|
S="${WORKDIR}/${MY_P}/crates/cli"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD CC0-1.0 ISC LGPL-3+
|
|
MIT Unicode-3.0 ZLIB
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
|
|
|
# Test seems to require files (grammar definitions) that we don't have.
|
|
RESTRICT="test"
|
|
|
|
BDEPEND="$(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}')"
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/${MY_PN}"
|
|
|
|
pkg_setup() {
|
|
llvm-r2_pkg_setup
|
|
rust_pkg_setup
|
|
}
|