diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-05-28 17:08:42 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-05-28 17:13:14 +0200 |
commit | 502272a0082e595f77ff69dbf3eece040ba96849 (patch) | |
tree | 1965c50d289eedc16af846e02e5c75f5d0aff3e9 /app-emacs | |
parent | app-emacs/with-editor: add live version (diff) | |
download | gentoo-502272a0082e595f77ff69dbf3eece040ba96849.tar.gz gentoo-502272a0082e595f77ff69dbf3eece040ba96849.tar.bz2 gentoo-502272a0082e595f77ff69dbf3eece040ba96849.zip |
app-emacs/git-modes: add live version
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/git-modes/git-modes-9999.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-emacs/git-modes/git-modes-9999.ebuild b/app-emacs/git-modes/git-modes-9999.ebuild new file mode 100644 index 000000000000..5dd60a104871 --- /dev/null +++ b/app-emacs/git-modes/git-modes-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Emacs major modes for editing Git configuration files" +HOMEPAGE="https://github.com/magit/git-modes/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/magit/${PN}.git" +else + SRC_URI="https://github.com/magit/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=">=app-emacs/compat-29.1.4.1" +BDEPEND="${RDEPEND}" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + + elisp-make-autoload-file +} |