From: "Matthew Smith" <matthew@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tree-sitter/
Date: Sun, 27 Feb 2022 16:47:06 +0000 (UTC) [thread overview]
Message-ID: <1645980414.59ff2e8382d1a36c9185d42dc82485cb0c76ab52.matthew@gentoo> (raw)
commit: 59ff2e8382d1a36c9185d42dc82485cb0c76ab52
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 27 16:45:00 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 16:46:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ff2e83
dev-libs/tree-sitter: drop 0.20.2
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
dev-libs/tree-sitter/tree-sitter-0.20.2.ebuild | 171 -------------------------
1 file changed, 171 deletions(-)
diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.2.ebuild b/dev-libs/tree-sitter/tree-sitter-0.20.2.ebuild
deleted file mode 100644
index f85c79757058..000000000000
--- a/dev-libs/tree-sitter/tree-sitter-0.20.2.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CARGO_OPTIONAL=1
-
-CRATES="
- aho-corasick-0.7.15
- ansi_term-0.11.0
- ansi_term-0.12.1
- anyhow-1.0.40
- arrayref-0.3.6
- arrayvec-0.5.2
- ascii-1.0.0
- atty-0.2.14
- autocfg-1.0.1
- base64-0.13.0
- bitflags-1.2.1
- blake2b_simd-0.5.11
- bumpalo-3.6.1
- cc-1.0.67
- cfg-if-1.0.0
- chrono-0.4.19
- chunked_transfer-1.4.0
- clap-2.33.3
- constant_time_eq-0.1.5
- crossbeam-utils-0.8.3
- ctor-0.1.20
- diff-0.1.12
- difference-2.0.0
- dirs-3.0.1
- dirs-sys-0.3.5
- either-1.6.1
- form_urlencoded-1.0.1
- getrandom-0.1.16
- getrandom-0.2.2
- glob-0.3.0
- hashbrown-0.9.1
- hermit-abi-0.1.18
- html-escape-0.2.6
- idna-0.2.2
- indexmap-1.6.1
- itoa-0.4.7
- js-sys-0.3.48
- lazy_static-1.4.0
- libc-0.2.86
- libloading-0.7.0
- log-0.4.14
- matches-0.1.8
- memchr-2.3.4
- num-integer-0.1.44
- num-traits-0.2.14
- once_cell-1.7.0
- output_vt100-0.1.2
- percent-encoding-2.1.0
- ppv-lite86-0.2.10
- pretty_assertions-0.7.2
- proc-macro2-1.0.24
- quote-1.0.9
- rand-0.8.3
- rand_chacha-0.3.0
- rand_core-0.6.2
- rand_hc-0.3.0
- redox_syscall-0.1.57
- redox_syscall-0.2.5
- redox_users-0.3.5
- regex-1.4.3
- regex-syntax-0.6.22
- remove_dir_all-0.5.3
- rust-argon2-0.8.3
- rustc-hash-1.1.0
- ryu-1.0.5
- same-file-1.0.6
- serde-1.0.130
- serde_derive-1.0.130
- serde_json-1.0.63
- smallbitvec-2.5.1
- strsim-0.8.0
- syn-1.0.67
- tempfile-3.2.0
- textwrap-0.11.0
- thiserror-1.0.25
- thiserror-impl-1.0.25
- thread_local-1.1.3
- time-0.1.43
- tiny_http-0.8.0
- tinyvec-1.1.1
- tinyvec_macros-0.1.0
- toml-0.5.8
- unicode-bidi-0.3.4
- unicode-normalization-0.1.17
- unicode-width-0.1.8
- unicode-xid-0.2.1
- url-2.2.1
- utf8-width-0.1.4
- vec_map-0.8.2
- walkdir-2.3.1
- wasi-0.9.0+wasi-snapshot-preview1
- wasi-0.10.2+wasi-snapshot-preview1
- wasm-bindgen-0.2.71
- wasm-bindgen-backend-0.2.71
- wasm-bindgen-macro-0.2.71
- wasm-bindgen-macro-support-0.2.71
- wasm-bindgen-shared-0.2.71
- web-sys-0.3.48
- webbrowser-0.5.5
- which-4.1.0
- widestring-0.4.3
- winapi-0.3.9
- winapi-i686-pc-windows-gnu-0.4.0
- winapi-util-0.1.5
- winapi-x86_64-pc-windows-gnu-0.4.0
-"
-
-inherit toolchain-funcs cargo
-
-DESCRIPTION="Tree-sitter is a parser generator tool and an incremental parsing library"
-HOMEPAGE="https://github.com/tree-sitter/tree-sitter"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN}/${PN}"
-else
- SRC_URI="
- https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
- ts-cli? ( $(cargo_crate_uris) )
- "
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-LICENSE="MIT ts-cli? ( Apache-2.0 BSD-2 CC0-1.0 ISC MIT )"
-SLOT="0"
-
-IUSE="ts-cli"
-
-BDEPEND="ts-cli? ( virtual/rust )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-No-static-libs-gentoo.patch"
-)
-
-src_unpack() {
- if [[ ${PV} == *9999* ]]; then
- git-r3_src_unpack
- use ts-cli && cargo_live_src_unpack
- else
- # behaves as default too, so it is ok to call it unconditonally
- cargo_src_unpack
- fi
-}
-
-src_prepare() {
- default
- tc-export CC
-}
-
-src_configure() {
- default
- use ts-cli && cargo_src_configure
-}
-
-src_compile() {
- default
- use ts-cli && cargo_src_compile
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install
- use ts-cli && cargo_src_install --path "./cli"
-}
next reply other threads:[~2022-02-27 16:47 UTC|newest]
Thread overview: 166+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-27 16:47 Matthew Smith [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-05 18:21 [gentoo-commits] repo/gentoo:master commit in: dev-libs/tree-sitter/ Arthur Zamarin
2025-02-18 20:07 Arthur Zamarin
2025-02-18 20:07 Arthur Zamarin
2025-02-18 19:59 Arthur Zamarin
2025-02-10 18:26 Arthur Zamarin
2025-02-08 10:44 Arthur Zamarin
2025-02-08 10:40 Arthur Zamarin
2025-02-08 10:40 Arthur Zamarin
2025-02-08 10:29 Arthur Zamarin
2025-02-08 10:29 Arthur Zamarin
2025-02-08 10:28 Arthur Zamarin
2024-12-24 11:08 Sam James
2024-11-23 14:27 Sam James
2024-10-17 6:53 Arthur Zamarin
2024-10-15 5:58 Arthur Zamarin
2024-10-01 18:55 Arthur Zamarin
2024-09-27 20:52 Arthur Zamarin
2024-09-27 20:52 Arthur Zamarin
2024-09-27 20:37 Arthur Zamarin
2024-09-27 20:37 Arthur Zamarin
2024-09-06 10:38 Arthur Zamarin
2024-09-03 0:31 Ionen Wolkens
2024-08-28 7:59 Arthur Zamarin
2024-07-19 5:33 Arthur Zamarin
2024-07-04 19:06 Arthur Zamarin
2024-07-04 18:59 Arthur Zamarin
2024-07-04 18:59 Arthur Zamarin
2024-07-04 18:49 Arthur Zamarin
2024-07-04 18:47 Arthur Zamarin
2024-07-04 18:47 Arthur Zamarin
2024-07-04 18:43 Sam James
2024-06-12 23:24 Nick Sarnie
2024-06-08 6:01 Arthur Zamarin
2024-06-08 6:00 Arthur Zamarin
2024-06-08 5:54 Arthur Zamarin
2024-05-17 13:05 Sam James
2024-05-17 12:48 Sam James
2024-05-17 12:48 Sam James
2024-05-17 7:55 Arthur Zamarin
2024-05-17 6:47 Arthur Zamarin
2024-05-03 7:36 Arthur Zamarin
2024-05-01 5:28 Joonas Niilola
2024-04-19 7:26 Matthew Smith
2024-04-19 7:26 Matthew Smith
2024-04-19 7:26 Matthew Smith
2024-04-15 7:25 Matthew Smith
2024-04-15 6:40 Arthur Zamarin
2024-04-14 18:32 Arthur Zamarin
2024-04-14 18:31 Matthew Smith
2024-04-14 17:33 Arthur Zamarin
2024-04-14 17:33 Arthur Zamarin
2024-04-14 17:28 Arthur Zamarin
2024-04-14 17:28 Arthur Zamarin
2024-04-14 17:28 Arthur Zamarin
2024-04-14 17:07 Arthur Zamarin
2024-04-14 15:19 Matthew Smith
2024-04-14 15:19 Matthew Smith
2024-04-12 6:26 Arthur Zamarin
2024-03-30 10:57 Arthur Zamarin
2024-03-11 16:59 Sam James
2024-03-11 16:59 Sam James
2024-03-11 16:59 Sam James
2024-03-11 16:59 Sam James
2024-03-11 16:59 Sam James
2024-03-11 12:52 Sam James
2024-03-11 12:52 Sam James
2024-02-08 1:18 Sam James
2024-02-03 8:22 Arthur Zamarin
2024-02-03 8:22 Arthur Zamarin
2024-02-03 6:56 Sam James
2024-02-02 20:07 Arthur Zamarin
2024-02-02 18:44 Jakov Smolić
2024-02-02 16:27 Arthur Zamarin
2024-02-02 15:23 Arthur Zamarin
2024-01-28 10:32 Matthew Smith
2024-01-28 9:53 Matthew Smith
2023-08-27 20:26 Sam James
2023-05-16 19:29 Jakov Smolić
2023-05-16 18:03 Arthur Zamarin
2023-05-16 7:49 Sam James
2023-05-16 7:49 Sam James
2023-05-16 7:49 Sam James
2023-05-16 7:49 Sam James
2023-05-16 6:33 Joonas Niilola
2023-05-16 6:33 Joonas Niilola
2023-04-16 15:30 Vadim Misbakh-Soloviov
2023-04-16 15:30 Vadim Misbakh-Soloviov
2023-04-13 23:14 Vadim Misbakh-Soloviov
2023-04-05 7:08 Matthew Smith
2022-11-18 16:33 Arthur Zamarin
2022-10-25 11:12 Sam James
2022-10-25 11:12 Sam James
2022-10-20 21:07 Sam James
2022-10-20 19:09 Arthur Zamarin
2022-10-20 18:51 Arthur Zamarin
2022-10-20 18:51 Arthur Zamarin
2022-09-09 9:48 Matthew Smith
2022-07-28 19:59 Matthew Smith
2022-07-28 19:59 Matthew Smith
2022-07-28 19:59 Matthew Smith
2022-05-07 11:14 WANG Xuerui
2022-05-07 11:14 WANG Xuerui
2022-04-18 18:22 Arthur Zamarin
2022-04-18 9:27 Agostino Sarubbo
2022-04-17 18:33 Arthur Zamarin
2022-04-17 18:33 Arthur Zamarin
2022-04-17 18:33 Arthur Zamarin
2022-04-17 18:33 Arthur Zamarin
2022-04-17 8:07 Jakov Smolić
2022-04-17 8:07 Jakov Smolić
2022-03-16 15:18 Sam James
2022-03-12 8:36 Matthew Smith
2022-03-12 8:36 Matthew Smith
2022-03-06 8:00 Sam James
2022-03-06 7:35 Sam James
2022-02-28 19:19 Jakov Smolić
2022-02-28 10:15 Agostino Sarubbo
2022-02-28 4:43 Sam James
2022-02-27 22:42 Sam James
2022-02-27 22:42 Sam James
2022-02-27 16:47 Matthew Smith
2022-02-27 16:47 Matthew Smith
2022-02-27 16:14 Matthew Smith
2022-02-27 16:14 Matthew Smith
2022-01-02 17:53 Nick Sarnie
2021-11-23 2:59 Nick Sarnie
2021-09-07 17:04 Sam James
2021-07-25 3:16 Matt Turner
2021-07-16 21:44 Sam James
2021-07-14 16:08 Sergei Trofimovich
2021-07-13 20:05 Sam James
2021-07-13 6:28 Agostino Sarubbo
2021-07-12 22:37 Sam James
2021-07-12 21:59 Sam James
2021-06-30 14:53 Nick Sarnie
2021-06-30 14:53 Nick Sarnie
2021-06-25 12:50 Marek Szuba
2021-06-20 1:45 Sam James
2021-06-15 15:40 Sergei Trofimovich
2021-06-14 6:39 Sergei Trofimovich
2021-06-14 6:37 Sergei Trofimovich
2021-06-14 6:36 Sergei Trofimovich
2021-06-12 16:34 Sam James
2021-06-12 16:34 Sam James
2021-06-04 18:46 Nick Sarnie
2021-06-04 18:11 Nick Sarnie
2021-06-04 18:11 Nick Sarnie
2021-04-07 3:19 Nick Sarnie
2021-04-06 19:03 Sergei Trofimovich
2021-03-30 3:47 Nick Sarnie
2021-03-18 21:30 Nick Sarnie
2021-03-18 21:30 Nick Sarnie
2021-03-16 21:10 Nick Sarnie
2021-03-16 21:08 Nick Sarnie
2021-03-06 20:44 Nick Sarnie
2021-03-06 20:44 Nick Sarnie
2021-03-02 4:49 Nick Sarnie
2021-03-02 4:44 Nick Sarnie
2021-02-27 3:45 Nick Sarnie
2021-02-27 3:30 Nick Sarnie
2021-02-21 4:31 Nick Sarnie
2021-02-21 4:31 Nick Sarnie
2021-02-12 18:43 Nick Sarnie
2021-01-12 20:40 Nick Sarnie
2021-01-08 3:10 Nick Sarnie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1645980414.59ff2e8382d1a36c9185d42dc82485cb0c76ab52.matthew@gentoo \
--to=matthew@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox