Diff vertico-1.10 with a vertico-9999

/usr/portage/app-emacs/vertico/vertico-9999.ebuild 2025-02-03 17:39:32.294665014 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
NEED_EMACS="27.1"
6
NEED_EMACS="28.1"
7 7

  
8 8
inherit elisp
9 9

  
10 10
DESCRIPTION="Vertical interactive completion"
11 11
HOMEPAGE="https://github.com/minad/vertico/"
12 12

  
13
if [[ ${PV} == *9999* ]] ; then
13
if [[ "${PV}" == *9999* ]] ; then
14 14
	inherit git-r3
15 15

  
16
	EGIT_REPO_URI="https://github.com/minad/${PN}.git"
16
	EGIT_REPO_URI="https://github.com/minad/${PN}"
17 17
else
18 18
	SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
19
		-> ${P}.tar.gz"
19
		-> ${P}.gh.tar.gz"
20 20

  
21 21
	KEYWORDS="~amd64 ~x86"
22 22
fi
......
25 25
SLOT="0"
26 26

  
27 27
RDEPEND="
28
	>=app-emacs/compat-29.1.4.0
28
	>=app-emacs/compat-30.0.2.0
29 29
"
30 30
BDEPEND="
31 31
	${RDEPEND}
......
36 36

  
37 37
src_prepare() {
38 38
	default
39
	mv extensions/*.el ./ || die
39

  
40
	mv ./extensions/*.el ./ || die
40 41
}
41 42

  
42 43
src_compile() {
Thank you!