Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minitar: Allow 1.x #108

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/puppet/modulebuilder/builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,7 @@ def release_name
# header format.
#
# POSIX.1-2001 (which allows paths of infinite length) was adopted by GNU
# tar in 2004 and is supported by minitar 0.7 and above. Unfortunately
# much of the Puppet ecosystem still uses minitar 0.6.1.
# tar in 2004 and is supported by minitar 0.7 and above.
#
# POSIX.1-1998 tar format does not allow for paths greater than 256 bytes,
# or paths that can't be split into a prefix of 155 bytes (max) and
Expand Down
2 changes: 1 addition & 1 deletion puppet-modulebuilder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
# minitar and pathspec is required for building Puppet modules
spec.add_runtime_dependency 'minitar', '~> 0.9'
spec.add_runtime_dependency 'minitar', '>= 0.9', '< 2'
spec.add_runtime_dependency 'pathspec', '>= 0.2.1', '< 3.0.0'

spec.add_development_dependency 'voxpupuli-rubocop', '~> 2.8.0'
Expand Down
Loading