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: Thu, 22 Mar 2018 06:50:33
Message-Id: 1521701411.fc9d1e236bdc75f7adf2d1c0807bafa6369e1af8.graaff@gentoo
1 commit: fc9d1e236bdc75f7adf2d1c0807bafa6369e1af8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 22 06:26:28 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 22 06:50:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9d1e23
7
8 dev-ruby/treetop: add 1.6.10
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/treetop/Manifest | 1 +
13 dev-ruby/treetop/treetop-1.6.10.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-ruby/treetop/Manifest b/dev-ruby/treetop/Manifest
17 index 24643b5e6a8..95f9b5607c7 100644
18 --- a/dev-ruby/treetop/Manifest
19 +++ b/dev-ruby/treetop/Manifest
20 @@ -1 +1,2 @@
21 +DIST treetop-1.6.10.gem 92160 BLAKE2B ff3b6f0a92bcd2ad279c186e3a3eea72aa8243a89d4a1382df6322d73a19b79bede6c9f5c443644a5011b755a673bc9592f964cf61ab68fdd9f2da2dfcc0be94 SHA512 adff1cf93d1ea071be948437e3fd2800c2e892d1dac49d4571a89336773e012007abb1b4e15f0a86031077c46a6667f8fca8e22920e5c29186e0c3227b4d82ee
22 DIST treetop-1.6.9.gem 92160 BLAKE2B 4c2a748ec1cc153aab8ddadf536200a6cda4d1f02245b7e0ceefb7ef9bc85b91810820b8cd557a82490e5e4b5606fb714b3f5775029743dcd2d64e6a601ab5e2 SHA512 faa0b2eb0a8bfd0c47b7acf03d7585fe56d02b9726630fc01e533c80ea796de158ff7c6a008fe6a30b979b2791944afc598e81c17cdfbfecf1083a9436b54fdd
23
24 diff --git a/dev-ruby/treetop/treetop-1.6.10.ebuild b/dev-ruby/treetop/treetop-1.6.10.ebuild
25 new file mode 100644
26 index 00000000000..2d20f97ea82
27 --- /dev/null
28 +++ b/dev-ruby/treetop/treetop-1.6.10.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +USE_RUBY="ruby22 ruby23 ruby24"
36 +
37 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
38 +RUBY_FAKEGEM_TASK_DOC=""
39 +RUBY_FAKEGEM_DOCDIR="doc"
40 +RUBY_FAKEGEM_EXTRADOC="README.md"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Treetop is a language for describing languages"
45 +HOMEPAGE="https://github.com/cjheath/treetop"
46 +LICENSE="Ruby"
47 +
48 +KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
49 +SLOT="0"
50 +IUSE=""
51 +
52 +ruby_add_bdepend "test? ( >=dev-ruby/rr-1.0 dev-ruby/activesupport )"
53 +ruby_add_rdepend ">=dev-ruby/polyglot-0.3.1:0"
54 +
55 +all_ruby_install() {
56 + all_fakegem_install
57 +
58 + insinto /usr/share/doc/${PF}/examples
59 + doins -r examples/*
60 +}