repo/gentoo:master commit in: app-emacs/cape/

Maciej Barć <[email protected]> Mon, 03 Aug 2026 11:33:53 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785756823.24683cc074454aa970f40c5a41a5494ea9843038.xgqt@gentoo>
commit:     24683cc074454aa970f40c5a41a5494ea9843038
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  3 11:00:03 2026 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Aug  3 11:33:43 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24683cc0

app-emacs/cape: bump to 2.8

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/cape/Manifest        |  1 +
 app-emacs/cape/cape-2.8.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/app-emacs/cape/Manifest b/app-emacs/cape/Manifest
index d5628bb95a7e..a8287cb90c5d 100644
--- a/app-emacs/cape/Manifest
+++ b/app-emacs/cape/Manifest
@@ -1 +1,2 @@
 DIST cape-2.7.gh.tar.gz 44143 BLAKE2B 713c5f3b6fffa73a0913907ddad3da3f20cbb435e8d15253fcc0581ddc1011f44bf179b8d2e73e4054319cec2efe996914b7fb12dd15b776ae7a89181da2fa59 SHA512 8c2529046bc74b9233c3b8bcfbcae7edf833c5d194032ccc53e73b61d1895aa729e86b539c127cd591d0ca31768e3803554937f57cc10aaf23437619b618b829
+DIST cape-2.8.gh.tar.gz 44329 BLAKE2B 0a7bfa997920360ec68dd9d164b6231a9ba24815fe9d5d4054712d7812c0ba2a0e1f874c50134db60196197164e6b49c300e60e47332a9c97a1baa54567e2a10 SHA512 60dd87321cb3eaf169d3a5a651e551f8a759e5c6b5eb933d993cffcf51e082b71d3bd3717a7db8017c3de2bc163668a04c8f2f528161306be8abbba4df609c5a

diff --git a/app-emacs/cape/cape-2.8.ebuild b/app-emacs/cape/cape-2.8.ebuild
new file mode 100644
index 000000000000..3a3ad66ce1b6
--- /dev/null
+++ b/app-emacs/cape/cape-2.8.ebuild
@@ -0,0 +1,40 @@
+# 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="Completion At Point Extensions"
+HOMEPAGE="https://github.com/minad/cape/"
+
+if [[ "${PV}" == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/minad/${PN}"
+else
+	SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+	>=app-emacs/compat-31
+"
+DEPEND="
+	${RDEPEND}
+"
+
+DOCS=( CHANGELOG.org README.org )
+ELISP_TEXINFO="${PN}.texi"
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+	elisp-org-export-to texinfo README.org
+	elisp_src_compile
+	elisp-make-autoload-file
+}