brew/Library/Homebrew/cleaner.rb

168 lines
4.7 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
2012-07-03 07:24:35 -07:00
# Cleans a newly installed keg.
# By default:
#
# * removes `.la` files
# * removes `perllocal.pod` files
# * removes `.packlist` files
2012-07-03 07:24:35 -07:00
# * removes empty directories
# * sets permissions on executables
2014-02-23 21:18:09 -08:00
# * removes unresolved symlinks
2010-08-21 11:06:02 -07:00
class Cleaner
include Context
# Create a cleaner for the given formula.
def initialize(f)
@f = f
end
# Clean the keg of the formula.
def clean
ObserverPathnameExtension.reset_counts!
2014-02-23 17:39:01 -08:00
# Many formulae include 'lib/charset.alias', but it is not strictly needed
# and will conflict if more than one formula provides it
observe_file_removal @f.lib/"charset.alias"
2014-02-23 17:39:01 -08:00
[@f.bin, @f.sbin, @f.lib].each { |d| clean_dir(d) if d.exist? }
2010-08-21 11:23:54 -07:00
# Get rid of any info 'dir' files, so they don't conflict at the link stage
2022-04-28 10:19:16 -04:00
#
# The 'dir' files come in at least 3 locations:
#
# 1. 'info/dir'
# 2. 'info/#{name}/dir'
# 3. 'info/#{arch}/dir'
#
# Of these 3 only 'info/#{name}/dir' is safe to keep since the rest will
# conflict with other formulae because they use a shared location.
#
# See [cleaner: recursively delete info `dir`s by gromgit · Pull Request
# #11597][1], [emacs 28.1 bottle does not contain `dir` file · Issue
# #100190][2], and [Keep `info/#{f.name}/dir` files in cleaner by
# timvisher][3] for more info.
#
# [1]: https://github.com/Homebrew/brew/pull/11597
# [2]: https://github.com/Homebrew/homebrew-core/issues/100190
# [3]: https://github.com/Homebrew/brew/pull/13215
Dir.glob(@f.info/"**/dir").each do |f|
info_dir_file = Pathname(f)
2022-04-28 00:15:29 -04:00
next unless info_dir_file.file?
2022-04-28 10:19:16 -04:00
next if info_dir_file == @f.info/@f.name/"dir"
next if @f.skip_clean?(info_dir_file)
2022-04-28 00:09:18 -04:00
2022-04-28 00:15:29 -04:00
observe_file_removal info_dir_file
end
rewrite_shebangs
prune
end
private
def observe_file_removal(path)
path.extend(ObserverPathnameExtension).unlink if path.exist?
end
2014-02-23 21:18:09 -08:00
# Removes any empty directories in the formula's prefix subtree
2019-04-08 10:33:49 -07:00
# Keeps any empty directories protected by skip_clean
2014-07-20 09:57:33 -07:00
# Removes any unresolved symlinks
def prune
dirs = []
symlinks = []
@f.prefix.find do |path|
if path == @f.libexec || @f.skip_clean?(path)
Find.prune
elsif path.symlink?
symlinks << path
elsif path.directory?
dirs << path
end
end
2014-02-23 21:18:09 -08:00
# Remove directories opposite from traversal, so that a subtree with no
# actual files gets removed correctly.
dirs.reverse_each do |d|
if d.children.empty?
puts "rmdir: #{d} (empty)" if verbose?
d.rmdir
end
end
2010-08-21 11:06:02 -07:00
2014-02-23 21:18:09 -08:00
# Remove unresolved symlinks
symlinks.reverse_each do |s|
s.unlink unless s.resolved_path_exists?
end
end
2010-11-09 13:00:33 +00:00
2016-07-04 16:10:24 +01:00
def executable_path?(path)
path.text_executable? || path.executable?
2016-07-04 16:10:24 +01:00
end
2020-11-13 17:21:51 +01:00
# Both these files are completely unnecessary to package and cause
# pointless conflicts with other formulae. They are removed by Debian,
# Arch & MacPorts amongst other packagers as well. The files are
# created as part of installing any Perl module.
PERL_BASENAMES = Set.new(%w[perllocal.pod .packlist]).freeze
2014-07-19 23:27:58 -07:00
# Clean a top-level (bin, sbin, lib) directory, recursively, by fixing file
# permissions and removing .la files, unless the files (or parent
# directories) are protected by skip_clean.
2014-07-20 09:51:11 -07:00
#
# bin and sbin should not have any subdirectories; if either do that is
# caught as an audit warning
#
# lib may have a large directory tree (see Erlang for instance), and
# clean_dir applies cleaning rules to the entire tree
def clean_dir(d)
2010-08-21 11:06:02 -07:00
d.find do |path|
2013-12-22 13:43:51 -06:00
path.extend(ObserverPathnameExtension)
Find.prune if @f.skip_clean? path
next if path.directory?
2016-09-22 20:12:28 +02:00
2020-11-13 17:21:51 +01:00
if path.extname == ".la" || PERL_BASENAMES.include?(path.basename.to_s)
path.unlink
2020-11-13 10:07:02 -05:00
elsif path.symlink?
# Skip it.
else
2014-02-23 16:46:44 -08:00
# Set permissions for executables and non-executables
2016-07-04 16:10:24 +01:00
perms = if executable_path?(path)
0555
else
0444
end
if debug?
2014-02-23 16:46:44 -08:00
old_perms = path.stat.mode & 0777
2019-11-29 14:54:41 -05:00
odebug "Fixing #{path} permissions from #{old_perms.to_s(8)} to #{perms.to_s(8)}" if perms != old_perms
2014-02-23 16:46:44 -08:00
end
path.chmod perms
2010-08-21 11:06:02 -07:00
end
end
end
def rewrite_shebangs
require "language/perl"
require "utils/shebang"
basepath = @f.prefix.realpath
basepath.find do |path|
Find.prune if @f.skip_clean? path
next if path.directory? || path.symlink?
begin
Utils::Shebang.rewrite_shebang Language::Perl::Shebang.detected_perl_shebang(@f), path
rescue ShebangDetectionError
break
end
end
end
2010-08-21 11:06:02 -07:00
end
2016-07-04 16:10:24 +01:00
require "extend/os/cleaner"