summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-11-27 21:34:29 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-11-27 23:09:58 +0100
commitdc6066ac58b8922fcd65035171bc1807055384e1 (patch)
treeefdc18c4f996e844464d19dcb28d9e83583e2e5c /app-emacs
parentapp-emacs/eglot: drop old 1.15-r1 (diff)
downloadgentoo-dc6066ac58b8922fcd65035171bc1807055384e1.tar.gz
gentoo-dc6066ac58b8922fcd65035171bc1807055384e1.tar.bz2
gentoo-dc6066ac58b8922fcd65035171bc1807055384e1.zip
app-emacs/assess: drop old 0.6
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/assess/Manifest1
-rw-r--r--app-emacs/assess/assess-0.6.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/app-emacs/assess/Manifest b/app-emacs/assess/Manifest
index 7484b34e603d..b7dbe2e9730a 100644
--- a/app-emacs/assess/Manifest
+++ b/app-emacs/assess/Manifest
@@ -1,2 +1 @@
-DIST assess-0.6.tar.gz 20771 BLAKE2B 29e8f84c20575314271d9a08ed3ac93f28f1c1b5c2df2ac35e397226f4eea033210ff9b96c90a282a44c60e301f5abc38be88efc74c21a2a7fdc29340d6d43e5 SHA512 ff50731867646f07b8c6f3edd1123695d008fa5265ab8b3543cbf32a54a4a0415a91304067e0dacf53890850b56377594802c9763601616bd828316f7a8cef69
DIST assess-0.7.tar.gz 21161 BLAKE2B 2dbdc83738004659d94c8e4d507e9b95efe7b98cf9336abca6bb7a75ad5648273dff4455eddfb9350fd1c35c2a1154f6c550bc323e95a3d66a3ab37662595157 SHA512 6ac8d8ff860e95a280154109210aa5a81b6af0b01a20a25a37a9d4d2f35e50d26af217d16d692a6cd4d7af9bdb1ccd39431a96efed5f4d14a1534751a796951e
diff --git a/app-emacs/assess/assess-0.6.ebuild b/app-emacs/assess/assess-0.6.ebuild
deleted file mode 100644
index 38f41749e94b..000000000000
--- a/app-emacs/assess/assess-0.6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Test support functions for Emacs"
-HOMEPAGE="https://github.com/phillord/assess/"
-
-if [[ ${PV} == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/phillord/${PN}.git"
-else
- SRC_URI="https://github.com/phillord/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="app-emacs/m-buffer"
-BDEPEND="
- ${RDEPEND}
- test? ( app-emacs/load-relative )
-"
-
-DOCS=( README.md )
-
-# Remove tests failing with Emacs >=29.
-# Remove a test helper accessing the network, luckily unnecessary.
-ELISP_REMOVE="test/assess-robot-test.el test/local-sandbox.el"
-SITEFILE="50${PN}-gentoo.el"
-
-src_test() {
- ${EMACS} ${EMACSFLAGS} -L . -L test \
- -l assess-discover -f assess-discover-run-and-exit-batch || die
-}