From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFA7E1395E2 for ; Sat, 5 Nov 2016 14:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B577E08D5; Sat, 5 Nov 2016 14:56:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BBC2E08D5 for ; Sat, 5 Nov 2016 14:56:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23C58341059 for ; Sat, 5 Nov 2016 14:56:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FB2A303 for ; Sat, 5 Nov 2016 14:55:59 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1478357726.f30c89f5b867763e148cc31e9abdfafecfd56bcb.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/public_suffix/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/public_suffix/public_suffix-2.0.3-r1.ebuild X-VCS-Directories: dev-ruby/public_suffix/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: f30c89f5b867763e148cc31e9abdfafecfd56bcb X-VCS-Branch: master Date: Sat, 5 Nov 2016 14:55:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a540fd19-4566-455d-bf7d-73868a621339 X-Archives-Hash: 0f37aadcb7b69844923e3827cb8c1939 commit: f30c89f5b867763e148cc31e9abdfafecfd56bcb Author: Manuel Rüger gentoo org> AuthorDate: Sat Nov 5 14:55:26 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Nov 5 14:55:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30c89f5 dev-ruby/public_suffix: Install data directory as well Package-Manager: portage-2.3.2 .../public_suffix/public_suffix-2.0.3-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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 new file mode 100644 index 00000000..87beea3 --- /dev/null +++ b/dev-ruby/public_suffix/public_suffix-2.0.3-r1.ebuild @@ -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 +}