Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/graaff:master commit in: app-emacs/cucumber-el/
Date: Wed, 01 Jun 2016 13:40:49
Message-Id: 1464788431.9f02ad060323fc2a6102c9905f2bcfd8aad6d993.graaff@gentoo
1 commit: 9f02ad060323fc2a6102c9905f2bcfd8aad6d993
2 Author: Hans de Graaff <hans <AT> degraaff <DOT> org>
3 AuthorDate: Wed Jun 1 13:40:31 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 13:40:31 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/graaff.git/commit/?id=9f02ad06
7
8 app-emacs/cucumber-el: add support for find-step
9
10 Package-Manager: portage-2.2.28
11
12 .../cucumber-el/cucumber-el-0.20141129-r1.ebuild | 35 ++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 diff --git a/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild b/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild
16 new file mode 100644
17 index 0000000..4af4a58
18 --- /dev/null
19 +++ b/app-emacs/cucumber-el/cucumber-el-0.20141129-r1.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit elisp
28 +
29 +GIT_COMMIT="40886bc4cc5b1e855d6bb78505ebc651593d409d"
30 +
31 +IUSE=""
32 +
33 +DESCRIPTION="A major mode for editing Cucumber stories."
34 +HOMEPAGE="https://github.com/michaelklishin/cucumber.el"
35 +SRC_URI="https://github.com/michaelklishin/cucumber.el/archive/${GIT_COMMIT}.tar.gz -> ${P}-git.tgz"
36 +LICENSE="|| ( GPL-2 GPL-3 )"
37 +SLOT="0"
38 +KEYWORDS="~amd64"
39 +
40 +SITEFILE="50${PN}-gentoo.el"
41 +
42 +S="${WORKDIR}/cucumber.el-${GIT_COMMIT}"
43 +
44 +RDEPEND="
45 + dev-ruby/ruby_parser
46 + >=dev-ruby/gherkin-2.11.8
47 +"
48 +
49 +src_install() {
50 + elisp_src_install
51 +
52 + elisp-install ${PN}/support support/find_step.rb
53 +
54 + dodoc README.md
55 +}