commit: a65e205e0909b0d38658d64945767da435431bf5 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Feb 23 17:35:25 2026 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Feb 23 19:37:15 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65e205e
app-emacs/cider: bump to 1.21.0 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/cider/Manifest | 1 + app-emacs/cider/cider-1.21.0.ebuild | 68 +++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest index d16cf98de599..9246c3d93e92 100644 --- a/app-emacs/cider/Manifest +++ b/app-emacs/cider/Manifest @@ -1 +1,2 @@ DIST cider-1.20.0.tar.gz 8837651 BLAKE2B c0c6ea33162b7630cd0c1d3e4867f603ddac97de3906b071a7cbb440f1b40af4754516a910498fcb3807d877f7b493fb38161192281d97139221a5958457f3a4 SHA512 3ac208f5507ad8c117ab584d123e2badda5455a887a52fea78614390ab9aef1bbdaeefb74d7b1355c34f6185be7abba85a1f23ed95570297903476dc573d07ae +DIST cider-1.21.0.gh.tar.gz 8833612 BLAKE2B 811efad1cae42abd2966548ef29b04be3dc2031242d6dd467b0b6d282515d8b21461d5b282119dd324a3d5417a03c21c8934714ab94abc479fc1bbe766543715 SHA512 08da059db48ec3a82b3de711c30b85d75a3d244d4d1f5a639853bb7523c9df18f933ba1548db98f3c118509cbb1fd690de9ce59c13f8a41e9b124bda0b1cad8b diff --git a/app-emacs/cider/cider-1.21.0.ebuild b/app-emacs/cider/cider-1.21.0.ebuild new file mode 100644 index 000000000000..f157076c3dd2 --- /dev/null +++ b/app-emacs/cider/cider-1.21.0.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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}" +else + SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz + -> ${P}.gh.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 + app-emacs/transient +" +BDEPEND=" + ${RDEPEND} +" + +ELISP_REMOVE=" + test/${PN}-find-tests.el + test/${PN}-jar-tests.el + test/${PN}-repl-tests.el + test/${PN}-tests.el + test/nrepl-bencode-tests.el + test/nrepl-client-tests.el +" + +DOCS=( CHANGELOG.md README.md ROADMAP.md refcard ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests buttercup test + +src_prepare() { + # The "clojure-ts-mode" is currently unpackaged, so remove related tests. + rm -f -r test/clojure-ts-mode/* || die + + mv lisp/*.el ./ || die + echo "" > test/integration/integration-tests.el || die + + default +} + +src_install() { + elisp_src_install + + optfeature "Connecting to leiningen REPL" dev-java/leiningen dev-java/leiningen-bin +}
