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 768781384B4 for ; Tue, 29 Dec 2015 09:03:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43DBD21C077; Tue, 29 Dec 2015 09:03:12 +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 79D0A21C077 for ; Tue, 29 Dec 2015 09:03:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E61123407D0 for ; Tue, 29 Dec 2015 09:03:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BBA1CF7 for ; Tue, 29 Dec 2015 09:03:05 +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: <1451379615.c5a80dde8c63296268ba4033e60db65d80fadcd8.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/celluloid-supervision/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/celluloid-supervision/Manifest dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild dev-ruby/celluloid-supervision/metadata.xml X-VCS-Directories: dev-ruby/celluloid-supervision/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c5a80dde8c63296268ba4033e60db65d80fadcd8 X-VCS-Branch: master Date: Tue, 29 Dec 2015 09:03:05 +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: dd6b412c-7231-43fb-969c-d2c7ec381a04 X-Archives-Hash: 39df53d16206818601377b219d856637 commit: c5a80dde8c63296268ba4033e60db65d80fadcd8 Author: Hans de Graaff gentoo org> AuthorDate: Tue Dec 29 08:58:34 2015 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Dec 29 09:00:15 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a80dde dev-ruby/celluloid-supervision: add celluloid 0.17.2 Package-Manager: portage-2.2.24 dev-ruby/celluloid-supervision/Manifest | 1 + .../celluloid-supervision-0.20.5.ebuild | 38 ++++++++++++++++++++++ dev-ruby/celluloid-supervision/metadata.xml | 8 +++++ 3 files changed, 47 insertions(+) diff --git a/dev-ruby/celluloid-supervision/Manifest b/dev-ruby/celluloid-supervision/Manifest new file mode 100644 index 0000000..716d71c --- /dev/null +++ b/dev-ruby/celluloid-supervision/Manifest @@ -0,0 +1 @@ +DIST celluloid-supervision-0.20.5.tar.gz 16404 SHA256 503dad4bbda90f8c6d0a092f128fa68f48ab24b8fc7707baa38bd208b65af5ea SHA512 0fca953b6ade756574040b8e34e8ac4ea3d392628a9fb14a8d52f39ca3f92371e335520b673dec8fc9a4a44a208b38f51c9c23e2218510078ded64c903533bc8 WHIRLPOOL 665a4594e1cb063d7895cb1abd428518cb8b63d4127571854a372ddbd4955957ee04a838e1d1622197e109bb23a268b75a040b559240df7c25261324e2f2199f diff --git a/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild new file mode 100644 index 0000000..39eb453 --- /dev/null +++ b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="Provides a simple and natural way to build fault-tolerant concurrent programs" +HOMEPAGE="https://github.com/celluloid/celluloid" +SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +IUSE="" +SLOT="0" + +LICENSE="MIT" +KEYWORDS="~amd64" + +ruby_add_rdepend " + >=dev-ruby/timers-4.1.1" + +ruby_add_bdepend "test? ( + >=dev-ruby/celluloid-0.17.2 + dev-ruby/dotenv + dev-ruby/nenv + dev-ruby/rspec-retry +)" + +all_ruby_prepare() { + sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die + + sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die + sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die +} diff --git a/dev-ruby/celluloid-supervision/metadata.xml b/dev-ruby/celluloid-supervision/metadata.xml new file mode 100644 index 0000000..c996e6b --- /dev/null +++ b/dev-ruby/celluloid-supervision/metadata.xml @@ -0,0 +1,8 @@ + + + + ruby + + celluloid/celluloid-supervision + +