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
3bcd919a
Unverified
Commit
3bcd919a
authored
4 years ago
by
Mike McQuaid
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #10578 from MikeMcQuaid/formula_bottle_hash
formula: add bottle_hash method.
parents
e0a9ec9b
04804c6d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/formula.rb
+22
-19
22 additions, 19 deletions
Library/Homebrew/formula.rb
with
22 additions
and
19 deletions
Library/Homebrew/formula.rb
+
22
−
19
View file @
3bcd919a
...
...
@@ -1822,25 +1822,7 @@ class Formula
"revision"
=>
stable
.
specs
[
:revision
],
}
if
bottle_defined?
bottle_spec
=
stable
.
bottle_specification
bottle_info
=
{
"rebuild"
=>
bottle_spec
.
rebuild
,
"cellar"
=>
(
cellar
=
bottle_spec
.
cellar
).
is_a?
(
Symbol
)
?
cellar
.
inspect
:
cellar
,
"prefix"
=>
bottle_spec
.
prefix
,
"root_url"
=>
bottle_spec
.
root_url
,
}
bottle_info
[
"files"
]
=
{}
bottle_spec
.
collector
.
each_key
do
|
os
|
bottle_url
=
"
#{
bottle_spec
.
root_url
}
/
#{
Bottle
::
Filename
.
create
(
self
,
os
,
bottle_spec
.
rebuild
).
bintray
}
"
checksum
=
bottle_spec
.
collector
[
os
][
:checksum
]
bottle_info
[
"files"
][
os
]
=
{
"url"
=>
bottle_url
,
"sha256"
=>
checksum
.
hexdigest
,
}
end
hsh
[
"bottle"
][
"stable"
]
=
bottle_info
end
hsh
[
"bottle"
][
"stable"
]
=
bottle_hash
if
bottle_defined?
end
hsh
[
"options"
]
=
options
.
map
do
|
opt
|
...
...
@@ -1874,6 +1856,27 @@ class Formula
hsh
end
# Returns the bottle information for a formula
def
bottle_hash
bottle_spec
=
stable
.
bottle_specification
hash
=
{
"rebuild"
=>
bottle_spec
.
rebuild
,
"cellar"
=>
(
cellar
=
bottle_spec
.
cellar
).
is_a?
(
Symbol
)
?
cellar
.
inspect
:
cellar
,
"prefix"
=>
bottle_spec
.
prefix
,
"root_url"
=>
bottle_spec
.
root_url
,
"files"
=>
{},
}
bottle_spec
.
collector
.
each_key
do
|
os
|
bottle_url
=
"
#{
bottle_spec
.
root_url
}
/
#{
Bottle
::
Filename
.
create
(
self
,
os
,
bottle_spec
.
rebuild
).
bintray
}
"
checksum
=
bottle_spec
.
collector
[
os
][
:checksum
]
hash
[
"files"
][
os
]
=
{
"url"
=>
bottle_url
,
"sha256"
=>
checksum
.
hexdigest
,
}
end
hash
end
# @private
def
fetch
(
verify_download_integrity:
true
)
active_spec
.
fetch
(
verify_download_integrity:
verify_download_integrity
)
...
...
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