diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-07-29 02:04:25 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-07-29 02:04:25 +0000 |
commit | 7a099c21cafce1cd6872356fe2e86c4ee630c67b (patch) | |
tree | 5caa379c00a4b41e3269d282dd953e21f3422df3 | |
parent | Fixes bug #475942. Ebuild patch by Alexander Tsoy. Minor improvements by me (diff) | |
download | gentoo-2-7a099c21cafce1cd6872356fe2e86c4ee630c67b.tar.gz gentoo-2-7a099c21cafce1cd6872356fe2e86c4ee630c67b.tar.bz2 gentoo-2-7a099c21cafce1cd6872356fe2e86c4ee630c67b.zip |
Version bump
(Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key )
-rw-r--r-- | dev-ruby/ohai/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/ohai/ohai-6.18.0.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/dev-ruby/ohai/ChangeLog b/dev-ruby/ohai/ChangeLog index 98a972d0af1c..f94b663128f2 100644 --- a/dev-ruby/ohai/ChangeLog +++ b/dev-ruby/ohai/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/ohai # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ChangeLog,v 1.17 2013/07/19 07:01:54 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ChangeLog,v 1.18 2013/07/29 02:04:25 mrueg Exp $ + +*ohai-6.18.0 (29 Jul 2013) + + 29 Jul 2013; Manuel Rüger <mrueg@gentoo.org> +ohai-6.18.0.ebuild: + Version bump *ohai-6.16.0 (19 Jul 2013) diff --git a/dev-ruby/ohai/ohai-6.18.0.ebuild b/dev-ruby/ohai/ohai-6.18.0.ebuild new file mode 100644 index 000000000000..ab4e4187c991 --- /dev/null +++ b/dev-ruby/ohai/ohai-6.18.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ohai/ohai-6.18.0.ebuild,v 1.1 2013/07/29 02:04:25 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +inherit ruby-fakegem + +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="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_rdepend " + dev-ruby/ipaddress + dev-ruby/yajl-ruby + dev-ruby/mixlib-cli + dev-ruby/mixlib-config + dev-ruby/mixlib-log + dev-ruby/mixlib-shellout + >=dev-ruby/systemu-2.2.0" + +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.2.0/>= 2.2.0/' 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 +} |