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/public_suffix/
Date: Mon, 29 Jan 2018 06:53:23
Message-Id: 1517208778.f4aa3174bfcba744e797485cad88cbc47135fb45.graaff@gentoo
1 commit: f4aa3174bfcba744e797485cad88cbc47135fb45
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 29 06:52:58 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 29 06:52:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4aa3174
7
8 avoid need for bundler dependency
9
10 Closes: https://bugs.gentoo.org/645972
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 dev-ruby/public_suffix/public_suffix-2.0.5.ebuild | 7 ++++---
14 dev-ruby/public_suffix/public_suffix-3.0.1.ebuild | 5 +++--
15 2 files changed, 7 insertions(+), 5 deletions(-)
16
17 diff --git a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
18 index c550eaee033..ccf55cfb3cf 100644
19 --- a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
20 +++ b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
21 @@ -1,9 +1,9 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=5
27
28 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
29 +USE_RUBY="ruby22 ruby23 ruby24"
30
31 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
32 RUBY_FAKEGEM_EXTRAINSTALL="data"
33 @@ -22,6 +22,7 @@ ruby_add_bdepend "test? ( dev-ruby/mocha )"
34
35 all_ruby_prepare() {
36 sed -i -e '/rubocop/I s:^:#:' \
37 - -e '/yardoc/,/end/ s:^:#:' Rakefile || die
38 + -e '/yardoc/,/end/ s:^:#:' \
39 + -e '/bundler/ s:^:#:' Rakefile || die
40 sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
41 }
42
43 diff --git a/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild b/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
44 index 0994676f87e..38e346e0bee 100644
45 --- a/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
46 +++ b/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
47 @@ -1,4 +1,4 @@
48 -# Copyright 1999-2017 Gentoo Foundation
49 +# Copyright 1999-2018 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51
52 EAPI=6
53 @@ -24,6 +24,7 @@ ruby_add_bdepend "test? ( dev-ruby/mocha )"
54
55 all_ruby_prepare() {
56 sed -i -e '/rubocop/I s:^:#:' \
57 - -e '/yardoc/,/CLOBBER.include/ s:^:#:' Rakefile || die
58 + -e '/yardoc/,/CLOBBER.include/ s:^:#:' \
59 + -e '/bundler/ s:^:#:' Rakefile || die
60 sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
61 }