Skip to content

Commit 557636c

Browse files
committed
minitar: Allow 1.x
1 parent 2a5a267 commit 557636c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/puppet/modulebuilder/builder.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,7 @@ def release_name
339339
# header format.
340340
#
341341
# POSIX.1-2001 (which allows paths of infinite length) was adopted by GNU
342-
# tar in 2004 and is supported by minitar 0.7 and above. Unfortunately
343-
# much of the Puppet ecosystem still uses minitar 0.6.1.
342+
# tar in 2004 and is supported by minitar 0.7 and above.
344343
#
345344
# POSIX.1-1998 tar format does not allow for paths greater than 256 bytes,
346345
# or paths that can't be split into a prefix of 155 bytes (max) and

puppet-modulebuilder.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2525
spec.require_paths = ['lib']
2626
# minitar and pathspec is required for building Puppet modules
27-
spec.add_runtime_dependency 'minitar', '~> 0.9'
27+
spec.add_runtime_dependency 'minitar', '>= 0.9', '< 2'
2828
spec.add_runtime_dependency 'pathspec', '>= 0.2.1', '< 3.0.0'
2929

3030
spec.add_development_dependency 'voxpupuli-rubocop', '~> 2.8.0'

0 commit comments

Comments
 (0)