Fix crew files command (#13806)

This commit is contained in:
Ed Reel
2025-12-11 11:00:39 -06:00
committed by GitHub
parent b4f06001da
commit c92d7e4562
4 changed files with 26 additions and 21 deletions

View File

@@ -5,12 +5,6 @@ require_relative '../lib/package_utils'
class Command
def self.files(pkg)
# Check if the package is even installed first, as this is the most likely reason we cannot find a filelist.
unless PackageUtils.installed?(pkg.name)
puts "Package #{pkg.name} is not installed.".lightred
return
end
# Fake packages do not have any files.
if pkg.is_fake?
puts "Package #{pkg.name} is fake and has no files.".lightred
@@ -18,19 +12,33 @@ class Command
end
# We can't do anything if we don't have the filelist.
unless File.file?(filelist_path = File.join(CREW_META_PATH, "#{pkg.name}.filelist"))
puts "Package #{pkg.name} does not have a filelist :(".lightred
filelist_path = File.join("#{CREW_LIB_PATH}/manifest/#{ARCH}/#{pkg.name[0]}/", "#{pkg.name}.filelist")
puts "Manifest file: #{filelist_path}".yellow if CREW_VERBOSE
unless File.file?(filelist_path)
if PackageUtils.compatible?(pkg)
puts "Package #{pkg.name} does not have a filelist but should since #{ARCH} is compatible. :(".lightred
else
puts "Package #{pkg.name} does not have a filelist since #{ARCH} is not compatible. :(".lightred
end
return
end
# Print the name and description of the package.
puts pkg.name.lightgreen + ": #{pkg.description}".lightblue
# Installed packages have green names, incompatible packages have red, and compatible but not installed have blue.
if PackageUtils.installed?(pkg.name)
print pkg.name.lightgreen
elsif !PackageUtils.compatible?(pkg)
print pkg.name.lightred
else
print pkg.name.lightblue
end
puts ": #{pkg.description}".lightblue
size, filelist = ConvenienceFunctions.read_filelist(filelist_path, always_calcuate_from_disk: true)
# Extract the filelist and the total size of those files.
filesize, filelist = ConvenienceFunctions.read_filelist(filelist_path)
# Print the filelist, the total number of files, and the total size of those files.
puts filelist
puts "\nTotal found: #{filelist.count}".lightgreen
puts "Disk usage: #{MiscFunctions.human_size(size)}".lightgreen
puts "\nTotal found: #{filelist.count - 1}".lightgreen
puts "Disk usage: #{MiscFunctions.human_size(filesize)}".lightgreen
end
end

View File

@@ -50,9 +50,8 @@ class Command
EOT
when 'files'
puts <<~EOT
Display installed files of package(s).
Usage: crew files <package1> [<package2> ...]
The package(s) must be currently installed.
Display files of package(s).
Usage: crew files [-v|--verbose] <package1> [<package2> ...]
EOT
when 'install'
puts <<~EOT

View File

@@ -4,7 +4,7 @@ require 'etc'
require 'open3'
OLD_CREW_VERSION = defined?(CREW_VERSION) ? CREW_VERSION : '1.0'
CREW_VERSION = '1.68.8' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
CREW_VERSION = '1.68.9' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
# Kernel architecture.
KERN_ARCH = Etc.uname[:machine]
@@ -497,7 +497,7 @@ CREW_DOCOPT = <<~DOCOPT
crew deps [options] [--deep] [-t|--tree] [-b|--include-build-deps] [--exclude-buildessential] [-v|--verbose] <name> ...
crew diskstat [options] [-a|--all] [<count>]
crew download [options] [-s|--source] [-v|--verbose] <name> ...
crew files [options] <name> ...
crew files [options] [-v|--verbose] <name> ...
crew help [options] [<command>] [-v|--verbose] [<subcommand>]
crew install [options] [-f|--force] [-k|--keep] [--regenerate-filelist] [-s|--source] [-S|--recursive-build] [-v|--verbose] <name> ...
crew list [options] [-v|--verbose] (available|compatible|incompatible|essential|installed)

View File

@@ -64,10 +64,8 @@ class ConvenienceFunctions
def self.read_filelist(path, always_calcuate_from_disk: false)
filelist = File.readlines(path, chomp: true)
if filelist.first&.start_with?('# Total size') && !always_calcuate_from_disk
total_size, *contents = filelist
return [total_size[/Total size: (\d+)/, 1].to_i, contents]
return [filelist.first[/Total size: (\d+)/, 1].to_i, filelist]
else
return [get_package_disk_size(filelist), filelist]
end