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/did_you_mean/
Date: Sat, 17 Nov 2018 07:12:29
Message-Id: 1542438733.8ca236e51bf87914458c23bb87d41429e99523a2.graaff@gentoo
1 commit: 8ca236e51bf87914458c23bb87d41429e99523a2
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 17 07:11:57 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 17 07:12:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca236e5
7
8 dev-ruby/did_you_mean: avoid broken test
9
10 Fixes: https://bugs.gentoo.org/671124
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild | 5 ++++-
15 1 file changed, 4 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
18 index 5531a462bc1..3d4c3dcac4d 100644
19 --- a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
20 +++ b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=5
27 @@ -19,4 +19,7 @@ IUSE=""
28
29 all_ruby_prepare() {
30 sed -i -e '/bundler/ s:^:#:' Rakefile || die
31 +
32 + # Skip test that is broken with newer ruby releases
33 + sed -i -e '/test_message/,/^ end/ s:^:#:' test/core_ext/name_error_extension_test.rb || die
34 }