Skip to content

Commit 41f3a7b

Browse files
authored
Merge branch 'master' into python-shebang
2 parents dac4b6f + 75de3aa commit 41f3a7b

File tree

95 files changed

+380
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+380
-340
lines changed

Library/Homebrew/Gemfile.lock

+13-13
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GEM
33
specs:
44
addressable (2.8.7)
55
public_suffix (>= 2.0.2, < 7.0)
6-
ast (2.4.2)
6+
ast (2.4.3)
77
base64 (0.2.0)
88
benchmark (0.4.0)
99
bigdecimal (3.1.9)
@@ -33,7 +33,7 @@ GEM
3333
parallel (1.26.3)
3434
parallel_tests (5.1.0)
3535
parallel
36-
parser (3.3.7.1)
36+
parser (3.3.7.2)
3737
ast (~> 2.4.1)
3838
racc
3939
patchelf (1.5.1)
@@ -88,8 +88,8 @@ GEM
8888
rubocop-ast (>= 1.38.0, < 2.0)
8989
ruby-progressbar (~> 1.7)
9090
unicode-display_width (>= 2.4.0, < 4.0)
91-
rubocop-ast (1.39.0)
92-
parser (>= 3.3.1.0)
91+
rubocop-ast (1.41.0)
92+
parser (>= 3.3.7.2)
9393
rubocop-md (2.0.0)
9494
lint_roller (~> 1.1)
9595
rubocop (>= 1.72.1)
@@ -121,15 +121,15 @@ GEM
121121
simplecov-html (0.13.1)
122122
simplecov_json_formatter (0.1.4)
123123
simpleidn (0.2.3)
124-
sorbet (0.5.11945)
125-
sorbet-static (= 0.5.11945)
126-
sorbet-runtime (0.5.11945)
127-
sorbet-static (0.5.11945-aarch64-linux)
128-
sorbet-static (0.5.11945-universal-darwin)
129-
sorbet-static (0.5.11945-x86_64-linux)
130-
sorbet-static-and-runtime (0.5.11945)
131-
sorbet (= 0.5.11945)
132-
sorbet-runtime (= 0.5.11945)
124+
sorbet (0.5.11948)
125+
sorbet-static (= 0.5.11948)
126+
sorbet-runtime (0.5.11948)
127+
sorbet-static (0.5.11948-aarch64-linux)
128+
sorbet-static (0.5.11948-universal-darwin)
129+
sorbet-static (0.5.11948-x86_64-linux)
130+
sorbet-static-and-runtime (0.5.11948)
131+
sorbet (= 0.5.11948)
132+
sorbet-runtime (= 0.5.11948)
133133
spoom (1.6.1)
134134
erubi (>= 1.10.0)
135135
prism (>= 0.28.0)

Library/Homebrew/download_strategy.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ def fetch(timeout: nil)
488488
# - Content-Length value is different than the file's size
489489
cached_location_valid = if cached_location_valid
490490
newer_last_modified = last_modified && last_modified > cached_location.mtime
491-
different_file_size = file_size && file_size != cached_location.size
491+
different_file_size = file_size&.nonzero? && file_size != cached_location.size
492492
!(newer_last_modified || different_file_size)
493493
end
494494

Library/Homebrew/formula-analytics/requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ urllib3==2.3.0 \
7878
# via influxdb3-python
7979

8080
# The following packages are considered to be unsafe in a requirements file:
81-
setuptools==76.1.0 \
82-
--hash=sha256:34750dcb17d046929f545dec9b8349fe42bf4ba13ddffee78428aec422dbfb73 \
83-
--hash=sha256:4959b9ad482ada2ba2320c8f1a8d8481d4d8d668908a7a1b84d987375cd7f5bd
81+
setuptools==77.0.3 \
82+
--hash=sha256:583b361c8da8de57403743e756609670de6fb2345920e36dc5c2d914c319c945 \
83+
--hash=sha256:67122e78221da5cf550ddd04cf8742c8fe12094483749a792d56cd669d6cf58c
8484
# via influxdb3-python

Library/Homebrew/formula_auditor.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,8 @@ def audit_homepage
565565

566566
# Skip gnu.org and nongnu.org audit on GitHub runners
567567
# See issue: https://github.com/Homebrew/homebrew-core/issues/206757
568-
return if homepage.match?(%r{^https?://www\.(?:non)?gnu\.org/.+}) && ENV["HOMEBREW_GITHUB_HOSTED_RUNNER"]
568+
github_runner = ENV.fetch("GITHUB_ACTIONS", nil) && !ENV["GITHUB_ACTIONS_HOMEBREW_SELF_HOSTED"]
569+
return if homepage.match?(%r{^https?://www\.(?:non)?gnu\.org/.+}) && github_runner
569570

570571
use_homebrew_curl = [:stable, :head].any? do |spec_name|
571572
next false unless (spec = formula.send(spec_name))
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)