summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-10-06 20:14:09 +0200
committerMaciej Barć <xgqt@gentoo.org>2024-10-06 21:51:29 +0200
commitfd98297e1afddeaa3aa47aa30b4fa6d257f0d329 (patch)
treea24bca2fdc6fdb83e5aa388b22023d2fd854ea99
parentapp-emacs/parsebib: minor tweaks (diff)
downloadgentoo-fd98297e1afddeaa3aa47aa30b4fa6d257f0d329.tar.gz
gentoo-fd98297e1afddeaa3aa47aa30b4fa6d257f0d329.tar.bz2
gentoo-fd98297e1afddeaa3aa47aa30b4fa6d257f0d329.zip
app-emacs/dap-mode: drop old 0.7-r1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--app-emacs/dap-mode/Manifest1
-rw-r--r--app-emacs/dap-mode/dap-mode-0.7-r1.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/app-emacs/dap-mode/Manifest b/app-emacs/dap-mode/Manifest
index 600d1f2a5beb..fa2627dfce94 100644
--- a/app-emacs/dap-mode/Manifest
+++ b/app-emacs/dap-mode/Manifest
@@ -1,2 +1 @@
-DIST dap-mode-0.7.tar.gz 6147924 BLAKE2B 300a058134e58e5ae5f94fd62251c1c621478b3148e7453ef5acd062a2c6088f0036e3ac2588ce22138d39b77221396c3f310177914b08a2bbc177cfbc14efce SHA512 ba8d8e2b3e9b699b27226b13624b24a6f78ea884fe9e8e7667537e06285354bf996f7f5d621e2576ad34bbf02ede316bf001444b8b5c67fa604aa5dc5d9416ff
DIST dap-mode-0.8.tar.gz 6376081 BLAKE2B 8823611a6d5b432444ebd880b1295d8553de45aca543eaefad92073da7f3e05a2663ae71920a7c37d8315cbb2134af066631d703d052ac0678416fb9a6692d34 SHA512 2df0cbc216aecbb9b8454ebb7bbd5d20ced051c1d4d64bd2baf589190d8e974d07c7fbb2c57c2fc53007bdf20373f863bf1d483b8b2e1761d165876ee96f5e31
diff --git a/app-emacs/dap-mode/dap-mode-0.7-r1.ebuild b/app-emacs/dap-mode/dap-mode-0.7-r1.ebuild
deleted file mode 100644
index e3e29dccd103..000000000000
--- a/app-emacs/dap-mode/dap-mode-0.7-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=26.1
-
-inherit elisp
-
-DESCRIPTION="Debug Adapter Protocol mode"
-HOMEPAGE="https://github.com/emacs-lsp/dap-mode/"
-SRC_URI="https://github.com/emacs-lsp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- app-emacs/bui
- app-emacs/dash
- app-emacs/f
- app-emacs/ht
- app-emacs/hydra
- app-emacs/lsp-mode
- app-emacs/lsp-treemacs
- app-emacs/posframe
- app-emacs/s
-"
-BDEPEND="
- ${RDEPEND}
- test? ( app-emacs/ert-runner )
-"
-
-DOCS=( CHANGELOG.org README.org )
-PATCHES=( "${FILESDIR}"/${PN}-dap-ui-images-root-dir.patch )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
- elisp_src_prepare
-
- sed "s|@SITEETC@|${SITEETC}/${PN}|" -i dap-ui.el || die
-}
-
-src_test() {
- ert-runner -L . -L test --reporter ert+duration || die
-}
-
-src_install() {
- elisp_src_install
-
- insinto ${SITEETC}/${PN}
- doins -r icons
-}