dev-ruby/parallel: add 1.11.1
authorHans de Graaff <graaff@gentoo.org>
Mon, 13 Mar 2017 05:38:29 +0000 (06:38 +0100)
committerHans de Graaff <graaff@gentoo.org>
Mon, 13 Mar 2017 05:38:29 +0000 (06:38 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

dev-ruby/parallel/Manifest
dev-ruby/parallel/parallel-1.11.1.ebuild [new file with mode: 0644]

index 6816b7f468e0908d7693c2d04ef1aeb6a53a430f..7179d909dd351c98fb54d58cae421b7ac7705207 100644 (file)
@@ -1 +1,2 @@
 DIST parallel-1.10.0.tar.gz 19237 SHA256 33ff9a87879a8e5d1f69778ecb10b7d2b9ba4e28c464c0f55486935e553da552 SHA512 03a61c6fc00bcaf054ccaf74257a2249ecb8b471e070f6c174f3f26ced4b939bcefb0b6b18eaba4d71e4c04f1e0b32ee857a936ebef9d3b7ed9aad1d758c40db WHIRLPOOL 3f01bb6e21df986819cab4286c319e6b83eb6c7a7e74e9e06aa3137b499ca3e863180de7c2eac1e6072f59f8628e99a73799abd605425917e16be2ff149762f6
+DIST parallel-1.11.1.tar.gz 20389 SHA256 78a27f40e548d92bd1aa7d8efd7c5622f9eb6c67102a5d43c45a6fcd8a04a3c3 SHA512 b7ef113342f2469f5555896757ce8b19de50f202697c29b767742a6c0bd88c2694d945e49e510c4fab0d219959c9d62c60826a0daa9520f89c1de3da14c275ba WHIRLPOOL 9ad7c54e049d1c97909d0be2ab453675dbc69d43c65e8712bde745391e4d57436548cad4c772c51dc26f6b5b55f8c0aca7c50665eb3d2a79a476b315231e17de
diff --git a/dev-ruby/parallel/parallel-1.11.1.ebuild b/dev-ruby/parallel/parallel-1.11.1.ebuild
new file mode 100644 (file)
index 0000000..fb6b05d
--- /dev/null
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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
+}