Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/treetop/
Date: Mon, 22 Feb 2016 06:28:20
Message-Id: 1456122485.54d51d18e6b410ca2807adee9b3b9ae8dfece03c.graaff@gentoo
1 commit: 54d51d18e6b410ca2807adee9b3b9ae8dfece03c
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 22 06:27:39 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 22 06:28:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d51d18
7
8 dev-ruby/treetop: add 1.6.4
9
10 Package-Manager: portage-2.2.26
11
12 dev-ruby/treetop/Manifest | 1 +
13 dev-ruby/treetop/treetop-1.6.4.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-ruby/treetop/Manifest b/dev-ruby/treetop/Manifest
17 index cbc985f..b7fca69 100644
18 --- a/dev-ruby/treetop/Manifest
19 +++ b/dev-ruby/treetop/Manifest
20 @@ -1 +1,2 @@
21 DIST treetop-1.6.3.gem 81920 SHA256 8b0bb528a57b9af6324ed7c9856b1d1ee2f1b53e71de79628bc47704234862bb SHA512 a4018f551ae74e84d126c4aa7e3bbcd2b2765175d1999bfac328b0b653cb6e5a5e599e51925575024af55092700bd40fd19c20c16d6cb2374d2f8d4b5f7a6229 WHIRLPOOL 20d8d302c309979fb0572c3d8388b3a39afcea31e29555a5173c78f2528a2943540587a059b087a3a380163fbac6f138ffb10e7df5dd48b0cfc42f00fe581461
22 +DIST treetop-1.6.4.gem 81408 SHA256 bdce555085a1aaabf503abd036b81e1bd0f724f17bea1331b39ed866c2106241 SHA512 2e685dae085d4fb851d565806338a8c04ac55d22d804ce1a6e4e7fa69f77c45793d7ec05f8cf54db6f0f4ab92b947f429e196726cc99048f2b06134d276185ed WHIRLPOOL e5fcc119bcba99a5019a784557159dd5ed319e56c87d56d9a9c8e6c21c7d6f32f57bf272d9c19481007a6526ec72b59bb83459bd0e27b4b2d38a207820d5b390
23
24 diff --git a/dev-ruby/treetop/treetop-1.6.4.ebuild b/dev-ruby/treetop/treetop-1.6.4.ebuild
25 new file mode 100644
26 index 0000000..d69403a
27 --- /dev/null
28 +++ b/dev-ruby/treetop/treetop-1.6.4.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +USE_RUBY="ruby20 ruby21 ruby22"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +RUBY_FAKEGEM_TASK_DOC=""
40 +RUBY_FAKEGEM_DOCDIR="doc"
41 +RUBY_FAKEGEM_EXTRADOC="README.md"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Treetop is a language for describing languages"
46 +HOMEPAGE="https://github.com/cjheath/treetop"
47 +LICENSE="Ruby"
48 +
49 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 +SLOT="0"
51 +IUSE=""
52 +
53 +ruby_add_bdepend "test? ( >=dev-ruby/rr-1.0 dev-ruby/activesupport )"
54 +ruby_add_rdepend ">=dev-ruby/polyglot-0.3.1:0"
55 +
56 +all_ruby_install() {
57 + all_fakegem_install
58 +
59 + insinto /usr/share/doc/${PF}/examples
60 + doins -r examples/*
61 +}