blob: 46bc11361bee3ed94cf7cc8ee33e1909d3ccb4fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ohai-7.0.4-r1.ebuild,v 1.1 2014/11/10 19:21:36 graaff Exp $
EAPI=5
USE_RUBY="ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
RUBY_FAKEGEM_RECIPE_TEST="rspec"
inherit ruby-fakegem versionator
DESCRIPTION="Ohai profiles your system and emits JSON"
HOMEPAGE="http://wiki.opscode.com/display/chef/Ohai"
SRC_URI="https://github.com/opscode/${PN}/archive/${PV}.tar.gz -> ${P}.tgz"
LICENSE="Apache-2.0"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND+="!!<dev-ruby/ohai-6.22.0-r1"
ruby_add_rdepend "
>=dev-ruby/mime-types-1.16:0
dev-ruby/ipaddress
dev-ruby/yajl-ruby
dev-ruby/mixlib-cli
>=dev-ruby/mixlib-config-2.0:2
dev-ruby/mixlib-log
>=dev-ruby/mixlib-shellout-1.2:0
>=dev-ruby/systemu-2.5.2"
all_ruby_prepare() {
rm Gemfile .rspec || die
# Be more lenient to work with versions of systemu that we have in
# the tree.
sed -i -e 's/~> 2.5.2/>= 2.5.2/' ohai.gemspec || die
# Remove the Darwin-specific tests that require additional
# dependencies.
rm -rf spec/unit/plugins/darwin || die
# Avoid the ruby plugin tests because these always execute the
# system ruby, rather than the current ruby.
rm -rf spec/unit/plugins/ruby_spec.rb || die
}
all_ruby_install() {
all_fakegem_install
doman docs/man/man1/ohai.1
}
|