
update gnu_tar.rb removed tab update unpacking_strategy/tar.rb to resolve conversations But OFFENCE found, W: 31: 36: Unused method argument - basename (brew style) Now I start to using rubocop inside Sublime_text3 where I see all right linting messages. Rollback install.rb changes. Conversation resolved, extra_args: "--owner=0", "--group=0" and "--no-same-owner" in extend/os/linux/gnu_tar.rb. Conversation: file extend/os/linux/gnu_tar.rb moved to extend/os/linux/unpack_strategy/tar.rb. Module UnpackStrategy is parent for the GnuTar module. Conversation: new file extent/unpack_strategy/tar.rb to require logic, unpack_strategy/tar.rb newline bef. require-line, require-line changed. Deletion of files added in PR. -o addition is only one needed argument in unpack_strategy/tar.rb.
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
module UnpackStrategy
|
|
class Tar
|
|
include UnpackStrategy
|
|
|
|
using Magic
|
|
|
|
def self.extensions
|
|
[
|
|
".tar",
|
|
".tbz", ".tbz2", ".tar.bz2",
|
|
".tgz", ".tar.gz",
|
|
".tlzma", ".tar.lzma",
|
|
".txz", ".tar.xz"
|
|
]
|
|
end
|
|
|
|
def self.can_extract?(path)
|
|
return true if path.magic_number.match?(/\A.{257}ustar/n)
|
|
|
|
return false unless [Bzip2, Gzip, Lzip, Xz].any? { |s| s.can_extract?(path) }
|
|
|
|
# Check if `tar` can list the contents, then it can also extract it.
|
|
IO.popen(["tar", "tf", path], err: File::NULL) do |stdout|
|
|
!stdout.read(1).nil?
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def extract_to_dir(unpack_dir, basename:, verbose:)
|
|
Dir.mktmpdir do |tmpdir|
|
|
tar_path = path
|
|
|
|
if DependencyCollector.tar_needs_xz_dependency? && Xz.can_extract?(path)
|
|
tmpdir = Pathname(tmpdir)
|
|
Xz.new(path).extract(to: tmpdir, verbose: verbose)
|
|
tar_path = tmpdir.children.first
|
|
end
|
|
|
|
system_command! "tar",
|
|
args: ["xof", tar_path, "-C", unpack_dir],
|
|
verbose: verbose
|
|
end
|
|
end
|
|
end
|
|
end
|