commit: c54bcc90dce142ac8db068b92cd119dc64087c40 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Jan 8 18:00:45 2024 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Jan 8 19:22:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54bcc90
app-emacs/fsharp-mode: add live 9999 version Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/fsharp-mode/fsharp-mode-9999.ebuild | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-emacs/fsharp-mode/fsharp-mode-9999.ebuild b/app-emacs/fsharp-mode/fsharp-mode-9999.ebuild new file mode 100644 index 000000000000..77bff9ac449b --- /dev/null +++ b/app-emacs/fsharp-mode/fsharp-mode-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=29.1 # To compile full suite including Eglot, introduced in 29.1. + +inherit elisp + +DESCRIPTION="Support for the F# programming language" +HOMEPAGE="https://github.com/fsharp/emacs-fsharp-mode/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/fsharp/emacs-${PN}.git" +else + SRC_URI="https://github.com/fsharp/emacs-${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/emacs-${P}" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" + +DOCS=( CHANGELOG.md README.org ) +ELISP_REMOVE="test/fsi-tests.el test/integration-tests.el" +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests buttercup test
