From 819a4f24d61c451aea7d4cc21644cea79a8c41bb Mon Sep 17 00:00:00 2001 From: Amy Fong Date: Tue, 20 May 2014 15:17:16 -0400 Subject: Ruby/chef solo: Add recipes-devtools/ruby/chef-zero_git.bb Chef Zero is a simple, easy-install, in-memory Chef server that can be useful for Chef Client testing and chef-solo-like tasks that require a full Chef Server. It IS intended to be simple, Chef 11 compliant, easy to run and fast to start. It is NOT intended to be secure, scalable, performant or persistent. It does NO input validation, authentication or authorization (it will not throw a 400, 401 or 403). It does not save data, and will start up empty each time you start it. Signed-off-by: Mark Asselstine Signed-off-by: Amy Fong --- .../recipes-devtools/ruby/chef-zero_git.bb | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 meta-openstack/recipes-devtools/ruby/chef-zero_git.bb (limited to 'meta-openstack/recipes-devtools/ruby') diff --git a/meta-openstack/recipes-devtools/ruby/chef-zero_git.bb b/meta-openstack/recipes-devtools/ruby/chef-zero_git.bb new file mode 100644 index 0000000..7e8701d --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/chef-zero_git.bb @@ -0,0 +1,39 @@ +# +# Copyright (C) 2014 Wind River Systems, Inc. +# +SUMMARY = "Chef server that can be useful for chef-solo-like tasks" +DESCRIPTION = "Chef Zero is a simple, easy-install, in-memory Chef \ +server that can be useful for Chef Client testing and chef-solo-like \ +tasks that require a full Chef Server. It IS intended to be simple, \ +Chef 11 compliant, easy to run and fast to start. It is NOT intended \ +to be secure, scalable, performant or persistent. It does NO input \ +validation, authentication or authorization (it will not throw a 400, \ +401 or 403). It does not save data, and will start up empty each time \ +you start it." + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=8f7bb094c7232b058c7e9f2e431f389c" + +PR = "r0" + +BPV = "2.0.2" +PV = "${BPV}" +SRCREV = "1c87a463637b3d0c58755e2362cc8ef35b6da1fd" + +S = "${WORKDIR}/git" + +SRC_URI = " \ + git://github.com/opscode/chef-zero.git \ + " + +inherit ruby + +RDEPENDS += " \ + mixlib-log \ + json \ + hashie \ + mixlib-log \ + rack \ + " + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf