commit: 84ff5a90ce1b39a24aafd3bdeacdf3de9ae1394b Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Fri Jun 13 18:20:54 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Fri Jun 13 19:00:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ff5a90
app-emacs/gptel: bump to 0.9.8.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/gptel/Manifest | 1 + app-emacs/gptel/gptel-0.9.8.5.ebuild | 41 ++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/app-emacs/gptel/Manifest b/app-emacs/gptel/Manifest index d8da40ee7b98..e1c98ac37505 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.8.tar.gz 135756 BLAKE2B 7470ed0ab84467e3dd301130d3c67fc87dc1a87e79b7e5cb229f74c5dabc8fc5683646a667f041dea94275ddce2954b4ed112f62e562d77c48b2ae83220c85fd SHA512 4b6961a59d5d63ac1d9a8b1b084bbdcf36f7055726dbddb2baec05845faed8e15928ed3ee9bccbae246edcfcdbed4c73fd3486f5a18a8db9c1f0ca9b5c1a07fb diff --git a/app-emacs/gptel/gptel-0.9.8.5.ebuild b/app-emacs/gptel/gptel-0.9.8.5.ebuild new file mode 100644 index 000000000000..285906bf077a --- /dev/null +++ b/app-emacs/gptel/gptel-0.9.8.5.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-30.1.0.0 + app-emacs/transient +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}
