diff options
author | fhajny <fhajny@pkgsrc.org> | 2015-01-19 21:25:32 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2015-01-19 21:25:32 +0000 |
commit | 667f4b7cce36e210a67fca10fd2a9c2d0f480d0b (patch) | |
tree | 844d9f5df681762b4258b791c5d8497d38d22b60 /sysutils | |
parent | d4d654d7dd5100d0d8e36dc0d96030671ea4cd6c (diff) | |
download | pkgsrc-667f4b7cce36e210a67fca10fd2a9c2d0f480d0b.tar.gz |
Update ruby-chef-zero to 3.2.
3.2 (9/26/2014)
- removed 'json' gem dependency, replaced it with 'ffi-yajl'
3.1.3 (9/3/2014)
- fixes for running Chef local mode in multi-org mode
3.1.2 (8/29/2014)
- add default to rspec for cookbooks
- add /organizations/NAME/organization/_acl as an alias for
/organizations/NAME/organizations/_acl
3.1.1 (8/28/2014)
- fix minor bug with unknown container acls
3.1 (8/28/2014)
- New rspec data directives: organization, acl, group, container
- Fix organizations POST to honor full_name
- Fixes for enterprise rspec data loading
- Fix invites not removing the invite when user is forcibly added to an org
3.0 (7/22/2014)
- Enterprise Chef support (organizations, ACLs, groups, much more)
- SSL support (@sawanoboly)
2.2 (6/18/2014)
- allow port ranges to be passed in as enumerables, which will be tried
in sequence until one works: ChefZero::Server.new(:port => 80.upto(100))
2.1.5 (6/2/2014)
- fix issue with :single_org => not being honored
2.1.4 (5/27/2014)
- fix issue with global Thread.exit_on_exception being set
2.1.3 (5/27/2014)
- rspec: default port to 8900 to not conflict with normal default port
- rspec: when chef_zero_opts is set, check if current server has those
options before continuing
2.1.2 (5/27/2014)
- fix build_uri (and thus cookbook downloads)
2.1.1 (5/26/2014)
- flip defaults off in V1ToV2Adapater, allowing most chef tests
to pass against 2.1.1
2.1 (5/26/2014)
- Multi-tenancy! If you set :single_org => nil when starting the server,
you will gain /organizations/* at the beginning of all URLs. Internally,
all endpoints are rooted at /organizations/ORG anyway, there is just
a translation that goes on to add /organizations/single_org to the URL
when someone hits chef-zero.
- Fixes to support chef-zero local mode passing pedant
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ruby-chef-zero/Makefile | 6 | ||||
-rw-r--r-- | sysutils/ruby-chef-zero/PLIST | 40 | ||||
-rw-r--r-- | sysutils/ruby-chef-zero/distinfo | 8 |
3 files changed, 44 insertions, 10 deletions
diff --git a/sysutils/ruby-chef-zero/Makefile b/sysutils/ruby-chef-zero/Makefile index f2c04bcb503..6b944d24123 100644 --- a/sysutils/ruby-chef-zero/Makefile +++ b/sysutils/ruby-chef-zero/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2014/06/03 14:30:36 jperkin Exp $ +# $NetBSD: Makefile,v 1.2 2015/01/19 21:25:32 fhajny Exp $ -DISTNAME= chef-zero-2.0.2 +DISTNAME= chef-zero-3.2.1 CATEGORIES= sysutils MAINTAINER= pkgsrc-users@NetBSD.org @@ -8,7 +8,9 @@ HOMEPAGE= https://github.com/opscode/chef-zero COMMENT= Simple fast-start in-memory Chef server LICENSE= apache-2.0 +DEPENDS+= ${RUBY_PKGPREFIX}-ffi-yajl:../../devel/ruby-ffi-yajl DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-log>=1.6.0:../../devel/ruby-mixlib-log +DEPENDS+= ${RUBY_PKGPREFIX}-uuidtools>=2.1:../../devel/ruby-uuidtools DEPENDS+= ${RUBY_PKGPREFIX}-hashie>=2.0.5:../../misc/ruby-hashie2 DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.5.2:../../www/ruby-rack diff --git a/sysutils/ruby-chef-zero/PLIST b/sysutils/ruby-chef-zero/PLIST index 86fbe865294..9605a119e3f 100644 --- a/sysutils/ruby-chef-zero/PLIST +++ b/sysutils/ruby-chef-zero/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2014/06/03 14:30:36 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.2 2015/01/19 21:25:32 fhajny Exp $ bin/chef-zero ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/LICENSE @@ -6,15 +6,28 @@ ${GEM_LIBDIR}/README.md ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/bin/chef-zero ${GEM_LIBDIR}/lib/chef_zero.rb -${GEM_LIBDIR}/lib/chef_zero/cookbook_data.rb -${GEM_LIBDIR}/lib/chef_zero/data_normalizer.rb +${GEM_LIBDIR}/lib/chef_zero/chef_data/acl_path.rb +${GEM_LIBDIR}/lib/chef_zero/chef_data/cookbook_data.rb +${GEM_LIBDIR}/lib/chef_zero/chef_data/data_normalizer.rb +${GEM_LIBDIR}/lib/chef_zero/chef_data/default_creator.rb ${GEM_LIBDIR}/lib/chef_zero/data_store/data_already_exists_error.rb ${GEM_LIBDIR}/lib/chef_zero/data_store/data_error.rb ${GEM_LIBDIR}/lib/chef_zero/data_store/data_not_found_error.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/default_facade.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/interface_v1.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/interface_v2.rb ${GEM_LIBDIR}/lib/chef_zero/data_store/memory_store.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/memory_store_v2.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/raw_file_store.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/v1_to_v2_adapter.rb +${GEM_LIBDIR}/lib/chef_zero/data_store/v2_to_v1_adapter.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/acl_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/acls_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/actor_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/actors_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/authenticate_user_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/container_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/containers_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/cookbook_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/cookbook_version_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/cookbooks_base.rb @@ -30,8 +43,19 @@ ${GEM_LIBDIR}/lib/chef_zero/endpoints/environment_nodes_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/environment_recipes_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/environment_role_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/file_store_file_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/group_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/groups_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/license_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/node_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/not_found_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_association_request_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_association_requests_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_authenticate_user_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_user_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_users_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organization_validator_key_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/organizations_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/principal_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/rest_list_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/rest_object_endpoint.rb @@ -41,6 +65,11 @@ ${GEM_LIBDIR}/lib/chef_zero/endpoints/sandbox_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/sandboxes_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/search_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/endpoints/searches_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/system_recovery_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/user_association_request_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/user_association_requests_count_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/user_association_requests_endpoint.rb +${GEM_LIBDIR}/lib/chef_zero/endpoints/user_organizations_endpoint.rb ${GEM_LIBDIR}/lib/chef_zero/log.rb ${GEM_LIBDIR}/lib/chef_zero/rest_base.rb ${GEM_LIBDIR}/lib/chef_zero/rest_error_response.rb @@ -58,8 +87,11 @@ ${GEM_LIBDIR}/lib/chef_zero/solr/query/unary_operator.rb ${GEM_LIBDIR}/lib/chef_zero/solr/solr_doc.rb ${GEM_LIBDIR}/lib/chef_zero/solr/solr_parser.rb ${GEM_LIBDIR}/lib/chef_zero/version.rb -${GEM_LIBDIR}/spec/run.rb +${GEM_LIBDIR}/spec/run_oc_pedant.rb +${GEM_LIBDIR}/spec/run_pedant.rb ${GEM_LIBDIR}/spec/search_spec.rb +${GEM_LIBDIR}/spec/server_spec.rb +${GEM_LIBDIR}/spec/support/oc_pedant.rb ${GEM_LIBDIR}/spec/support/pedant.rb ${GEM_LIBDIR}/spec/support/stickywicket.pem ${GEM_HOME}/specifications/${GEM_NAME}.gemspec diff --git a/sysutils/ruby-chef-zero/distinfo b/sysutils/ruby-chef-zero/distinfo index 5735356e5d3..8ddfd2aa081 100644 --- a/sysutils/ruby-chef-zero/distinfo +++ b/sysutils/ruby-chef-zero/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1 2014/06/03 14:30:36 jperkin Exp $ +$NetBSD: distinfo,v 1.2 2015/01/19 21:25:32 fhajny Exp $ -SHA1 (chef-zero-2.0.2.gem) = e2e1f40e792545f7168c9654104ddd09eb8778bd -RMD160 (chef-zero-2.0.2.gem) = fbe6e0d12e57998aa897eaa8fcb6af9e86707cec -Size (chef-zero-2.0.2.gem) = 40448 bytes +SHA1 (chef-zero-3.2.1.gem) = 4e5825bba5f8d6d61594ec4a838f95889b868f6f +RMD160 (chef-zero-3.2.1.gem) = a35936b44b61d5796c72676b8aaf3d12c8a8cae1 +Size (chef-zero-3.2.1.gem) = 56320 bytes |