commit: fb742ecf15a47b33ee2b6258cc956cfc7e6db45f Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Fri Jun 13 18:05:19 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Fri Jun 13 19:00:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb742ecf
app-emacs/vertico: bump to 2.3 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/vertico/Manifest | 1 + app-emacs/vertico/vertico-2.3.ebuild | 46 ++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/app-emacs/vertico/Manifest b/app-emacs/vertico/Manifest index 1e48f2a66190..f97f0a44a63f 100644 --- a/app-emacs/vertico/Manifest +++ b/app-emacs/vertico/Manifest @@ -1,2 +1,3 @@ DIST vertico-2.1.gh.tar.gz 49256 BLAKE2B ee8272070129dddb9e2fe4044c40eeb5bd0216c16c32a9c10a39d68c403cab1f69a2ce8bf1ad8cf31ed2fb15f71b957d1b8f6cfdbdb6518ef98448d780359e4f SHA512 626af52d72b7b518eec267b6e6e1f272444a9cdb15f587c041773686ae3454e8441f1cbf6a511462a92e9a5f8436678ae5cfc17830f0fa194667ad8fe501183c DIST vertico-2.2.gh.tar.gz 50404 BLAKE2B cadec699f97a346dca4b3641b1e3a79710cc0a1a3da241a1901c4d6fd4915fafa2870fbce2db2f87e3472ef1462ce12e772a4b43c3ed3cc8d6825df6045f0bf0 SHA512 176c244d7ad4e909bebed0469cf44dc04bb2df91799bb0c3513fb90899b7306078c6df627aad7783b80542f37ded00258d4cb4320c10c94c33db82e98f864e76 +DIST vertico-2.3.gh.tar.gz 50671 BLAKE2B 0dd7682cd5f167d8f6c71173831d1d9d7251f2f256119c81853a7d9c641ab193c4a17874dd1685e013fb57154e709f666ace02dc9e2f1f2283ba205c0f2a6a1d SHA512 d40319354f45c4f6be562398957e73cf94d6d9bc3bd75062543c097c2ccc167b02a29e7df59f10cb200834628426dd4835aea93d3714936aa7200832610cb465 diff --git a/app-emacs/vertico/vertico-2.3.ebuild b/app-emacs/vertico/vertico-2.3.ebuild new file mode 100644 index 000000000000..49dee1806f65 --- /dev/null +++ b/app-emacs/vertico/vertico-2.3.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 +}
