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/instantiator/
Date: Tue, 01 Nov 2016 06:28:54
Message-Id: 1477981176.46c23ff1e8cbfd4a08595a7f868ad69174dcd3cb.graaff@gentoo
1 commit: 46c23ff1e8cbfd4a08595a7f868ad69174dcd3cb
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 06:19:36 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 06:19:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c23ff1
7
8 dev-ruby/instantiator: add 0.0.7
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/instantiator/Manifest | 1 +
13 dev-ruby/instantiator/instantiator-0.0.7.ebuild | 26 +++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-ruby/instantiator/Manifest b/dev-ruby/instantiator/Manifest
17 index f5ddb85..517d2cb 100644
18 --- a/dev-ruby/instantiator/Manifest
19 +++ b/dev-ruby/instantiator/Manifest
20 @@ -1 +1,2 @@
21 DIST instantiator-0.0.6.gem 6144 SHA256 3188fc49f11871d901656c7c01fd8eb035ee4b70f0d619228a69e79e1ec4d555 SHA512 0d24c804dd048c071e5ddd021a1adcb907eb642df16ce841fdca2efdfd5604f73d065ad4496cf6d63bdff73e7488391d7226bdc0d918d2813502ca3d4fc615a1 WHIRLPOOL ee7be68985c79bdece394bc84766e754f115127910ac68f9c1a73f370c2b0e2d271dde23266ffafd3b6f1b784441855c3e1429f674265fe9ab82fe64f3966a47
22 +DIST instantiator-0.0.7.gem 8192 SHA256 797de5c6e264cbf67aefa24aee31302604b250dd23c0f237a827633fdfe00770 SHA512 b37a9380d787252244d2b85bb99365f4a4ecdab58f76caf5e59df00b239f4981119eb5c2eb2fe6ddcf810bb0fb43695f8926370a101f4223fa28811953e6731d WHIRLPOOL 73291a1979dff6fabf79d9d0ebb3c5f05df17af3ac2c3f664556a49531723fbe9e6a587c47a0355ebeb5f7e4edb18f51ed235f2b192fc8a124498be8911cd527
23
24 diff --git a/dev-ruby/instantiator/instantiator-0.0.7.ebuild b/dev-ruby/instantiator/instantiator-0.0.7.ebuild
25 new file mode 100644
26 index 00000000..040e4a1
27 --- /dev/null
28 +++ b/dev-ruby/instantiator/instantiator-0.0.7.ebuild
29 @@ -0,0 +1,26 @@
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 ruby23"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +RUBY_FAKEGEM_EXTRADOC="README.md"
40 +
41 +inherit ruby-fakegem
42 +
43 +DESCRIPTION="Instantiate an arbitrary Ruby class"
44 +HOMEPAGE="https://github.com/floehopper/introspection"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
49 +IUSE=""
50 +
51 +ruby_add_rdepend "dev-ruby/blankslate:*"
52 +
53 +all_ruby_prepare() {
54 + sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
55 +}