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/syntax/
Date: Sun, 02 Apr 2017 05:40:28
Message-Id: 1491111585.00499f72ca711c7b98a79383023af3416a514990.graaff@gentoo
1 commit: 00499f72ca711c7b98a79383023af3416a514990
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 2 05:39:45 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 2 05:39:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00499f72
7
8 dev-ruby/syntax: fix building with newer rake versions, bug 614260
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ruby/syntax/syntax-1.2.0-r1.ebuild | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-ruby/syntax/syntax-1.2.0-r1.ebuild b/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
16 index 9f642c10133..28abba848f1 100644
17 --- a/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
18 +++ b/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=5
25 @@ -21,3 +21,7 @@ IUSE="test doc"
26 RUBY_PATCHES=( "${P}-require-set.patch" )
27
28 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"
29 +
30 +all_ruby_prepare() {
31 + sed -i -e '/sshpublisher/ s:^:#:' Rakefile || die
32 +}