diff options
author | Hans de Graaff <graaff@gentoo.org> | 2018-08-16 07:02:29 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2018-08-16 07:02:29 +0200 |
commit | 9c904c0c2815833b5d446ef7af433f6543753385 (patch) | |
tree | 11e4870d4a11bd9295956d29b50bfdbf93f6200c /dev-ruby/public_suffix | |
parent | sys-apps/rtl-entropy: initial commit (diff) | |
download | gentoo-9c904c0c2815833b5d446ef7af433f6543753385.tar.gz gentoo-9c904c0c2815833b5d446ef7af433f6543753385.tar.bz2 gentoo-9c904c0c2815833b5d446ef7af433f6543753385.zip |
dev-ruby/public_suffix: add 3.0.3
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-ruby/public_suffix')
-rw-r--r-- | dev-ruby/public_suffix/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/public_suffix/public_suffix-3.0.3.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-ruby/public_suffix/Manifest b/dev-ruby/public_suffix/Manifest index e236aeabb0a6..110670186f71 100644 --- a/dev-ruby/public_suffix/Manifest +++ b/dev-ruby/public_suffix/Manifest @@ -1,2 +1,3 @@ DIST public_suffix-2.0.5.gem 89600 BLAKE2B c561b32a26c4b605821eff66ae2afef17988c45d954a15b04a7174b202851e6dd0012df32981146a0cbaadfd0358b1f67be359b5526a65de2a3b0f7061ee7beb SHA512 d261dec44c11803631e267f36d82a59278d90dceb2811233ca511e895c5f1a58005b6afea980bd1bbd78bbfc7a3a4e02f9f1fbe351fded38be340ecc235da383 DIST public_suffix-3.0.2.gem 95744 BLAKE2B 5c06af572214760f7d2a176e1b6603ea9bf0f45c91633cdead841ef8289b7c9ae7ae5b0400d5248d3df4c3bc81d9bb357de622fb85a9c3a67f4973872bdee94a SHA512 eafab08d0114212798390b4b5e9472fab98c91b38ea836c76254673e48bd068afeeb5ec4a2685bdb030ea78e4e5ea0be10dc3b742ed30352e11ec7a7cc1e7bc2 +DIST public_suffix-3.0.3.gem 96768 BLAKE2B 0ef8da7c32a2a1268d45a03a46f9a7de9da312fae2b2461692b1eefca09075029972ef196ae5c531d85140cc5da4107ff47abb16129b19e995357d04cfd852b4 SHA512 8d80d126bb91162d9228dd515c2e5cee466134493e874c136831eda11293477a035ec05436a16dc0bf720b7b38b15664e8c1d9b5f4f140f4054fc387565ea275 diff --git a/dev-ruby/public_suffix/public_suffix-3.0.3.ebuild b/dev-ruby/public_suffix/public_suffix-3.0.3.ebuild new file mode 100644 index 000000000000..c4206c610353 --- /dev/null +++ b/dev-ruby/public_suffix/public_suffix-3.0.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRAINSTALL="data" + +RUBY_FAKEGEM_BINWRAP="" + +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 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +LICENSE="MIT" +SLOT="3" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/mocha )" + +all_ruby_prepare() { + sed -i -e '/rubocop/I s:^:#:' \ + -e '/yardoc/,/CLOBBER.include/ s:^:#:' \ + -e '/bundler/ s:^:#:' Rakefile || die + sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die +} |