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 1E12E13957A for ; Sat, 29 Oct 2016 15:03:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96B8F21C07B; Sat, 29 Oct 2016 15:03:23 +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 7F8FE21C07B for ; Sat, 29 Oct 2016 15:03:23 +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 2B2B7341649 for ; Sat, 29 Oct 2016 15:03:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 550717E1 for ; Sat, 29 Oct 2016 15:03:20 +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: <1477753389.3bfeb0135a1de8330689fb7c691580338873d91d.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/test_construct/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild X-VCS-Directories: dev-ruby/test_construct/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 3bfeb0135a1de8330689fb7c691580338873d91d X-VCS-Branch: master Date: Sat, 29 Oct 2016 15:03:20 +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: bcd09099-c08c-4a48-86e8-870c6a929e3e X-Archives-Hash: 1d1420dd27b96f2b94a5420ef5089831 commit: 3bfeb0135a1de8330689fb7c691580338873d91d Author: Manuel Rüger gentoo org> AuthorDate: Sat Oct 29 15:03:09 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Oct 29 15:03:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bfeb013 dev-ruby/test_construct: Add ruby23, remove ~ppc, ~x86 Package-Manager: portage-2.3.2 .../test_construct/test_construct-2.0.1-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild b/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild new file mode 100644 index 00000000..fcddd25 --- /dev/null +++ b/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild @@ -0,0 +1,29 @@ +# 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_EXTRADOC="CHANGELOG.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="Creates temporary files and directories for testing" +HOMEPAGE="https://github.com/bhb/test_construct" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" +IUSE="" + +ruby_add_bdepend "test? ( + >=dev-ruby/minitest-5.0.8 + >=dev-ruby/mocha-0.14.0 + dev-ruby/rspec:3 +)" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}