Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/vertico/
Date: Sat, 21 May 2022 08:17:38
Message-Id: 1653120899.6a38efc2dcda2a31387a637253c4519165f049c9.matthew@gentoo
1 commit: 6a38efc2dcda2a31387a637253c4519165f049c9
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 21 08:10:25 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sat May 21 08:14:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a38efc2
7
8 app-emacs/vertico: add 0.23
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 app-emacs/vertico/Manifest | 1 +
13 app-emacs/vertico/vertico-0.23.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/app-emacs/vertico/Manifest b/app-emacs/vertico/Manifest
17 index 6d553fad78f7..231cca56b0b8 100644
18 --- a/app-emacs/vertico/Manifest
19 +++ b/app-emacs/vertico/Manifest
20 @@ -1,2 +1,3 @@
21 DIST vertico-0.20.tar.gz 40899 BLAKE2B 73f42eefc43095c58c38570fac2fc915f7a1d7095f2b1864834eb57d658114ee3a4a98fb834c64793810505e171602801d8a492eecc7349137833442fc02b715 SHA512 0e683a572fec4ba223f03672461b4888667e35202dd1b2efc139127d3327d6d7a6d7eab96549239e6dad6e86054854b49a3be553ce482fd2e683bdb029e3a9c0
22 DIST vertico-0.22.tar.gz 42487 BLAKE2B f6863b4078f25fba318685fd16a34abe016c9fb9fd94a7ad6fcbce02c72526786c74f67177a44433ee5aa747382db81762015fcfe98da252f19aa88f219d294d SHA512 108348cb43f07909570dd40e058c1ea612c6a8c39794a365ef0ee0111d7f43dde37f82c46bcac0319eba44e6e5553bde2bc09f8755bb1e3f4b22999fdacc23c2
23 +DIST vertico-0.23.tar.gz 42631 BLAKE2B ccb5a30cb3da9bed0a16af06919635ebc23777d0f19fad4fbbb422b0bf04e38f1de1a51e375263f212b0ae25881f4428e9fc6d665ef46ff9aaabd3964b4ab006 SHA512 7425b33a7628e8fd246386908835ee52ef357ecd3909a6cde0f9ed89dc468590fc854b599c2ed13572003ef6b36bd8df26db3da0764feadc407918ed68ba910a
24
25 diff --git a/app-emacs/vertico/vertico-0.23.ebuild b/app-emacs/vertico/vertico-0.23.ebuild
26 new file mode 100644
27 index 000000000000..d2415e174e28
28 --- /dev/null
29 +++ b/app-emacs/vertico/vertico-0.23.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +NEED_EMACS=27
36 +
37 +inherit elisp
38 +
39 +DESCRIPTION="Vertical interactive completion"
40 +HOMEPAGE="https://github.com/minad/vertico"
41 +SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +SITEFILE="50${PN}-gentoo.el"
48 +
49 +src_prepare() {
50 + default
51 + mv extensions/*.el . || die
52 +}
53 +
54 +src_compile() {
55 + elisp_src_compile
56 + elisp-make-autoload-file
57 +}