diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-06-03 01:52:11 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-06-03 01:53:32 +0200 |
commit | 972736260b6d90cdef60ffc40c778bf37602ed0a (patch) | |
tree | 7f434201246aa1ffe02577c6b095f2965c9b5f5c /app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild | |
parent | app-emacs/flycheck-nimsuggest: fix runtime deps (diff) | |
download | gentoo-972736260b6d90cdef60ffc40c778bf37602ed0a.tar.gz gentoo-972736260b6d90cdef60ffc40c778bf37602ed0a.tar.bz2 gentoo-972736260b6d90cdef60ffc40c778bf37602ed0a.zip |
app-emacs/raku-mode: new package; add version 0.2.1_p20211121
2021.11.21 snapshot
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild')
-rw-r--r-- | app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild b/app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild new file mode 100644 index 000000000000..0f07259a9572 --- /dev/null +++ b/app-emacs/raku-mode/raku-mode-0.2.1_p20211121.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +H=977b14a7c1295ebf2aad2f807d3f8e7c27aeb47f +NEED_EMACS=24.4 + +inherit elisp + +DESCRIPTION="Major mode for editing Raku code" +HOMEPAGE="https://github.com/Raku/raku-mode/" +SRC_URI="https://github.com/Raku/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${H} + +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( app-emacs/ert-runner )" + +DOCS=( CHANGELOG.md README.md README.tmp-imenu-notes ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ert-runner -L . -L test --reporter ert+duration --script test || die +} |