forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST public_suffix-2.0.3.gem 89600 SHA256 69cf11137edc0cb78b21592e9fdc34661c4774d4359e172737aa747537f75619 SHA512 8065c7e15e8567c512d1aa4b35dd9d1195c2cce0b1870d745cf661411410bb64721c568d229dac26ef6925e28836fedab5c1262e9103d4c6db34de460b1659c6 WHIRLPOOL 439a5f8b8226b7b8224664ab5025c8debc86caae86368aa6d0c71a90c485586c6bcac17f49f8051fe00b001086c3be8986bc412aef3bef6c1b2b96a57f976df3 | ||
DIST public_suffix-2.0.4.gem 89600 SHA256 1d10f21372a31e54fb3e6f5cf0040954fca4bce626c7aa97679258923c8de5c5 SHA512 13ce6c861a2118d4a93166b9d90d825acda2d20864f7a25b6b5be8dab1f8b4bb2bf8d76ce6230638275ae6817e02a3152a50e4cd52f768f1184227e22e0272a1 WHIRLPOOL 60d2ab4d995b56d5672b4146ebb3513de5a3cf4bc8c4a25fe467ae85b406609cdd04933a741769a2b3f5cbcd3899f3bcb0bf0d6a5466d381e9d421f356b3cf86 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
USE_RUBY="ruby20 ruby21 ruby22 ruby23" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRAINSTALL="data" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Parse and decompose a domain name into top level domain, domain and subdomains" | ||
HOMEPAGE="https://simonecarletti.com/code/publicsuffix-ruby/" | ||
|
||
KEYWORDS="~amd64" | ||
LICENSE="MIT" | ||
SLOT="2" | ||
IUSE="" | ||
|
||
ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/yard )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/rubocop/I s:^:#:' Rakefile || die | ||
sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die | ||
} |