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 1D35D138332 for ; Thu, 1 Sep 2016 19:50:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 473D021C08B; Thu, 1 Sep 2016 19:49:59 +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 E0DC421C080 for ; Thu, 1 Sep 2016 19:49:58 +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 D1BBE3408A2 for ; Thu, 1 Sep 2016 19:49:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34395245A for ; Thu, 1 Sep 2016 19:49:55 +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: <1472759374.092dbb67d0c499084418e04a7c66c8b5106fffe4.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/childprocess/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/childprocess/childprocess-0.5.9-r1.ebuild X-VCS-Directories: dev-ruby/childprocess/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 092dbb67d0c499084418e04a7c66c8b5106fffe4 X-VCS-Branch: master Date: Thu, 1 Sep 2016 19:49:55 +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: 6835b8ef-f35a-4d87-8dd3-7ba92fe90fa9 X-Archives-Hash: 43759bb8649c752991a5894533a22f7f commit: 092dbb67d0c499084418e04a7c66c8b5106fffe4 Author: Hans de Graaff gentoo org> AuthorDate: Thu Sep 1 18:36:40 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Sep 1 19:49:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092dbb67 dev-ruby/childprocess: add ruby23 revision Package-Manager: portage-2.2.28 dev-ruby/childprocess/childprocess-0.5.9-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-ruby/childprocess/childprocess-0.5.9-r1.ebuild b/dev-ruby/childprocess/childprocess-0.5.9-r1.ebuild new file mode 100644 index 00000000..456c2d1 --- /dev/null +++ b/dev-ruby/childprocess/childprocess-0.5.9-r1.ebuild @@ -0,0 +1,35 @@ +# 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_TEST="rspec3" + +RUBY_FAKEGEM_TASK_DOC="yard" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Solution for controlling external programs running in the background" +HOMEPAGE="https://github.com/jarib/childprocess" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64" +IUSE="" + +ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/rspec:3 )" + +ruby_add_rdepend ">=dev-ruby/ffi-1.0.11" + +all_ruby_prepare() { + # Remove bundler support + rm Gemfile || die + sed -i -e "/[Bb]undler/d" Rakefile || die + sed -i -e "/[Cc]overalls/d" spec/spec_helper.rb || die + sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die +}