aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-support/hiera/hiera/add_hiera_gemspec.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-support/hiera/hiera/add_hiera_gemspec.patch')
-rw-r--r--recipes-support/hiera/hiera/add_hiera_gemspec.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-support/hiera/hiera/add_hiera_gemspec.patch b/recipes-support/hiera/hiera/add_hiera_gemspec.patch
new file mode 100644
index 00000000..7e302cfd
--- /dev/null
+++ b/recipes-support/hiera/hiera/add_hiera_gemspec.patch
@@ -0,0 +1,23 @@
+diff -urN hiera-1.3.4_ori/hiera.gemspec hiera-1.3.4/hiera.gemspec
+--- hiera-1.3.4_ori/hiera.gemspec 1970-01-01 08:00:00.000000000 +0800
++++ hiera-1.3.4/hiera.gemspec 2014-11-12 14:30:07.000000000 +0800
+@@ -0,0 +1,19 @@
++$:.unshift(File.dirname(__FILE__) + '/lib')
++require 'hiera/version'
++
++Gem::Specification.new do |s|
++ s.name = 'hiera'
++ s.version = Hiera::VERSION
++ s.platform = Gem::Platform::RUBY
++ s.summary = 'A simple pluggable Hierarchical Database.'
++ s.description = s.summary
++ s.author = 'Yang Haibo'
++ s.email = 'b40869@freescale.com'
++ s.homepage = 'https://projects.puppetlabs.com/projects/hiera'
++ s.license = 'Apache 2.0'
++
++ s.bindir = 'bin'
++ s.executables = ['hiera']
++ s.require_path = 'lib'
++ s.files = %w(LICENSE README.md Rakefile) + Dir.glob('{lib,spec}/**/*')
++end