public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-eat/
@ 2023-12-20 14:48 Arsen Arsenović
  0 siblings, 0 replies; 2+ messages in thread
From: Arsen Arsenović @ 2023-12-20 14:48 UTC (permalink / raw
  To: gentoo-commits

commit:     fe15356ca6a4ddcfab31d15eb7047d17300b487b
Author:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 13:50:45 2023 +0000
Commit:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 14:45:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe15356c

app-emacs/emacs-eat: add 0.9.4

Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>

 app-emacs/emacs-eat/Manifest               |  1 +
 app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild | 63 ++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

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
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-eat/
@ 2024-02-08 10:31 Maciej Barć
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej Barć @ 2024-02-08 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     1468c645c10f5b6ce146c2c216c0602ff1c7098b
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  8 09:53:31 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Feb  8 10:31:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1468c645

app-emacs/emacs-eat: limit makejobs

Closes: https://bugs.gentoo.org/924045
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild b/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild
index 4f2a6cced758..37ee72fe161f 100644
--- a/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild
+++ b/app-emacs/emacs-eat/emacs-eat-0.9.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -38,10 +38,9 @@ elisp-enable-tests ert . -l eat-tests.el
 
 src_compile() {
 	rm -r terminfo || die
-	emake EMACS="${EMACS}" EMACSFLAGS="${EMACSFLAGS}"
+	emake EMACS="${EMACS}" EMACSFLAGS="${EMACSFLAGS}" -j1
 
 	elisp-compile term/eat.el
-
 	elisp-make-autoload-file
 }
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-02-08 10:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-08 10:31 [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-eat/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2023-12-20 14:48 Arsen Arsenović

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox