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:30
Message-Id: 1542438731.c6460ff357f0426252f1157e9962984590087fc9.graaff@gentoo
1 commit: c6460ff357f0426252f1157e9962984590087fc9
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 17 07:08:32 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 17 07:12:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6460ff3
7
8 dev-ruby/did_you_mean: avoid broken test
9
10 Fixes: https://bugs.gentoo.org/671120
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.1.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.1.2.ebuild b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
18 index bd875176b60..3656e938bba 100644
19 --- a/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
20 +++ b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2017 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 }