diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-07-06 21:19:37 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-07-07 01:08:31 +0200 |
commit | 00b174df910deca2f3172285d18d68c866a1fc13 (patch) | |
tree | c1ceb50c8ab951f355f668a1862632017549a3fe /app-emacs | |
parent | app-emacs/avy-embark-collect: add live (diff) | |
download | gentoo-00b174df910deca2f3172285d18d68c866a1fc13.tar.gz gentoo-00b174df910deca2f3172285d18d68c866a1fc13.tar.bz2 gentoo-00b174df910deca2f3172285d18d68c866a1fc13.zip |
app-emacs/embark-consult: add live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/embark-consult/embark-consult-9999.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-emacs/embark-consult/embark-consult-9999.ebuild b/app-emacs/embark-consult/embark-consult-9999.ebuild new file mode 100644 index 000000000000..5938c7ef66e4 --- /dev/null +++ b/app-emacs/embark-consult/embark-consult-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Consult integration for Embark" +HOMEPAGE="https://github.com/oantolin/embark/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/oantolin/embark.git" +else + SRC_URI="https://github.com/oantolin/embark/archive/${PV}.tar.gz + -> embark-${PV}.tar.gz" + S="${WORKDIR}"/embark-${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/consult + app-emacs/embark +" +BDEPEND="${RDEPEND}" + +ELISP_REMOVE="avy-embark-collect.el embark-org.el embark.el" + +SITEFILE="50${PN}-gentoo.el" |