commit: 914396d461d101a41e9c998e24e7455a9a373bc8 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Jan 22 19:45:59 2026 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Jan 22 22:06:19 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914396d4
app-emacs/cape: bump to 2.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/cape/Manifest | 1 + app-emacs/cape/cape-2.5.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/app-emacs/cape/Manifest b/app-emacs/cape/Manifest index aef7961bca59..e389092137c1 100644 --- a/app-emacs/cape/Manifest +++ b/app-emacs/cape/Manifest @@ -1,2 +1,3 @@ DIST cape-2.3.gh.tar.gz 43892 BLAKE2B 1898ebf07ef96d1dbb9f09bce826ac21aef0e69d0bdeddab94ca6cc95afc0ee9ad63ce3e825e46ad892d8b48e0385c6478cfa85c7866db334a2319888b96dfa4 SHA512 9614004999e939f93dc5d434605481a1cdc0be62304fe3055c60c43ca5f44bc50317df3c9d2fd2a4a4955ffd3fa6c0b0a247dc111958d595b16edac76af7c696 DIST cape-2.4.gh.tar.gz 43982 BLAKE2B 058bd03ef2b1539adf338673374669c98c96cb36a2da5da8e75531f5d152bae091eaf3cd41a9e696ddbb7fc7c7eedf1d1be2c212a8515c9d6b6c7deffdb48177 SHA512 94d5f673f7bc8c7b6c4cd90a2270aac7e13220c8becf42fcd3bcce4c1db426d66b7bb21144ddd73177de61b9585b84851285cad523ff6c9ff0e2eb89c7f529ac +DIST cape-2.5.gh.tar.gz 44062 BLAKE2B 7446d0afee08e5e87ba656350dccf085bf9afd819a7853d939b08ca3acb6dadc2bc31f66c9334e6d94e6c315d2c520cbfe1a5d115d0a34ca66c56ab299651321 SHA512 65f704e79229703ddc10a088f1d33249fb3a501ba08d7e64dce3b40439d89f522ddb926ccb7c8723c8063eecbd12741c90c811c1cb242433d6cd222299810c69 diff --git a/app-emacs/cape/cape-2.5.ebuild b/app-emacs/cape/cape-2.5.ebuild new file mode 100644 index 000000000000..392f425239da --- /dev/null +++ b/app-emacs/cape/cape-2.5.ebuild @@ -0,0 +1,42 @@ +# Copyright 2023-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/compat +" +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 +}
