commit: 6f078564ff17b234608d6bac71e0acb7567f28f0 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Wed Feb 4 13:15:04 2026 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Wed Feb 4 13:31:26 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f078564
app-emacs/dape: drop old 0.24.1 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/dape/Manifest | 1 - app-emacs/dape/dape-0.24.1.ebuild | 70 --------------------------------------- 2 files changed, 71 deletions(-) diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest index e9da9e34f910..fa3bc6b7c10a 100644 --- a/app-emacs/dape/Manifest +++ b/app-emacs/dape/Manifest @@ -1,2 +1 @@ -DIST dape-0.24.1.tar.gz 80152 BLAKE2B c91c1dcda86ee6dbddc4b82c9a51e79c491d8eff9e8d571e840cc4bfe3fee746d8e769ed2f31ff7526f172fd6c7dadc86479ef1477fb8b23c4540c319159ed92 SHA512 64737820e45c1d1db157ad4e08ea839e2144bff39196ebc501c19efbcdf537600db0e9450b8d4da3ee4a062ba5f73397365ff51d28ea8f59c20ccd45c893ce23 DIST dape-0.25.0.gh.tar.gz 83200 BLAKE2B 276cd93605597c86a0ae25d744e77cf274ab8562b8ddcdd5ab630e168910673c62e1f48f9b3be96a7ca6d9ab99480c61a9ba9051af5a9c2a7d14e49fe23a525e SHA512 1cda1877c04ab61584baa69b474aa3c8fd0b43b1d5e06059ed9b4d98b512b63504978fd10479cadf84cfc7dab4a3c6eae7cdd52076ddaa8bd47ab77fafd0567d diff --git a/app-emacs/dape/dape-0.24.1.ebuild b/app-emacs/dape/dape-0.24.1.ebuild deleted file mode 100644 index e3cc513f8bb9..000000000000 --- a/app-emacs/dape/dape-0.24.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -NEED_EMACS="29.1" - -inherit elisp - -DESCRIPTION="Debug Adapter Protocol for Emacs" -HOMEPAGE="https://github.com/svaante/dape" - -if [[ "${PV}" == 9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/svaante/${PN}.git" -else - SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz - -> ${P}.tar.gz" - - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - || ( - app-emacs/jsonrpc - >=app-editors/emacs-30:* - ) -" -DEPEND=" - ${RDEPEND} -" - -# Requires debugpy, but we do not package debugpy right now, as well as -# js-debug. Most tests use only the former. -RESTRICT="test" - -# Remove tests.el to skip compilation and failing tests (see above comment). -ELISP_REMOVE="${PN}-tests.el" - -DOCS=( README.org CHANGELOG.org LICENSE ) -SITEFILE="50${PN}-gentoo.el" - -# elisp-enable-tests ert . -l dape-tests.el - -pkg_setup() { - elisp_pkg_setup - local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \ - --eval "(princ (>= emacs-major-version 30))")" - if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then - : - else - die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed" - fi -} - -src_compile() { - elisp_src_compile - elisp-make-autoload-file -} - -src_install() { - # Need to ignore dape-tests.el. - einstalldocs - elisp-install "${PN}" dape.el dape.elc dape-autoloads.el - elisp-site-file-install "${FILESDIR}/${SITEFILE}" -}
