From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/coolio/
Date: Thu, 20 Apr 2017 05:03:07 +0000 (UTC) [thread overview]
Message-ID: <1492664456.832cb7ef58ef358725129093b5ab34fd784939e6.graaff@gentoo> (raw)
commit: 832cb7ef58ef358725129093b5ab34fd784939e6
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 05:00:56 2017 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 05:00:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=832cb7ef
dev-ruby/coolio: add 1.5.0
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-ruby/coolio/Manifest | 1 +
dev-ruby/coolio/coolio-1.5.0.ebuild | 62 +++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/dev-ruby/coolio/Manifest b/dev-ruby/coolio/Manifest
index 151f9f3974d..e83caff8848 100644
--- a/dev-ruby/coolio/Manifest
+++ b/dev-ruby/coolio/Manifest
@@ -1,2 +1,3 @@
DIST cool.io-1.4.2.gem 109568 SHA256 29922ff388da1ae2c17432e73dd35af58972dd7596bb5b065f6e158e45b45402 SHA512 fefa4140f4250f776505537abe3e87ce199e7aa5236ec98b92f88df3412a7347751ec0499f801c22eab11c051b4daa3317d161388bf904730d2db8aa98f3362a WHIRLPOOL 08e81de71a9c26fa4f7d6e2a8eba9919a4cffcb49a7875eddd881e7645bc15b1a62b681f736cbd88b05892cf484314af6972cd201236ca58cfc3f112889656f0
DIST cool.io-1.4.5.gem 109568 SHA256 6182eb0c80ade7757af4a2d9ec4c9db37f38a6e8b073779e466672d9a49faef4 SHA512 80f726f2a8873159d9cbb58d1b354f41d799ec5740e619ac564cbe19f11fe18e858dece26af6cae8637a41c5799cb93b1b07ed13a0b3e0c9c9cb6932542345af WHIRLPOOL 56358a7750431dd6e521597ec824b21ddbaa53258c8865be278097746b20cee5034083a2dbd0b92d8ba70668a5a0d1f274f307ba794a71d8dd990319c89aadee
+DIST cool.io-1.5.0.gem 112128 SHA256 dbf0af137fd347b4b519b1fe8c27eda1b784fe7ca79a398c1d6163593f872045 SHA512 e3089282352eb1f5c08d9cf2c8a8397904eaa3835b1146439c04f104210630b5ae49696716a971a9ba5a33e8cf85f28dc706d211ef47fbe6dfcbbb81a3a87bc1 WHIRLPOOL e9f24508469e04618b0c3023113cd17be06c229b499ed6dbda7655f5119776140f5a51dd68ff9f59f02c4b890c172a0efe6a70c0b3d3cd78d052cf38190248e8
diff --git a/dev-ruby/coolio/coolio-1.5.0.ebuild b/dev-ruby/coolio/coolio-1.5.0.ebuild
new file mode 100644
index 00000000000..2c41d2ba4d2
--- /dev/null
+++ b/dev-ruby/coolio/coolio-1.5.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+RUBY_FAKEGEM_NAME="cool.io"
+
+RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="A high performance event framework for Ruby which uses the libev C library"
+HOMEPAGE="https://coolio.github.com/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+# cool.io includes a bundled version of libev that is patched to work correctly with ruby.
+
+ruby_add_rdepend ">=dev-ruby/iobuffer-1"
+
+all_ruby_prepare() {
+ rm -r Gemfile* lib/.gitignore || die
+
+ sed -i -e '/[Bb]undler/d' Rakefile || die
+ sed -i -e '28i s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || die
+ sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+ # Avoid dependency on rake-compiler
+ sed -i -e '/extensiontask/ s:^:#:' \
+ -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die
+
+ # Remove specs that require network connectivity
+ rm -f spec/dns_spec.rb || die
+
+ # Use one address consistently
+ sed -i -e 's/localhost/127.0.0.1/' spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die
+
+ # Remove specs that fail, possibly due to libev
+ # incompatibility. Should be investigated but cool.io is no longer
+ # maintained.
+ rm -f spec/udp_socket_spec.rb || die
+}
+
+each_ruby_configure() {
+ pushd ext/cool.io || die
+ ${RUBY} extconf.rb || die
+ popd || die
+}
+
+each_ruby_compile() {
+ pushd ext/cool.io || die
+ emake V=1
+ popd || die
+ cp ext/cool.io/cool.io_ext$(get_modname) lib/ || die
+}
next reply other threads:[~2017-04-20 5:03 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-20 5:03 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-03 5:42 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/coolio/ Hans de Graaff
2024-10-03 5:42 Hans de Graaff
2024-05-18 5:42 Hans de Graaff
2024-05-18 5:42 Hans de Graaff
2024-05-18 5:42 Hans de Graaff
2024-02-29 0:50 Sam James
2023-12-31 19:35 Hans de Graaff
2023-08-03 17:00 Hans de Graaff
2023-04-19 20:07 Hans de Graaff
2023-03-18 0:22 Sam James
2022-05-07 6:34 Hans de Graaff
2022-02-05 6:57 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-02-17 5:59 Hans de Graaff
2020-09-26 7:20 Hans de Graaff
2020-08-22 7:56 Hans de Graaff
2020-05-02 5:18 Hans de Graaff
2020-01-25 7:12 Hans de Graaff
2019-04-03 5:46 Hans de Graaff
2019-01-12 7:42 Hans de Graaff
2018-04-07 5:33 Hans de Graaff
2018-02-02 17:14 Hans de Graaff
2017-11-23 6:52 Hans de Graaff
2017-08-18 6:11 Hans de Graaff
2017-08-18 6:11 Hans de Graaff
2017-08-13 11:24 David Seifert
2017-08-10 5:05 Hans de Graaff
2017-08-10 5:05 Hans de Graaff
2016-10-14 14:33 Hans de Graaff
2016-04-06 22:50 Manuel Rüger
2015-12-30 8:10 Hans de Graaff
2015-11-18 6:09 Hans de Graaff
2015-10-10 5:39 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1492664456.832cb7ef58ef358725129093b5ab34fd784939e6.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox