commit: 9f02ad060323fc2a6102c9905f2bcfd8aad6d993 Author: Hans de Graaff <hans <AT> degraaff <DOT> org> AuthorDate: Wed Jun 1 13:40:31 2016 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Wed Jun 1 13:40:31 2016 +0000 URL: https://gitweb.gentoo.org/dev/graaff.git/commit/?id=9f02ad06
app-emacs/cucumber-el: add support for find-step Package-Manager: portage-2.2.28 .../cucumber-el/cucumber-el-0.20141129-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild b/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild new file mode 100644 index 0000000..4af4a58 --- /dev/null +++ b/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit elisp + +GIT_COMMIT="40886bc4cc5b1e855d6bb78505ebc651593d409d" + +IUSE="" + +DESCRIPTION="A major mode for editing Cucumber stories." +HOMEPAGE="https://github.com/michaelklishin/cucumber.el" +SRC_URI="https://github.com/michaelklishin/cucumber.el/archive/${GIT_COMMIT}.tar.gz -> ${P}-git.tgz" +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64" + +SITEFILE="50${PN}-gentoo.el" + +S="${WORKDIR}/cucumber.el-${GIT_COMMIT}" + +RDEPEND=" + dev-ruby/ruby_parser + >=dev-ruby/gherkin-2.11.8 +" + +src_install() { + elisp_src_install + + elisp-install ${PN}/support support/find_step.rb + + dodoc README.md +}
