Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/ohai: ohai-6.18.0.ebuild ChangeLog
Date: Mon, 29 Jul 2013 02:04:31
Message-Id: 20130729020425.4F2372171C@flycatcher.gentoo.org
1 mrueg 13/07/29 02:04:25
2
3 Modified: ChangeLog
4 Added: ohai-6.18.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.18 dev-ruby/ohai/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ohai/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ohai/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ohai/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 19 Jul 2013 07:01:54 -0000 1.17
24 +++ ChangeLog 29 Jul 2013 02:04:25 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ohai
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ChangeLog,v 1.17 2013/07/19 07:01:54 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ChangeLog,v 1.18 2013/07/29 02:04:25 mrueg Exp $
30 +
31 +*ohai-6.18.0 (29 Jul 2013)
32 +
33 + 29 Jul 2013; Manuel RĂ¼ger <mrueg@g.o> +ohai-6.18.0.ebuild:
34 + Version bump
35
36 *ohai-6.16.0 (19 Jul 2013)
37
38
39
40
41 1.1 dev-ruby/ohai/ohai-6.18.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ohai/ohai-6.18.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ohai/ohai-6.18.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ohai-6.18.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ohai-6.18.0.ebuild,v 1.1 2013/07/29 02:04:25 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
57
58 RUBY_FAKEGEM_RECIPE_TEST="rspec"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Ohai profiles your system and emits JSON"
63 HOMEPAGE="http://wiki.opscode.com/display/chef/Ohai"
64 SRC_URI="https://github.com/opscode/${PN}/archive/${PV}.tar.gz -> ${P}.tgz"
65
66 LICENSE="Apache-2.0"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 ruby_add_rdepend "
72 dev-ruby/ipaddress
73 dev-ruby/yajl-ruby
74 dev-ruby/mixlib-cli
75 dev-ruby/mixlib-config
76 dev-ruby/mixlib-log
77 dev-ruby/mixlib-shellout
78 >=dev-ruby/systemu-2.2.0"
79
80 all_ruby_prepare() {
81 rm Gemfile .rspec || die
82 # Be more lenient to work with versions of systemu that we have in
83 # the tree.
84 sed -i -e 's/~> 2.2.0/>= 2.2.0/' ohai.gemspec || die
85
86 # Remove the Darwin-specific tests that require additional
87 # dependencies.
88 rm -rf spec/unit/plugins/darwin || die
89
90 # Avoid the ruby plugin tests because these always execute the
91 # system ruby, rather than the current ruby.
92 rm -rf spec/unit/plugins/ruby_spec.rb || die
93 }
94
95 all_ruby_install() {
96 all_fakegem_install
97
98 doman docs/man/man1/ohai.1
99 }