repo/gentoo:master commit in: app-emacs/agent-shell/
Maciej BarÄ <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786282307.4244727e363e59c4bee12667eb6e21a2ce1be3fa.xgqt@gentoo> |
commit: 4244727e363e59c4bee12667eb6e21a2ce1be3fa
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 12:36:28 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 13:31:47 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4244727e
app-emacs/agent-shell: bump to 0.70.2
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/agent-shell/Manifest | 1 +
app-emacs/agent-shell/agent-shell-0.70.2.ebuild | 46 +++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/app-emacs/agent-shell/Manifest b/app-emacs/agent-shell/Manifest
index 45c1ce6ce8b9..c05ae8c98eb8 100644
--- a/app-emacs/agent-shell/Manifest
+++ b/app-emacs/agent-shell/Manifest
@@ -1 +1,2 @@
DIST agent-shell-0.57.3.gh.tar.gz 1647268 BLAKE2B d3984b13f6d68edaa4a926aa8d6f1ddc46c14a75e360c50c8ac0dff53f6102a034661987754aa6332f12466b9a916a6d07fc4d78c06a4718a53133f364e3cf27 SHA512 95883aa4dcbff908b8d57c940f9983fa83904de84c16d90518a0f76b8e54524e0c5e997e6c4e345895401259ff7f999aab7d46279eabb390201d8e40c39b0df1
+DIST agent-shell-0.70.2.gh.tar.gz 1752299 BLAKE2B 9f469f4109e0ce69133d9f5aa1364ffb2a70086993d8780743fd067e6db00c0986b29f00f9b901f5992fc1c0f4c004497571511d227cd97b9cc6695c201ec286 SHA512 da57860ba716c178794118c9179fca7f60d33c75db82782fe90a8a887a0da6efe140bba7d524fe041810bd26ad790759a978c68ac006dc215cc2ca8ea6d0e0d0
diff --git a/app-emacs/agent-shell/agent-shell-0.70.2.ebuild b/app-emacs/agent-shell/agent-shell-0.70.2.ebuild
new file mode 100644
index 000000000000..6b05a336ce5c
--- /dev/null
+++ b/app-emacs/agent-shell/agent-shell-0.70.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="Many native agentic integrations inside GNU Emacs"
+HOMEPAGE="https://github.com/xenodium/agent-shell/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/xenodium/${PN}"
+else
+ SRC_URI="https://github.com/xenodium/${PN}/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ >=app-emacs/acp-0.13.1
+ >=app-emacs/shell-maker-0.96.1
+"
+BDEPEND="
+ ${RDEPEND}
+"
+
+DOCS=( CONTRIBUTING.org README.org blog-post.org )
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+src_test() {
+ local test_file=""
+ for test_file in ./tests/*-tests.el ; do
+ elisp-test-ert ./tests/ -l "${test_file}"
+ done
+}