diff options
author | Hans de Graaff <graaff@gentoo.org> | 2017-02-18 09:05:53 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2017-02-18 09:07:15 +0100 |
commit | 81a649c9b336ec2a9140ac06f4265e4790b48bfa (patch) | |
tree | f9cf11ccb7cf1507dddff39c753c8a898d2e9c7f /dev-ruby/parallel | |
parent | distutils.eclass: Mark @DEAD for removal (diff) | |
download | gentoo-81a649c9b336ec2a9140ac06f4265e4790b48bfa.tar.gz gentoo-81a649c9b336ec2a9140ac06f4265e4790b48bfa.tar.bz2 gentoo-81a649c9b336ec2a9140ac06f4265e4790b48bfa.zip |
dev-ruby/parallel: initial import of 1.10.0
Package-Manager: portage-2.3.3
Diffstat (limited to 'dev-ruby/parallel')
-rw-r--r-- | dev-ruby/parallel/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/parallel/metadata.xml | 11 | ||||
-rw-r--r-- | dev-ruby/parallel/parallel-1.10.0.ebuild | 52 |
3 files changed, 64 insertions, 0 deletions
diff --git a/dev-ruby/parallel/Manifest b/dev-ruby/parallel/Manifest new file mode 100644 index 000000000000..6816b7f468e0 --- /dev/null +++ b/dev-ruby/parallel/Manifest @@ -0,0 +1 @@ +DIST parallel-1.10.0.tar.gz 19237 SHA256 33ff9a87879a8e5d1f69778ecb10b7d2b9ba4e28c464c0f55486935e553da552 SHA512 03a61c6fc00bcaf054ccaf74257a2249ecb8b471e070f6c174f3f26ced4b939bcefb0b6b18eaba4d71e4c04f1e0b32ee857a936ebef9d3b7ed9aad1d758c40db WHIRLPOOL 3f01bb6e21df986819cab4286c319e6b83eb6c7a7e74e9e06aa3137b499ca3e863180de7c2eac1e6072f59f8628e99a73799abd605425917e16be2ff149762f6 diff --git a/dev-ruby/parallel/metadata.xml b/dev-ruby/parallel/metadata.xml new file mode 100644 index 000000000000..9342377f9242 --- /dev/null +++ b/dev-ruby/parallel/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>ruby@gentoo.org</email> + <name>Gentoo Ruby Project</name> + </maintainer> + <upstream> + <remote-id type="github">grosser/parallel</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ruby/parallel/parallel-1.10.0.ebuild b/dev-ruby/parallel/parallel-1.10.0.ebuild new file mode 100644 index 000000000000..d6ef51c79c8f --- /dev/null +++ b/dev-ruby/parallel/parallel-1.10.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_EXTRAINSTALL="Readme.md" + +inherit ruby-fakegem + +DESCRIPTION="Run any code in parallel Processes or Threads" +HOMEPAGE="https://github.com/grosser/parallel" +LICENSE="MIT" +SRC_URI="https://github.com/grosser/parallel/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64" +SLOT="1" +IUSE="test" + +DEPEND+="test? ( sys-process/lsof )" + +ruby_add_bdepend " + test? ( dev-ruby/ruby-progressbar dev-ruby/activerecord:4.2 dev-ruby/sqlite3 )" + +each_ruby_prepare() { + # Make sure the correct ruby is used for testing + sed -e 's:ruby :'${RUBY}' :' -i spec/parallel_spec.rb || die +} + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' \ + -e '1i require "tempfile"; gem "activerecord", "~>4.2.0"' spec/cases/helper.rb || die + sed -i -e '3irequire "timeout"' spec/spec_helper.rb || die + + # Avoid a failing spec regarding to pipes. The spec seems like it + # should always fail. + sed -e '/does not open unnecessary pipes/,/end/ s:^:#:' \ + -i spec/parallel_spec.rb || die + + # Avoid fragile ar sqlite tests. They throw ReadOnly errors every now and then. + sed -i -e '/works with SQLite in/,/end/ s:^:#:' spec/parallel_spec.rb || die +} + +each_ruby_test() { + # Set RUBYLIB explicitly for the ruby's that get started from the specs. + TRAVIS=true RUBYLIB="lib" ${RUBY} -S rspec-3 spec || die +} |