repo/gentoo:master commit in: app-emacs/agent-shell/
Maciej BarÄ <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786705225.5cfc4def9f3822c3259e421e1c6acb58ee515f5c.xgqt@gentoo> |
commit: 5cfc4def9f3822c3259e421e1c6acb58ee515f5c
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 10:52:35 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 11:00:25 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfc4def
app-emacs/agent-shell: bump to 0.73.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/agent-shell/Manifest | 1 +
app-emacs/agent-shell/agent-shell-0.73.1.ebuild | 46 +++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/app-emacs/agent-shell/Manifest b/app-emacs/agent-shell/Manifest
index 54b6e0f22fc2..6544cd084542 100644
--- a/app-emacs/agent-shell/Manifest
+++ b/app-emacs/agent-shell/Manifest
@@ -1,3 +1,4 @@
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
DIST agent-shell-0.71.2.gh.tar.gz 1766504 BLAKE2B 652c8d3936fb22ea1bd58fbdaabb07b8c84e129010fc0d96e645f5b720e028438b0924ef7bdb2424efd4913ff677f7f6f0e702ea116294907fb244bb3909d0c7 SHA512 ddad68f4480d325e07ff235956e7aa3fad297d284de493f51b0ada2334a99450dea390942f0640e9e578c6f5032e63537d3c4979f1ab29f8c8b333c46c8c7d63
+DIST agent-shell-0.73.1.gh.tar.gz 1795378 BLAKE2B 775314b309f05eb34fb766037b4cfbec9f49f30f37be804057ab2731d0ed2ca6fb6a32dfb38d939938bd6c943ff91ed9ab53d7e7624daf0718f71bbfb3c0343b SHA512 c3c8a6b5e653ae3fcfd8a0f1181bc6187d199a4a8f358e86d03d47e3bf4557e05f7ee96858216a8a4d5dd240e3bc9256f51d30ccef1fbd8cd5a33295c53ca1e0
diff --git a/app-emacs/agent-shell/agent-shell-0.73.1.ebuild b/app-emacs/agent-shell/agent-shell-0.73.1.ebuild
new file mode 100644
index 000000000000..0420d6d6d3ba
--- /dev/null
+++ b/app-emacs/agent-shell/agent-shell-0.73.1.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.97.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
+}