commit: e9d46c5b2662fcee745563355a35a28a81dda75b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Feb 11 04:53:36 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Feb 11 04:53:36 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9d46c5b
app-emacs/treesit-auto: add 1.0.9 Signed-off-by: Sam James <sam <AT> gentoo.org> app-emacs/treesit-auto/Manifest | 1 + app-emacs/treesit-auto/treesit-auto-1.0.9.ebuild | 34 ++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/app-emacs/treesit-auto/Manifest b/app-emacs/treesit-auto/Manifest index d161d1807181..fdd8fecfc38e 100644 --- a/app-emacs/treesit-auto/Manifest +++ b/app-emacs/treesit-auto/Manifest @@ -1 +1,2 @@ DIST treesit-auto-1.0.7.tar.gz 25211 BLAKE2B d546c96a00203363c9ed21f15f5abf19a1acec51a13ec58196a027d60536876cc8be9b9c8c4c886cb3b4f482fa8a1ad039d87bb825182852b40009361b9924e3 SHA512 9b802ed7de02aac48511101837cc501f08d7be588ac90c57838dabf7196a6ba8ffd42d42b1316708ea3b73ecc85d1f732314e6c7b824107521cf0eb73e0125eb +DIST treesit-auto-1.0.9.gh.tar.gz 26877 BLAKE2B 678198b8f33b1e44016cd80d750c8e8c00d18b7912d2119ea2b941cca3b5fdeca79224c5568f8e92558f61a6b8ebb997522a5fa4cbe7746eaf62dca3bc2f0a9f SHA512 ec76d2b25214e1a0f0001c50e6e79d53c4a8a8e04d3d2911508b41a6fe4ce28f739f1355aca85f7b0a3aaba0d1ffb83a33959373a7dc6baa03aef481a772a16f diff --git a/app-emacs/treesit-auto/treesit-auto-1.0.9.ebuild b/app-emacs/treesit-auto/treesit-auto-1.0.9.ebuild new file mode 100644 index 000000000000..d17170feb056 --- /dev/null +++ b/app-emacs/treesit-auto/treesit-auto-1.0.9.ebuild @@ -0,0 +1,34 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="29" +inherit elisp + +DESCRIPTION="Automatic installation, usage, fallback for tree-sitter modes in Emacs 29" +HOMEPAGE="https://github.com/renzmann/treesit-auto/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/renzmann/${PN}.git" +else + SRC_URI="https://github.com/renzmann/treesit-auto/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + S="${WORKDIR}/${PN}-${PV}" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-editors/emacs[tree-sitter(+)] +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( CONTRIBUTING.org README.org ) +SITEFILE="50${PN}-gentoo.el"
