Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
9559e162
Commit
9559e162
authored
11 years ago
by
Adam Vandenberg
Browse files
Options
Downloads
Patches
Plain Diff
Cleaner: do work in clean instead of constructor
parent
3b24d9f0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Library/Homebrew/cleaner.rb
+10
-8
10 additions, 8 deletions
Library/Homebrew/cleaner.rb
Library/Homebrew/formula_installer.rb
+1
-1
1 addition, 1 deletion
Library/Homebrew/formula_installer.rb
Library/Homebrew/test/test_cleaner.rb
+16
-16
16 additions, 16 deletions
Library/Homebrew/test/test_cleaner.rb
with
27 additions
and
25 deletions
Library/Homebrew/cleaner.rb
+
10
−
8
View file @
9559e162
# Cleans a newly installed keg.
# By default:
# * removes info files
# * removes .la files
# * removes empty directories
# * sets permissions on executables
class
Cleaner
# Create a cleaner for the given formula
and clean its keg
# Create a cleaner for the given formula
def
initialize
f
ObserverPathnameExtension
.
reset_counts!
@f
=
f
[
f
.
bin
,
f
.
sbin
,
f
.
lib
].
select
{
|
d
|
d
.
exist?
}.
each
{
|
d
|
clean_dir
d
}
end
# Clean the keg of formula @f
def
clean
ObserverPathnameExtension
.
reset_counts!
[
@f
.
bin
,
@f
.
sbin
,
@f
.
lib
].
select
{
|
d
|
d
.
exist?
}.
each
{
|
d
|
clean_dir
d
}
# Get rid of
the directory
file, so
it no longer bother us at
link stage
.
info_dir_file
=
f
.
info
+
'dir'
if
info_dir_file
.
file?
and
not
f
.
skip_clean?
info_dir_file
# Get rid of
any info 'dir'
file
s
, so
they don't conflict at the
link stage
info_dir_file
=
@
f
.
info
+
'dir'
if
info_dir_file
.
file?
and
not
@
f
.
skip_clean?
info_dir_file
puts
"rm
#{
info_dir_file
}
"
if
ARGV
.
verbose?
info_dir_file
.
unlink
end
...
...
This diff is collapsed.
Click to expand it.
Library/Homebrew/formula_installer.rb
+
1
−
1
View file @
9559e162
...
...
@@ -490,7 +490,7 @@ class FormulaInstaller
puts
"in the formula."
return
end
Cleaner
.
new
f
Cleaner
.
new
(
f
).
clean
rescue
Exception
=>
e
opoo
"The cleaning step did not complete successfully"
puts
"Still, the installation was successful, so we will link it into your prefix"
...
...
This diff is collapsed.
Click to expand it.
Library/Homebrew/test/test_cleaner.rb
+
16
−
16
View file @
9559e162
...
...
@@ -20,7 +20,7 @@ class CleanerTests < Test::Unit::TestCase
cp
"
#{
TEST_FOLDER
}
/mach/a.out"
,
@f
.
bin
cp
Dir
[
"
#{
TEST_FOLDER
}
/mach/*.dylib"
],
@f
.
lib
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert_equal
0100555
,
(
@f
.
bin
/
'a.out'
).
stat
.
mode
assert_equal
0100444
,
(
@f
.
lib
/
'fat.dylib'
).
stat
.
mode
...
...
@@ -29,7 +29,7 @@ class CleanerTests < Test::Unit::TestCase
end
def
test_prunes_prefix_if_empty
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
@f
.
prefix
.
directory?
end
...
...
@@ -37,7 +37,7 @@ class CleanerTests < Test::Unit::TestCase
subdir
=
@f
.
bin
/
'subdir'
subdir
.
mkpath
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
@f
.
bin
.
directory?
assert
!
subdir
.
directory?
...
...
@@ -47,7 +47,7 @@ class CleanerTests < Test::Unit::TestCase
@f
.
class
.
skip_clean
'bin'
@f
.
bin
.
mkpath
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
@f
.
bin
.
directory?
end
...
...
@@ -57,7 +57,7 @@ class CleanerTests < Test::Unit::TestCase
subdir
=
@f
.
bin
/
'subdir'
subdir
.
mkpath
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
@f
.
bin
.
directory?
assert
subdir
.
directory?
...
...
@@ -70,7 +70,7 @@ class CleanerTests < Test::Unit::TestCase
dir
.
mkpath
ln_s
dir
.
basename
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
dir
.
exist?
assert
!
symlink
.
symlink?
...
...
@@ -84,7 +84,7 @@ class CleanerTests < Test::Unit::TestCase
dir
.
mkpath
ln_s
dir
.
basename
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
dir
.
exist?
assert
!
symlink
.
symlink?
...
...
@@ -95,7 +95,7 @@ class CleanerTests < Test::Unit::TestCase
symlink
=
@f
.
prefix
/
'symlink'
ln_s
'target'
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
symlink
.
symlink?
end
...
...
@@ -105,7 +105,7 @@ class CleanerTests < Test::Unit::TestCase
symlink
=
@f
.
prefix
/
'symlink'
ln_s
'target'
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
symlink
.
symlink?
end
...
...
@@ -118,7 +118,7 @@ class CleanerTests < Test::Unit::TestCase
dir
.
mkpath
ln_s
dir
.
basename
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
dir
.
exist?
assert
symlink
.
symlink?
...
...
@@ -133,7 +133,7 @@ class CleanerTests < Test::Unit::TestCase
dir
.
mkpath
ln_s
dir
.
basename
,
symlink
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
dir
.
exist?
assert
symlink
.
symlink?
...
...
@@ -146,7 +146,7 @@ class CleanerTests < Test::Unit::TestCase
@f
.
lib
.
mkpath
touch
file
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
file
.
exist?
end
...
...
@@ -158,7 +158,7 @@ class CleanerTests < Test::Unit::TestCase
@f
.
lib
.
mkpath
touch
file
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
file
.
exist?
end
...
...
@@ -169,7 +169,7 @@ class CleanerTests < Test::Unit::TestCase
@f
.
lib
.
mkpath
touch
file
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
!
file
.
exist?
end
...
...
@@ -180,7 +180,7 @@ class CleanerTests < Test::Unit::TestCase
dir
.
mkpath
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
dir
.
directory?
end
...
...
@@ -193,7 +193,7 @@ class CleanerTests < Test::Unit::TestCase
dir1
.
mkpath
dir2
.
mkpath
Cleaner
.
new
@f
Cleaner
.
new
(
@f
).
clean
assert
dir1
.
exist?
assert
!
dir2
.
exist?
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment