commit: 674eaff54a511d2ed7b9a83637094c06b7b470c3 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Sep 9 20:50:41 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Sep 9 21:26:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674eaff5
app-emacs/vertico: bump to 2.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/vertico/Manifest | 1 + app-emacs/vertico/vertico-2.5.ebuild | 46 ++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/app-emacs/vertico/Manifest b/app-emacs/vertico/Manifest index 3a70083725e2..7aa027271822 100644 --- a/app-emacs/vertico/Manifest +++ b/app-emacs/vertico/Manifest @@ -1 +1,2 @@ DIST vertico-2.4.gh.tar.gz 51165 BLAKE2B 1a9acb94982a25301e95776accb0ae5097436decee035adf8c602a40bf2d234c31d6d58be28cbf158ac04e044543110301368d8e1c5eb621a0188beef632a1a7 SHA512 5171e290bf27795b1da307e5c54dbf50bdb3ada94119afaf2256c1d3809e83554efb2612eac71461c9a50df0eb4f8b869199de90a16c77aea01d4305ab742558 +DIST vertico-2.5.gh.tar.gz 51483 BLAKE2B 2c24e31708626933bb3563ab7ca4473289240e0190c578102776986ad2923c53c261b2ff9d5e75a144810444fa70f69e3450964a8e527e30d032d496dc6fd5a9 SHA512 08fc0762a4443f68a3fdf9ef3f5a0950b7b46cb34335f259d906ef670724285d11e943bd1f3765a652da2e3d802bf60d8a2cb3a7779581dbb3cdf830e6dd9815 diff --git a/app-emacs/vertico/vertico-2.5.ebuild b/app-emacs/vertico/vertico-2.5.ebuild new file mode 100644 index 000000000000..49dee1806f65 --- /dev/null +++ b/app-emacs/vertico/vertico-2.5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="28.1" + +inherit elisp + +DESCRIPTION="Vertical interactive completion" +HOMEPAGE="https://github.com/minad/vertico/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/minad/${PN}" +else + SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.2.0 +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( CHANGELOG.org README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + default + + mv ./extensions/*.el ./ || die +} + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}
