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: Tue, 28 May 2019 18:17:04
Message-Id: 1559066947.5a0b30a35d8cf4f12fede08db72c588e37be0add.graaff@gentoo
1 commit: 5a0b30a35d8cf4f12fede08db72c588e37be0add
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 28 18:09:07 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue May 28 18:09:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0b30a3
7
8 dev-ruby/ruby-prof: add 0.18.0
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 dev-ruby/ruby-prof/Manifest | 1 +
14 dev-ruby/ruby-prof/ruby-prof-0.18.0.ebuild | 62 ++++++++++++++++++++++++++++++
15 2 files changed, 63 insertions(+)
16
17 diff --git a/dev-ruby/ruby-prof/Manifest b/dev-ruby/ruby-prof/Manifest
18 index dd3197a9aee..3b72019cad4 100644
19 --- a/dev-ruby/ruby-prof/Manifest
20 +++ b/dev-ruby/ruby-prof/Manifest
21 @@ -1 +1,2 @@
22 DIST ruby-prof-0.17.0.tgz 93492 BLAKE2B e573b77fb5f1134af99480efe3af706cade122c51bbef883cf0f915e359c695fe70485239fee7415288e99115146230bc803ec1976a39c6f5d743c10f0158744 SHA512 4e2a542420eced379a0326c0f48a041379a7a2aa06247e5cd9659f92b44ebcfca21d12a7bdf50f23ef0bdd6b37895b963a489a975ca84d487920c8fe52446d53
23 +DIST ruby-prof-0.18.0.tgz 93925 BLAKE2B f7e0825e5291fdab017035b2a71029407d2b01161f4c4c7aa1f10a80b4080ac14f7adaa2c0340fe5c80f7352181d085d724dee66597ed29825ab7116d37c5e58 SHA512 1743bbd97789c9de66e9479384d204b0870e43a265471f0fbdf7a72bb19d77a30afc25da9d0ac66a921c28ce83d8a8d72279bdd9b23cf8505ccde952092dd9a5
24
25 diff --git a/dev-ruby/ruby-prof/ruby-prof-0.18.0.ebuild b/dev-ruby/ruby-prof/ruby-prof-0.18.0.ebuild
26 new file mode 100644
27 index 00000000000..0bda0ee9751
28 --- /dev/null
29 +++ b/dev-ruby/ruby-prof/ruby-prof-0.18.0.ebuild
30 @@ -0,0 +1,62 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +USE_RUBY="ruby24 ruby25 ruby26"
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/${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 +}