Diff embark-consult-0.22.1_p20230630 with a embark-consult-0.23

/usr/portage/app-emacs/embark-consult/embark-consult-0.23.ebuild 2023-10-09 14:52:28.684368330 +0300
10 10
DESCRIPTION="Consult integration for Embark"
11 11
HOMEPAGE="https://github.com/oantolin/embark/"
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/oantolin/embark.git"
16 17
else
17
	[[ ${PV} == *_p20230630 ]] && COMMIT=f2dcfe4d797a3ab66bb603d5cf441ae1172a672d
18
	SRC_URI="https://github.com/oantolin/embark/archive/${COMMIT}.tar.gz
18
	SRC_URI="https://github.com/oantolin/embark/archive/${PV}.tar.gz
19 19
		-> embark-${PV}.tar.gz"
20
	S="${WORKDIR}"/embark-${COMMIT}
21
	KEYWORDS="amd64 ~x86"
20
	S="${WORKDIR}/embark-${PV}"
21

  
22
	KEYWORDS="~amd64 ~x86"
22 23
fi
23 24

  
24 25
LICENSE="GPL-3+"
Thank you!