From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B585D58975 for ; Wed, 3 Feb 2016 07:02:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93BC221C010; Wed, 3 Feb 2016 07:02:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12AA521C00F for ; Wed, 3 Feb 2016 07:02:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 045D6340EE1 for ; Wed, 3 Feb 2016 07:02:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10B6EC88 for ; Wed, 3 Feb 2016 07:02:43 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1454480178.11c44d084ac9d9b8c8b5ee12a31ba36b58243d2f.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/totoridipjp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/totoridipjp/metadata.xml dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild X-VCS-Directories: dev-ruby/totoridipjp/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 11c44d084ac9d9b8c8b5ee12a31ba36b58243d2f X-VCS-Branch: master Date: Wed, 3 Feb 2016 07:02:43 +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: 02953dcd-8609-40c7-bd66-8d8798e776c9 X-Archives-Hash: fa1c4ea6481b87d50d39b75845af9f27 commit: 11c44d084ac9d9b8c8b5ee12a31ba36b58243d2f Author: Hans de Graaff gentoo org> AuthorDate: Wed Feb 3 06:16:18 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Feb 3 06:16:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11c44d08 dev-ruby/totoridipjp: many fixes Fix USE=doc and FEATURES=test cases. Use eclass mechanism for not installing binaries. Fix metadata to point to correct package. Package-Manager: portage-2.2.26 dev-ruby/totoridipjp/metadata.xml | 2 +- dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-ruby/totoridipjp/metadata.xml b/dev-ruby/totoridipjp/metadata.xml index 4b45643..ddf5da9 100644 --- a/dev-ruby/totoridipjp/metadata.xml +++ b/dev-ruby/totoridipjp/metadata.xml @@ -9,6 +9,6 @@ Gentoo Ruby Project - delayer-deferred + totoridipjp diff --git a/dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild b/dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild index b7ef079..fad356c 100644 --- a/dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild +++ b/dev-ruby/totoridipjp/totoridipjp-0.1.0.ebuild @@ -1,14 +1,20 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" +RUBY_FAKEGEM_RECIPE_TEST="none" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_BINWRAP="" + inherit ruby-fakegem + DESCRIPTION="A ruby binding to use totori.dip.jp Web API" HOMEPAGE="https://rubygems.org/gems/totoridipjp" @@ -16,7 +22,3 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" - -all_ruby_prepare() { - rm -fvr bin/ || die -}