Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/public_suffix/
Date: Sat, 05 Nov 2016 14:56:04
Message-Id: 1478357726.f30c89f5b867763e148cc31e9abdfafecfd56bcb.mrueg@gentoo
1 commit: f30c89f5b867763e148cc31e9abdfafecfd56bcb
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 5 14:55:26 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 5 14:55:26 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30c89f5
7
8 dev-ruby/public_suffix: Install data directory as well
9
10 Package-Manager: portage-2.3.2
11
12 .../public_suffix/public_suffix-2.0.3-r1.ebuild | 27 ++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/dev-ruby/public_suffix/public_suffix-2.0.3-r1.ebuild b/dev-ruby/public_suffix/public_suffix-2.0.3-r1.ebuild
16 new file mode 100644
17 index 00000000..87beea3
18 --- /dev/null
19 +++ b/dev-ruby/public_suffix/public_suffix-2.0.3-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
28 +
29 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 +RUBY_FAKEGEM_EXTRAINSTALL="data"
31 +
32 +inherit ruby-fakegem
33 +
34 +DESCRIPTION="Parse and decompose a domain name into top level domain, domain and subdomains"
35 +HOMEPAGE="https://simonecarletti.com/code/publicsuffix-ruby/"
36 +
37 +KEYWORDS="~amd64"
38 +LICENSE="MIT"
39 +SLOT="2"
40 +IUSE=""
41 +
42 +ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/yard )"
43 +
44 +all_ruby_prepare() {
45 + sed -i -e '/rubocop/I s:^:#:' Rakefile || die
46 + sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
47 +}