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/classifier-reborn/
Date: Mon, 28 Aug 2017 05:54:07
Message-Id: 1503899516.27e377fcf3b9c34026e30b83ee3d5b27d32a6eaf.graaff@gentoo
1 commit: 27e377fcf3b9c34026e30b83ee3d5b27d32a6eaf
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 28 05:36:43 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 28 05:51:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e377fc
7
8 dev-ruby/classifier-reborn: avoid unneeded dependency on pry
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-ruby/classifier-reborn/classifier-reborn-2.1.0.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-ruby/classifier-reborn/classifier-reborn-2.1.0.ebuild b/dev-ruby/classifier-reborn/classifier-reborn-2.1.0.ebuild
16 index 472a90566c3..e4c7a041420 100644
17 --- a/dev-ruby/classifier-reborn/classifier-reborn-2.1.0.ebuild
18 +++ b/dev-ruby/classifier-reborn/classifier-reborn-2.1.0.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=5
23 -USE_RUBY="ruby21 ruby22 ruby23"
24 +USE_RUBY="ruby22 ruby23"
25
26 RUBY_FAKEGEM_TASK_DOC=""
27 RUBY_FAKEGEM_EXTRADOC="README.markdown"
28 @@ -32,5 +32,5 @@ all_ruby_prepare() {
29 # Comment out broken test
30 sed -i -e "/assert 'Normal',/s/^/#/" test/bayes/bayesian_test.rb || die
31
32 - sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
33 + sed -i -e '/reporters/I s:^:#:' -e '/pry/ s:^:#:' test/test_helper.rb || die
34 }