diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-12-10 19:36:23 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-12-10 20:16:34 +0100 |
commit | b4626a0d986cb872c4b3751bf9b31aca0234759d (patch) | |
tree | b8f91cfd9dcecbe384eef8b7268ae72f09a3a62e /app-emacs | |
parent | app-emacs/embark: bump to 1.0 (diff) | |
download | gentoo-b4626a0d986cb872c4b3751bf9b31aca0234759d.tar.gz gentoo-b4626a0d986cb872c4b3751bf9b31aca0234759d.tar.bz2 gentoo-b4626a0d986cb872c4b3751bf9b31aca0234759d.zip |
app-emacs/embark-consult: bump to 1.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/embark-consult/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/embark-consult/embark-consult-1.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-emacs/embark-consult/Manifest b/app-emacs/embark-consult/Manifest index 18d148f2a2ae..a606219ba46f 100644 --- a/app-emacs/embark-consult/Manifest +++ b/app-emacs/embark-consult/Manifest @@ -1 +1,2 @@ DIST embark-0.23.tar.gz 110865 BLAKE2B 8e4c3e46b58d052b17b3fa9a41083e2e2efc9173897e0da17f5da80ebe2445ea2a9f45879b3ce60aacac6ad195b29d228a6bf304c5434c9432d6db627ca7f9c0 SHA512 9541bce783d9b11a8d6102d6d68a48239e8408eebd4afa3de04221436fc97ff966445dee0ac7ec126cdd10b2c523324505b78464261673205c91da0d2075ac82 +DIST embark-1.0.tar.gz 112818 BLAKE2B 111203ec462b06f11dae9760a64d27e197faa13cefe1eb4debd2e7222380aab0ccad19587ee275f343bb0e2a716379e67209e27dcaa0aaaa7a98f97f660fb6f5 SHA512 ca42c6bd428807aefee6e7bb817651577401be8adacbd64146e97bd07ddd8df325dfeafeaa824fd3f4cd289da1a9b4868f44feacb66585f2533b64fa4d594d22 diff --git a/app-emacs/embark-consult/embark-consult-1.0.ebuild b/app-emacs/embark-consult/embark-consult-1.0.ebuild new file mode 100644 index 000000000000..c899a2cf218a --- /dev/null +++ b/app-emacs/embark-consult/embark-consult-1.0.ebuild @@ -0,0 +1,36 @@ +# 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" |