summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-01-23 21:56:11 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-01-23 23:06:51 +0100
commitb6531254613ffd974bdd6752a319fdb4ef5664da (patch)
tree4527e859d6caa218917602986ca3a1dcf5f9777f /app-emacs
parentdev-dotnet/dotnet-sdk-bin: fix bad musl libc link; remove static-libs (diff)
downloadgentoo-b6531254613ffd974bdd6752a319fdb4ef5664da.tar.gz
gentoo-b6531254613ffd974bdd6752a319fdb4ef5664da.tar.bz2
gentoo-b6531254613ffd974bdd6752a319fdb4ef5664da.zip
app-emacs/emacs-eat: drop old 0.9.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/emacs-eat/Manifest1
-rw-r--r--app-emacs/emacs-eat/emacs-eat-0.9.2.ebuild63
2 files changed, 0 insertions, 64 deletions
diff --git a/app-emacs/emacs-eat/Manifest b/app-emacs/emacs-eat/Manifest
index 8b2ba716f520..abb354fe8e25 100644
--- a/app-emacs/emacs-eat/Manifest
+++ b/app-emacs/emacs-eat/Manifest
@@ -1,2 +1 @@
-DIST emacs-eat-0.9.2.tar.gz 274950 BLAKE2B 2b0378a20d1fec511c7b24e4e5cc1937bb8b01f4a0a76f794d847d77de54fb87bc0806082a2ceeb3793eb034d2e0b1aa916441b5b931e00e935d9399b1c84e14 SHA512 69db9aef6ba4037561bb2a344878ece7912140ff42a4c285b355ef2ef2351282d048af78949fe52959c6e5543f8a9a63bd07fc931b802abaa981effbb65e9c20
DIST emacs-eat-0.9.4.tar.gz 275390 BLAKE2B 2d51cb8ca5e67092bab1764cbf20b9c5043ff95fe03662f55bdc931d7360050110295fd37a0eb4cd6cdf44b5ee9460f0c5f26788626a65297f194dcabef95198 SHA512 6b3fb29665687d0bdaa48ffe00a8e3ff6ed1448e6abd6fba447b58663b6a444d368a1ef0f49d20d8c3f3bf49feb2cd2f33a0f725d80c83596e74a55224b8effc
diff --git a/app-emacs/emacs-eat/emacs-eat-0.9.2.ebuild b/app-emacs/emacs-eat/emacs-eat-0.9.2.ebuild
deleted file mode 100644
index 4f2a6cced758..000000000000
--- a/app-emacs/emacs-eat/emacs-eat-0.9.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp
-
-DESCRIPTION="Emulate A Terminal, in a region, in a buffer and in Eshell"
-HOMEPAGE="https://codeberg.org/akib/emacs-eat/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://codeberg.org/akib/${PN}.git"
-else
- SRC_URI="https://codeberg.org/akib/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${PN}"
-
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-DOCS=( ChangeLog NEWS README.org )
-SITEFILE="50${PN}-gentoo.el"
-
-RDEPEND="
- >=app-emacs/compat-29.1.4.2
-"
-BDEPEND="
- ${RDEPEND}
- sys-apps/texinfo
-"
-
-elisp-enable-tests ert . -l eat-tests.el
-
-src_compile() {
- rm -r terminfo || die
- emake EMACS="${EMACS}" EMACSFLAGS="${EMACSFLAGS}"
-
- elisp-compile term/eat.el
-
- elisp-make-autoload-file
-}
-
-src_install() {
- rm eat-tests.el || die
- elisp_src_install
-
- insinto "${SITELISP}/${PN}"
- doins -r term
-
- insinto "${SITEETC}/${PN}"
- doins -r integration
- doins -r terminfo
-
- insinto /usr/share
- doins -r terminfo
-
- doinfo eat.info
-}