diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-07-02 05:03:13 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-07-02 05:43:28 +0200 |
commit | 6f9b08bc1216c9ef377a62a114c09a80fb7f2786 (patch) | |
tree | 26b373cf38f956d44afd5b118327f9a792f02c25 /app-emacs/cider/cider-1.15.1.ebuild | |
parent | dev-lang/luau: bump to 0.632 (diff) | |
download | gentoo-6f9b08bc1216c9ef377a62a114c09a80fb7f2786.tar.gz gentoo-6f9b08bc1216c9ef377a62a114c09a80fb7f2786.tar.bz2 gentoo-6f9b08bc1216c9ef377a62a114c09a80fb7f2786.zip |
app-emacs/cider: bump to 1.15.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/cider/cider-1.15.1.ebuild')
-rw-r--r-- | app-emacs/cider/cider-1.15.1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/app-emacs/cider/cider-1.15.1.ebuild b/app-emacs/cider/cider-1.15.1.ebuild new file mode 100644 index 000000000000..ae265c008537 --- /dev/null +++ b/app-emacs/cider/cider-1.15.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26 + +inherit elisp optfeature + +DESCRIPTION="Clojure Interactive Development Environment for GNU Emacs" +HOMEPAGE="https://cider.mx/ + https://github.com/clojure-emacs/cider/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/clojure-emacs/${PN}.git" +else + SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-emacs/clojure-mode + app-emacs/parseedn + app-emacs/queue + app-emacs/sesman + app-emacs/spinner +" +BDEPEND=" + ${RDEPEND} + test? ( app-emacs/buttercup ) +" + +# The "clojure-ts-mode" is currently unpackaged, so remove related tests. +ELISP_REMOVE=" + test/${PN}-jar-tests.el + test/${PN}-repl-tests.el + test/clojure-ts-mode/${PN}-connection-ts-tests.el + test/clojure-ts-mode/${PN}-selector-ts-tests.el + test/clojure-ts-mode/${PN}-util-ts-tests.el + test/enrich/${PN}-docstring-tests.el + test/integration/integration-tests.el +" +DOCS=( CHANGELOG.md README.md ROADMAP.md refcard ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests buttercup test + +src_install() { + elisp_src_install + + optfeature "Connecting to leiningen REPL" \ + dev-java/leiningen dev-java/leiningen-bin +} |