Diff consult-0.34 with a consult-0.35

/usr/portage/app-emacs/consult/consult-0.35.ebuild 2023-10-09 14:52:28.676368330 +0300
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
6 7

  
7 8
inherit elisp
8 9

  
9
DESCRIPTION="Consulting complete-read"
10
HOMEPAGE="https://github.com/minad/consult"
11
SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
10
DESCRIPTION="Consulting complete-read for GNU Emacs"
11
HOMEPAGE="https://github.com/minad/consult/"
12

  
13
if [[ ${PV} == *9999* ]] ; then
14
	inherit git-r3
15
	EGIT_REPO_URI="https://github.com/minad/${PN}.git"
16
else
17
	SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
18
		-> ${P}.tar.gz"
19
	KEYWORDS="amd64 ~x86"
20
fi
12 21

  
13 22
LICENSE="GPL-3+"
14 23
SLOT="0"
15
KEYWORDS="~amd64 ~x86"
16 24

  
17 25
RDEPEND=">=app-emacs/compat-28.1"
18 26
BDEPEND="${RDEPEND}"
Thank you!