[DRE-commits] [ruby-hiera] branch master updated (8827084 -> 0c4bc01)

Jonas Genannt jonas at brachium-system.net
Fri Oct 18 18:25:15 UTC 2013


This is an automated email from the git hooks/post-receive script.

hggh-guest pushed a change to branch master
in repository ruby-hiera.

      from  8827084   update debian/watch. Thanks Bart Martens
       new  43a742a   Imported Upstream version 1.2.1
      adds  f48237a   Imported Upstream version 1.1.2
       new  b114fc6   Imported Upstream version 1.2.1
       new  c8a2313   Merge branch 'upstream'
       new  0aa21ae   removed dont-require-rubygems, default in 1.9/2.0 not needed
       new  2d0ad93   d/control: bumped standards version
       new  c114f99   d/control changed Recommends to Suggests (Closes: #693845)
       new  40dc705   d/control: wrap-sort
       new  6d48186   d/control: added myself as uploade
       new  61d7276   d/control: added myself as uploade
       new  0c4bc01   updated for release 1.2.1-1

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    3 -
 README.md                                          |    2 +
 Rakefile                                           |   48 -----
 acceptance_tests/tests/yaml_backend/00-setup.rb    |   26 ---
 .../yaml_backend/01-lookup_data_without_a_key.rb   |    9 -
 .../yaml_backend/02-lookup_data_with_no_options.rb |   48 -----
 .../yaml_backend/03-lookup_data_with_a_scope.rb    |   62 -------
 .../04-lookup_data_with_array_search.rb            |   46 -----
 .../05-lookup_data_with_hash_search.rb             |   49 -----
 debian/changelog                                   |   23 ++-
 debian/control                                     |   16 +-
 debian/patches/dont-require-rubygems               |   42 -----
 debian/patches/series                              |    1 -
 docs/images/hiera_hierarchy_resolution.png         |  Bin 15495 -> 0 bytes
 .../hiera_hierarchy_resolution_empty_scope.png     |  Bin 8172 -> 0 bytes
 docs/tutorials/getting_started.md                  |  113 ------------
 docs/tutorials/hierarchies_sources_and_scope.md    |  123 -------------
 ext/build_defaults.yaml                            |   23 ---
 ext/debian/changelog.erb                           |   23 ---
 ext/debian/compat                                  |    1 -
 ext/debian/control                                 |   13 --
 ext/debian/copyright                               |    1 -
 ext/debian/rules                                   |   35 ----
 ext/debian/source/format                           |    1 -
 ext/hiera.yaml                                     |   15 --
 ext/ips/hiera.p5m.erb                              |   10 --
 ext/ips/rules                                      |   17 --
 ext/ips/transforms                                 |   20 ---
 ext/osx/file_mapping.yaml                          |   32 ----
 ext/osx/preflight.erb                              |   30 ----
 ext/osx/prototype.plist.erb                        |   38 ----
 ext/project_data.yaml                              |   17 --
 ext/redhat/hiera.spec.erb                          |   80 ---------
 lib/hiera.rb                                       |   26 +--
 lib/hiera/backend.rb                               |   83 +++++----
 lib/hiera/backend/json_backend.rb                  |   17 +-
 lib/hiera/backend/yaml_backend.rb                  |   40 ++---
 lib/hiera/config.rb                                |   18 +-
 lib/hiera/fallback_logger.rb                       |   41 +++++
 lib/hiera/filecache.rb                             |   74 ++++++++
 lib/hiera/puppet_logger.rb                         |    4 +
 lib/hiera/recursive_lookup.rb                      |   31 ++++
 metadata.yml                                       |  114 ++++++++++++
 spec/unit/backend/json_backend_spec.rb             |   32 ++--
 spec/unit/backend/yaml_backend_spec.rb             |  109 ++++--------
 spec/unit/backend_spec.rb                          |  188 ++++++++++++++------
 spec/unit/config_spec.rb                           |    7 +-
 spec/unit/fallback_logger_spec.rb                  |   80 +++++++++
 spec/unit/filecache_spec.rb                        |   63 +++++++
 spec/unit/hiera_spec.rb                            |   41 +++--
 spec/unit/puppet_logger_spec.rb                    |   31 ++++
 51 files changed, 796 insertions(+), 1170 deletions(-)
 delete mode 100644 .gitignore
 delete mode 100644 Rakefile
 delete mode 100644 acceptance_tests/tests/yaml_backend/00-setup.rb
 delete mode 100644 acceptance_tests/tests/yaml_backend/01-lookup_data_without_a_key.rb
 delete mode 100644 acceptance_tests/tests/yaml_backend/02-lookup_data_with_no_options.rb
 delete mode 100644 acceptance_tests/tests/yaml_backend/03-lookup_data_with_a_scope.rb
 delete mode 100644 acceptance_tests/tests/yaml_backend/04-lookup_data_with_array_search.rb
 delete mode 100644 acceptance_tests/tests/yaml_backend/05-lookup_data_with_hash_search.rb
 delete mode 100644 debian/patches/dont-require-rubygems
 delete mode 100644 debian/patches/series
 delete mode 100644 docs/images/hiera_hierarchy_resolution.png
 delete mode 100644 docs/images/hiera_hierarchy_resolution_empty_scope.png
 delete mode 100644 docs/tutorials/getting_started.md
 delete mode 100644 docs/tutorials/hierarchies_sources_and_scope.md
 delete mode 100644 ext/build_defaults.yaml
 delete mode 100644 ext/debian/changelog.erb
 delete mode 100644 ext/debian/compat
 delete mode 100644 ext/debian/control
 delete mode 100644 ext/debian/copyright
 delete mode 100755 ext/debian/rules
 delete mode 100644 ext/debian/source/format
 delete mode 100644 ext/hiera.yaml
 delete mode 100644 ext/ips/hiera.p5m.erb
 delete mode 100755 ext/ips/rules
 delete mode 100644 ext/ips/transforms
 delete mode 100644 ext/osx/file_mapping.yaml
 delete mode 100644 ext/osx/preflight.erb
 delete mode 100644 ext/osx/prototype.plist.erb
 delete mode 100644 ext/project_data.yaml
 delete mode 100644 ext/redhat/hiera.spec.erb
 create mode 100644 lib/hiera/fallback_logger.rb
 create mode 100644 lib/hiera/filecache.rb
 create mode 100644 lib/hiera/recursive_lookup.rb
 create mode 100644 metadata.yml
 create mode 100644 spec/unit/fallback_logger_spec.rb
 create mode 100644 spec/unit/filecache_spec.rb
 create mode 100644 spec/unit/puppet_logger_spec.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-hiera.git



More information about the Pkg-ruby-extras-commits mailing list