commit: aef51578eb5824f780e9d40041d76a4d8960dd23 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Sep 9 20:35:00 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Sep 9 21:26:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef51578
app-emacs/gptel: bump to 0.9.9 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/gptel/Manifest | 1 + app-emacs/gptel/gptel-0.9.9.ebuild | 41 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/app-emacs/gptel/Manifest b/app-emacs/gptel/Manifest index 18f7dcf8a54a..a04d0faf6daf 100644 --- a/app-emacs/gptel/Manifest +++ b/app-emacs/gptel/Manifest @@ -1 +1,2 @@ DIST gptel-0.9.8.5.gh.tar.gz 169317 BLAKE2B 24661cc1d7b00b8f74ec8de11644d6e55494922a42b30110f0f7d324cd1b2f3d945427954fcd910290ae054d02f4d5015a4bd1144d2acc02d043b1bd8f731305 SHA512 f18f129018c51962d643a6e558f3c81a100d8a705b51ed8f0ff1d1fc6cfcf47d05cff4221574f32a018f49478f26f498b0c66c2277b4727e8e2b446987830c27 +DIST gptel-0.9.9.gh.tar.gz 180728 BLAKE2B 3685617b6e3e9e7cf0ad809069eaf4703784a483ffe268d9e5488977d04f4196c701cab2a67dd5bed297688f414927f04a76cb0c3a94c472aedf09b7b8876588 SHA512 a568a77076d071ba0e40022f9baa5f991221228bc86124b972e9bdd63f3959c593b715ce43abc2a317231b7c81eb0b7a839f028890fd8d2fa608034390e1b6b2 diff --git a/app-emacs/gptel/gptel-0.9.9.ebuild b/app-emacs/gptel/gptel-0.9.9.ebuild new file mode 100644 index 000000000000..1ab51fa15911 --- /dev/null +++ b/app-emacs/gptel/gptel-0.9.9.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="27.1" + +inherit elisp + +DESCRIPTION="Simple Large Language Model chat client for GNU Emacs" +HOMEPAGE="https://github.com/karthink/gptel/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/karthink/${PN}" +else + SRC_URI="https://github.com/karthink/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~arm64" +fi + +LICENSE="GPL-3" +SLOT="0" + +RDEPEND=" + app-emacs/compat + app-emacs/transient +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}
