diff options
| author | root <root@alpha.trunkmasters.com> | 2026-08-11 19:09:06 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-08-11 19:09:06 -0500 |
| commit | 933607631f52c80ec7db6c4b96de6e61384d3270 (patch) | |
| tree | 5f4a81da2afa30dbbaba5acc22b14e180e9140f3 /app-emacs/agent-shell | |
| parent | 97c14ceda6ab1347afac761e2ad9a0f2b1f81d4c (diff) | |
| download | baldeagleos-repo-933607631f52c80ec7db6c4b96de6e61384d3270.tar.gz baldeagleos-repo-933607631f52c80ec7db6c4b96de6e61384d3270.tar.xz baldeagleos-repo-933607631f52c80ec7db6c4b96de6e61384d3270.zip | |
Adding metadata
Diffstat (limited to 'app-emacs/agent-shell')
| -rw-r--r-- | app-emacs/agent-shell/Manifest | 1 | ||||
| -rw-r--r-- | app-emacs/agent-shell/agent-shell-0.71.2.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/app-emacs/agent-shell/Manifest b/app-emacs/agent-shell/Manifest index c05ae8c98eb8..54b6e0f22fc2 100644 --- a/app-emacs/agent-shell/Manifest +++ b/app-emacs/agent-shell/Manifest @@ -1,2 +1,3 @@ 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 diff --git a/app-emacs/agent-shell/agent-shell-0.71.2.ebuild b/app-emacs/agent-shell/agent-shell-0.71.2.ebuild new file mode 100644 index 000000000000..0420d6d6d3ba --- /dev/null +++ b/app-emacs/agent-shell/agent-shell-0.71.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.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 +} |
