summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-10-17 14:21:33 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-10-17 15:39:31 +0200
commit38015a49e6427c614fc8c8a6804cd324eff6450b (patch)
treec4c91b20bc0242b259ec9808b3098eddf698234b /app-emacs/cider
parentapp-emacs/cider: bump to 1.8.2 (diff)
downloadgentoo-38015a49e6427c614fc8c8a6804cd324eff6450b.tar.gz
gentoo-38015a49e6427c614fc8c8a6804cd324eff6450b.tar.bz2
gentoo-38015a49e6427c614fc8c8a6804cd324eff6450b.zip
app-emacs/cider: drop old 1.8.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.8.0.ebuild59
2 files changed, 0 insertions, 60 deletions
diff --git a/app-emacs/cider/Manifest b/app-emacs/cider/Manifest
index 6c64517cbb21..1c17cdc8f929 100644
--- a/app-emacs/cider/Manifest
+++ b/app-emacs/cider/Manifest
@@ -1,3 +1,2 @@
DIST cider-1.7.0.tar.gz 6731090 BLAKE2B f569491c3279f34f07abb84c76d81fe61917d0d438a94bd7e6a1d55a20194d38c85566a12d23d4255feef54c9df22fcd5a5946226f18051571354fae0ff9dd8a SHA512 f86cb5791c8949bf175dc27d59c324163d2d05c63d19b2e2a563b9a870bf78bf0832a895f28a30b6f76385e3d86142178820cde4b9dcd2c91c54e879b6b9cd19
-DIST cider-1.8.0.tar.gz 7279709 BLAKE2B 86e8e127b66106a8b81b4d4e343b50e2b2286f22837ea88acf8769b9920a8e761726bfce55808585559202676be05a6d2187e50fbdef4de52b777e97c5eaf85f SHA512 f8c42c8318b957d3479c53ea25aa4df265315e0e31d9996f4617bb508fa3412c305fa51758b5c922d727589a9b99971ca3f82f9c832797bcd4b868fb8c0e7c8c
DIST cider-1.8.2.tar.gz 7279725 BLAKE2B ee2d94e780ae943d2f2fa8193a91a14650da6f405469ff1e2cdc59e601e599879b6f3ab3a0bffd9e2be15077af87f95742b582d9647067a599846472928ea6e4 SHA512 93436af2d90f5c976e48d00bd9ed4e5791a86e5d9609ffbda98df37227e349ec9e9872efec3646f785665fec4ae50a9eae54a8b844b1a0a234a9ec1794f671d5
diff --git a/app-emacs/cider/cider-1.8.0.ebuild b/app-emacs/cider/cider-1.8.0.ebuild
deleted file mode 100644
index 0159835af876..000000000000
--- a/app-emacs/cider/cider-1.8.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2023 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 )
-"
-
-ELISP_REMOVE="
- test/${PN}-jar-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"
-
-src_test() {
- buttercup -L . -L test --traceback full || die "tests failed"
-}
-
-src_install() {
- elisp_src_install
-
- optfeature "Connecting to leiningen REPL" \
- dev-java/leiningen dev-java/leiningen-bin
-}