diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-07-03 09:50:50 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-07-03 09:58:49 +0200 |
commit | f1840e1abe3d92a503b381813f8d2fc2a4124465 (patch) | |
tree | e82b4129e5948607913f1b778b9a1d7cd485a575 /app-emacs/consult | |
parent | app-emacs/corfu: add live (diff) | |
download | gentoo-f1840e1abe3d92a503b381813f8d2fc2a4124465.tar.gz gentoo-f1840e1abe3d92a503b381813f8d2fc2a4124465.tar.bz2 gentoo-f1840e1abe3d92a503b381813f8d2fc2a4124465.zip |
app-emacs/consult: enable live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/consult')
-rw-r--r-- | app-emacs/consult/consult-0.35.ebuild | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/app-emacs/consult/consult-0.35.ebuild b/app-emacs/consult/consult-0.35.ebuild index 1a06823ec878..7b1398601c9b 100644 --- a/app-emacs/consult/consult-0.35.ebuild +++ b/app-emacs/consult/consult-0.35.ebuild @@ -2,17 +2,25 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 + NEED_EMACS=27 inherit elisp -DESCRIPTION="Consulting complete-read" -HOMEPAGE="https://github.com/minad/consult" -SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +DESCRIPTION="Consulting complete-read for GNU Emacs" +HOMEPAGE="https://github.com/minad/consult/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/minad/${PN}.git" +else + SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" RDEPEND=">=app-emacs/compat-28.1" BDEPEND="${RDEPEND}" |