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
eec1d5e1
Commit
eec1d5e1
authored
4 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Add timeout in `bump-unversioned-casks`.
parent
83b774d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/dev-cmd/bump-unversioned-casks.rb
+8
-17
8 additions, 17 deletions
Library/Homebrew/dev-cmd/bump-unversioned-casks.rb
with
8 additions
and
17 deletions
Library/Homebrew/dev-cmd/bump-unversioned-casks.rb
+
8
−
17
View file @
eec1d5e1
# typed: false
# frozen_string_literal: true
require
"timeout"
require
"cask/download"
require
"cask/installer"
require
"cask/cask_loader"
...
...
@@ -45,18 +46,9 @@ module Homebrew
state
=
state_file
.
exist?
?
JSON
.
parse
(
state_file
.
read
)
:
{}
cask
_file
s
=
args
.
named
.
to_paths
(
only: :cask
,
recurse_tap:
true
)
casks
=
args
.
named
.
to_paths
(
only: :cask
,
recurse_tap:
true
)
.
map
{
|
path
|
Cask
::
CaskLoader
.
load
(
path
)
}
unversioned_cask_files
=
cask_files
.
select
do
|
cask_file
|
url
=
cask_file
.
each_line
do
|
line
|
url
=
line
[
/\s*url\s+"([^"]+)"\s*/
,
1
]
break
url
if
url
end
url
.
present?
&&
url
.
exclude?
(
'#{'
)
end
.
sort
unversioned_casks
=
unversioned_cask_files
.
map
{
|
path
|
Cask
::
CaskLoader
.
load
(
path
)
}
unversioned_casks
=
casks
.
select
{
|
cask
|
cask
.
url
&
.
unversioned?
}
ohai
"Unversioned Casks:
#{
unversioned_casks
.
count
}
(
#{
state
.
size
}
cached)"
...
...
@@ -126,16 +118,15 @@ module Homebrew
end
if
last_time
!=
time
||
last_file_size
!=
file_size
begin
cached_download
=
unversioned_cask_checker
.
installer
.
download
sha256
=
begin
Timeout
.
timeout
(
5
.
minutes
)
do
unversioned_cask_checker
.
installer
.
download
.
sha256
end
rescue
=>
e
onoe
e
return
end
sha256
=
cached_download
.
sha256
if
last_sha256
!=
sha256
&&
(
version
=
unversioned_cask_checker
.
guess_cask_version
)
if
sha256
.
present?
&&
last_sha256
!=
sha256
&&
(
version
=
unversioned_cask_checker
.
guess_cask_version
)
if
cask
.
version
==
version
oh1
"Cask
#{
cask
}
is up-to-date at
#{
version
}
"
else
...
...
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