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/rack-attack/
Date: Sat, 30 Mar 2019 06:46:23
Message-Id: 1553928202.acd92f96b756ca3ceab907823d42c29fee6f8433.graaff@gentoo
1 commit: acd92f96b756ca3ceab907823d42c29fee6f8433
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 06:26:53 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 06:43:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acd92f96
7
8 dev-ruby/rack-attack: avoid unneeded dep on rubocop
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/rack-attack/rack-attack-5.4.2.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-ruby/rack-attack/rack-attack-5.4.2.ebuild b/dev-ruby/rack-attack/rack-attack-5.4.2.ebuild
17 index ac0a6bf48ae..150fc467801 100644
18 --- a/dev-ruby/rack-attack/rack-attack-5.4.2.ebuild
19 +++ b/dev-ruby/rack-attack/rack-attack-5.4.2.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=6
26 @@ -31,4 +31,5 @@ ruby_add_bdepend "test? (
27 all_ruby_prepare() {
28 sed -i -e '/\(bundler\|byebug\)/ s:^:#:' Rakefile spec/spec_helper.rb || die
29 sed -i -e '3igem "actionpack"' spec/spec_helper.rb || die
30 + sed -i -e '/rubocop/I s:^:#:' Rakefile || die
31 }