diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-07-23 15:12:40 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-07-23 16:02:11 +0200 |
commit | 9d94ac256ea8c6a9fef477009e99e41455101b9f (patch) | |
tree | 579ea6d3cf5201fdd6cc1cfacea066e92fc7f047 /app-emacs/eldev | |
parent | app-emacs/eldev: enable live (diff) | |
download | gentoo-9d94ac256ea8c6a9fef477009e99e41455101b9f.tar.gz gentoo-9d94ac256ea8c6a9fef477009e99e41455101b9f.tar.bz2 gentoo-9d94ac256ea8c6a9fef477009e99e41455101b9f.zip |
app-emacs/eldev: add live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/eldev')
-rw-r--r-- | app-emacs/eldev/eldev-9999.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app-emacs/eldev/eldev-9999.ebuild b/app-emacs/eldev/eldev-9999.ebuild new file mode 100644 index 000000000000..413e8c727a11 --- /dev/null +++ b/app-emacs/eldev/eldev-9999.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Emacs Lisp Development Tool" +HOMEPAGE="https://github.com/doublep/eldev/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/doublep/${PN}.git" +else + SRC_URI="https://github.com/doublep/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +DOCS=( README.adoc ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ELDEV_LOCAL="${S}" ./bin/${PN} test +} + +src_install() { + elisp_src_install + dobin bin/${PN} + + # NOTICE: If ELDEV_LOCAL is defined Eldev will use it + # to load up it's components, + # if it is not it will bootstrap itself from network + # always check if it uses installed Emacs Lisp files. + # Also, do not forget to run `env-update` & reopen your shell. + # https://github.com/doublep/eldev#influential-environment-variables + echo "ELDEV_LOCAL=${SITELISP}/${PN}" >> "${T}"/99${PN} || die + doenvd "${T}"/99${PN} +} + +pkg_postinst() { + elisp_pkg_postinst + + ewarn "Remember to run \`env-update && source /etc/profile\` if you plan" + ewarn "to use Eldev in a shell before logging out (or restarting" + ewarn "your login manager)." +} |