dev-ruby/kgio - 2.10.0 (ssnb)

Search

Install

Install this version:

emerge -a =dev-ruby/kgio-2.10.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-ruby/kgio-2.10.0

Or alternatively:

emerge --autounmask-write -a =dev-ruby/kgio-2.10.0

Package Information

Description:
Mon-blocking I/O methods for Ruby without raising exceptions
Homepage:
http://bogomips.org/kgio.git/ http://bogomips.org/kgio/ https://rubygems.org/gems/kgio
License:
LGPL-2.1+

Ebuild Details

Version EAPI Keywords Slot
2.10.0 7 ~amd64 0
View Raw Ebuild
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=7

USE_RUBY="ruby30 ruby31 ruby32"

RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README TODO HACKING"

inherit ruby-fakegem multilib

DESCRIPTION="Mon-blocking I/O methods for Ruby without raising exceptions"
HOMEPAGE="http://bogomips.org/kgio.git/ http://bogomips.org/kgio/ https://rubygems.org/gems/kgio"

LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

RESTRICT="test"

ruby_add_bdepend "test? ( >=dev-ruby/test-unit-3.0
	<dev-ruby/test-unit-4 )"

each_ruby_configure() {
	${RUBY} -Cext/${PN} extconf.rb || die
}

each_ruby_compile() {
	emake V=1 -Cext/${PN}
	cp ext/${PN}/kgio_ext$(get_modname) lib/ || die
}

each_ruby_test() {
	${RUBY} -Ilib -S testrb test/test_*.rb || die
}

Inherited Eclasses