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/rqrcode/
Date: Sat, 26 Jan 2019 16:46:25
Message-Id: 1548521107.7f06e9a5fda601a53ce444d0d394d2d878a89f92.graaff@gentoo
1 commit: 7f06e9a5fda601a53ce444d0d394d2d878a89f92
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 26 08:40:59 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 26 16:45:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f06e9a5
7
8 dev-ruby/rqrcode: add missing die to tests
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/rqrcode/rqrcode-0.10.1.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild b/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
17 index 4267e093f59..7c3ccc63514 100644
18 --- a/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
19 +++ b/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Authors
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=5
26 @@ -26,5 +26,5 @@ all_ruby_prepare() {
27 }
28
29 each_ruby_test() {
30 - ${RUBY} -Ilib:test:. -e "Dir['test/test_r*.rb'].each{|f| require f}"
31 + ${RUBY} -Ilib:test:. -e "Dir['test/test_r*.rb'].each{|f| require f}" || die
32 }