diff options
Diffstat (limited to 'app-admin/chef')
-rw-r--r-- | app-admin/chef/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/chef/chef-0.9.8.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/app-admin/chef/ChangeLog b/app-admin/chef/ChangeLog index 34b491caf223..faa7c18c20f2 100644 --- a/app-admin/chef/ChangeLog +++ b/app-admin/chef/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/chef # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chef/ChangeLog,v 1.3 2010/08/28 14:33:52 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/chef/ChangeLog,v 1.4 2010/09/19 14:23:43 hollow Exp $ + +*chef-0.9.8 (19 Sep 2010) + + 19 Sep 2010; Benedikt Böhm <hollow@gentoo.org> +chef-0.9.8.ebuild: + version bump 28 Aug 2010; Hans de Graaff <graaff@gentoo.org> chef-0.9.6.ebuild: Depend on >=dev-ruby/json-1.4.4 because json-1.4.3 has bugs that affect diff --git a/app-admin/chef/chef-0.9.8.ebuild b/app-admin/chef/chef-0.9.8.ebuild new file mode 100644 index 000000000000..aaa5dea232ba --- /dev/null +++ b/app-admin/chef/chef-0.9.8.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chef/chef-0.9.8.ebuild,v 1.1 2010/09/19 14:23:43 hollow Exp $ + +EAPI="2" +USE_RUBY="ruby18" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" + +inherit ruby-fakegem + +DESCRIPTION="Chef is a systems integration framework" +HOMEPAGE="http://wiki.opscode.com/display/chef" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/bunny-0.6.0 + dev-ruby/erubis + dev-ruby/extlib + dev-ruby/highline + >=dev-ruby/json-1.4.4 + >=dev-ruby/mixlib-authentication-1.1.0 + >=dev-ruby/mixlib-cli-1.1.0 + >=dev-ruby/mixlib-config-1.1.0 + >=dev-ruby/mixlib-log-1.1.0 + dev-ruby/moneta + >=dev-ruby/ohai-0.5.6 + >=dev-ruby/rest-client-1.0.4 + <=dev-ruby/rest-client-1.5.1 + dev-ruby/ruby-shadow + dev-ruby/uuidtools" + +all_ruby_install() { + all_fakegem_install + + keepdir /etc/chef /var/lib/chef /var/log/chef /var/run/chef + + doinitd "${FILESDIR}/initd/chef-client" + doconfd "${FILESDIR}/confd/chef-client" + + insinto /etc/chef + doins "${FILESDIR}/client.rb" + doins "${FILESDIR}/solo.rb" +} + +pkg_postinst() { + elog + elog "You should edit /etc/chef/client.rb before starting the service with" + elog "/etc/init.d/chef-client start" + elog +} |