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/ruby-prof/
Date: Sun, 28 Aug 2016 05:53:06
Message-Id: 1472363547.aff8bbe4bc665425d56abc0a69e08dee7fa21234.graaff@gentoo
1 commit: aff8bbe4bc665425d56abc0a69e08dee7fa21234
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 05:52:27 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 05:52:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff8bbe4
7
8 dev-ruby/ruby-prof: add 0.16.2
9
10 Package-Manager: portage-2.2.28
11
12 dev-ruby/ruby-prof/Manifest | 1 +
13 dev-ruby/ruby-prof/ruby-prof-0.16.2.ebuild | 63 ++++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-ruby/ruby-prof/Manifest b/dev-ruby/ruby-prof/Manifest
17 index 51d3e76..ed06852 100644
18 --- a/dev-ruby/ruby-prof/Manifest
19 +++ b/dev-ruby/ruby-prof/Manifest
20 @@ -1 +1,2 @@
21 DIST ruby-prof-0.15.9.tgz 83664 SHA256 000a42145bc0db20295d6feeb096788c3c6f226c9b9ee96a4d03cbb81a279cdd SHA512 6567cf29dd08be5d16a4ffb39c7475fb7daee472dba13894bdfca4a21c153bcc2f96b7b4dfb3f346e49528d593f5c29aabf9735b3f97ba7b09a97ee4514df43b WHIRLPOOL 7c052faf6e3c0ad2c0bf5dc3441166602e55f38a3694978c16af043812a8de30c3b326f5917d8bb95591c41738ccc066ebd78bc661080f20df687547ed78c9f7
22 +DIST ruby-prof-0.16.2.tgz 87039 SHA256 10bc9007ace7ec1444a12a4b47708cd790f9274dbdb229b0fe4fdd8d36267e25 SHA512 4a070486375a40afd03c006385a14f5d2ae3670a658e1153b086d0e63eb7a87af38ae060c9d457cd67a5e084f75dd997cd39b890ef4a510bbae801838f74f7f8 WHIRLPOOL 54196ef9a9c9c8d17cbcaa08aae89f20365645f1c21e2700ca6b7b3fd4aa46dcf9af1cbc654388c5e75f6312e59ef8814ce241d2081f55e399c4bb4c38051fe5
23
24 diff --git a/dev-ruby/ruby-prof/ruby-prof-0.16.2.ebuild b/dev-ruby/ruby-prof/ruby-prof-0.16.2.ebuild
25 new file mode 100644
26 index 00000000..5259b20
27 --- /dev/null
28 +++ b/dev-ruby/ruby-prof/ruby-prof-0.16.2.ebuild
29 @@ -0,0 +1,63 @@
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_EXTRADOC="README.rdoc CHANGES"
39 +RUBY_FAKEGEM_DOCDIR="doc"
40 +
41 +inherit multilib ruby-fakegem
42 +
43 +DESCRIPTION="A module for profiling Ruby code"
44 +HOMEPAGE="https://github.com/ruby-prof/ruby-prof"
45 +SRC_URI="https://github.com/ruby-prof/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~ppc ~x86"
50 +IUSE=""
51 +
52 +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/minitest )"
53 +
54 +all_ruby_prepare() {
55 + # Avoid bundler
56 + sed -i -e '/bundler/I s:^:#:' -e '/:build/ s:^:#:' Rakefile || die
57 +
58 + sed -i -e '2igem "test-unit"' test/test_helper.rb || die
59 +
60 + # Fix a timing-dependant spec since its thresholds for success are
61 + # too tight.
62 + sed -i -e '/test_class_methods/,/^ end/ s:^:#:' test/measure_cpu_time_test.rb || die
63 +
64 + # We install the shared object in lib, not ext.
65 + sed -i -e 's#../ext/ruby_prof#../lib/ruby_prof#' lib/ruby-prof.rb || die
66 +
67 + # Avoid unneeded dependency on rake-compiler
68 + sed -i -e '/extensiontask/ s:^:#:' \
69 + -e '/ExtensionTask/,/end/ s:^:#:' Rakefile || die
70 +
71 + # Create directory required for the test suite to pass
72 + mkdir tmp || die
73 +}
74 +
75 +each_ruby_configure() {
76 + ${RUBY} -Cext/ruby_prof extconf.rb || die "extconf.rb failed"
77 +}
78 +
79 +each_ruby_compile() {
80 + emake V=1 -Cext/ruby_prof || die "build failed"
81 +
82 + cp ext/ruby_prof/*$(get_modname) lib/ || die "copy of extension failed"
83 +}
84 +
85 +all_ruby_install() {
86 + all_fakegem_install
87 +
88 + for dir in examples ; do
89 + docinto "$dir"
90 + dodoc -r "$dir"/*
91 + done
92 +}