summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-09-13 22:01:44 +0200
committerMaciej Barć <xgqt@gentoo.org>2024-09-13 22:57:04 +0200
commitb3bfeea9a150078c18cdaaf097a6f339a26214af (patch)
treeaad8cb1a7670ed0edb245c5f9f885d731d9db9c1 /app-emacs/cider
parentapp-emacs/cider: drop old 1.13.1 (diff)
downloadgentoo-b3bfeea9a150078c18cdaaf097a6f339a26214af.tar.gz
gentoo-b3bfeea9a150078c18cdaaf097a6f339a26214af.tar.bz2
gentoo-b3bfeea9a150078c18cdaaf097a6f339a26214af.zip
app-emacs/cider: drop old 1.14.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/cider')
-rw-r--r--app-emacs/cider/Manifest1
-rw-r--r--app-emacs/cider/cider-1.14.0.ebuild62
2 files changed, 0 insertions, 63 deletions
diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index ab975d095999..e79777c5d295 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -1,3 +1,2 @@
-DIST cider-1.14.0.tar.gz 7324413 BLAKE2B 6340b222e4cac6c9fb05d409380d766e497321e161a70cfdc29db78cc253cf39d4275ee9d8caaa825fe164fd251b2e64b76bf53bfea6671ea1b871ef91b31454 SHA512 b88b75547ee807e072a8e56471ce4a9c79a8c9a32c5c2fa0d5a4ad6527c94a0d409c3f5a89daa49024bcd0fb16f6bc8bbd3985cacc20cdba50e3675e7e995145
DIST cider-1.15.0.tar.gz 7412812 BLAKE2B d5f386c9af524becc179d87a2da88d108fb7f7076b57a02080d84d22be00944b00f45def825cee60a813e328a399682bfed42b379561d26fa55a737a9cafa08c SHA512 c00ba3552c021e6c2d56d0f3e891c56d7492a99df3afe9f4eb17e473b365a110c0b918c9f90b0cbe87508125a806fe0dab47bc52bfc95cb07fd48960d7b049d6
DIST cider-1.15.1.tar.gz 7413316 BLAKE2B 60b4375538305582d6a2cbb7685f470c2b0626ae94286ab37a3320617238df140e8db3f28311f92473219a04a9a435bc72e79ad068b227a552c1a4a1fb070a7a SHA512 8a3215a0983cda54490004176736ca9348f781f729426aa911229c428bdea1630a5ab473ed63bc0e2e02e34df1947b9b76dc51559b3bfa163ae9642ff8a79142
diff --git a/app-emacs/cider/cider-1.14.0.ebuild b/app-emacs/cider/cider-1.14.0.ebuild
deleted file mode 100644
index c7fc6888e181..000000000000
--- a/app-emacs/cider/cider-1.14.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# 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
-}