diff options
author | Arsen Arsenović <arsen@gentoo.org> | 2023-12-20 14:50:45 +0100 |
---|---|---|
committer | Arsen Arsenović <arsen@gentoo.org> | 2023-12-20 15:45:45 +0100 |
commit | fe15356ca6a4ddcfab31d15eb7047d17300b487b (patch) | |
tree | d40da6e733014885d66d6a7bc1d75b4ede031d2f /app-emacs/emacs-eat | |
parent | profiles: split armv7a 23.0 profiles into sf and hf (diff) | |
download | gentoo-fe15356ca6a4ddcfab31d15eb7047d17300b487b.tar.gz gentoo-fe15356ca6a4ddcfab31d15eb7047d17300b487b.tar.bz2 gentoo-fe15356ca6a4ddcfab31d15eb7047d17300b487b.zip |
app-emacs/emacs-eat: add 0.9.4
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
Diffstat (limited to 'app-emacs/emacs-eat')
-rw-r--r-- | app-emacs/emacs-eat/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild | 63 |
2 files changed, 64 insertions, 0 deletions
diff --git a/app-emacs/emacs-eat/Manifest b/app-emacs/emacs-eat/Manifest index 8ebc6ce930b1..8b2ba716f520 100644 --- a/app-emacs/emacs-eat/Manifest +++ b/app-emacs/emacs-eat/Manifest @@ -1 +1,2 @@ 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.4.ebuild b/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild new file mode 100644 index 000000000000..4f2a6cced758 --- /dev/null +++ b/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild @@ -0,0 +1,63 @@ +# 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 +} |