diff --git a/Aliases/dotnet@8 b/Aliases/dotnet@9
similarity index 100%
rename from Aliases/dotnet@8
rename to Aliases/dotnet@9
diff --git a/Formula/d/dotnet.rb b/Formula/d/dotnet.rb
index 7cc454ca3177e..e77c1e5e7716d 100644
--- a/Formula/d/dotnet.rb
+++ b/Formula/d/dotnet.rb
@@ -1,11 +1,20 @@
class Dotnet < Formula
desc ".NET Core"
homepage "https://dotnet.microsoft.com/"
- # Source-build tag announced at https://github.com/dotnet/source-build/discussions
- url "https://github.com/dotnet/dotnet.git",
- tag: "v8.0.10",
- revision: "8922fe64a1903ed4e35e24568efb056b3e0fad43"
license "MIT"
+ head "https://github.com/dotnet/dotnet.git", branch: "main"
+
+ stable do
+ # Source-build tag announced at https://github.com/dotnet/source-build/discussions
+ url "https://github.com/dotnet/dotnet/archive/refs/tags/v9.0.0-rc.2.24473.5.tar.gz"
+ sha256 "56f446bb618ac3c5c1bdf3ae2028d0bd5d549538d172e1d7f23eb1df0eee26d6"
+ version "9.0.0"
+
+ resource "release.json" do
+ url "https://github.com/dotnet/dotnet/releases/download/v9.0.0-rc.2.24473.5/release.json"
+ sha256 "0b487c52c61fa289195883a0fdd1fe89953a4e35d3af02263ce587ac7c3d1696"
+ end
+ end
bottle do
sha256 cellar: :any, arm64_sequoia: "197cb068d41882513946c97853080a27b7c314ffd8f42296b663d2a6a19277c4"
@@ -18,14 +27,20 @@ class Dotnet < Formula
depends_on "cmake" => :build
depends_on "pkg-config" => :build
- depends_on "python@3.13" => :build
+ depends_on "rapidjson" => :build
+ depends_on "brotli"
depends_on "icu4c@76"
depends_on "openssl@3"
uses_from_macos "llvm" => :build
+ uses_from_macos "python" => :build, since: :catalina
uses_from_macos "krb5"
uses_from_macos "zlib"
+ on_macos do
+ depends_on "grep" => :build # grep: invalid option -- P
+ end
+
on_sonoma do
depends_on xcode: :build if DevelopmentTools.clang_build_version == 1600
end
@@ -39,87 +54,67 @@ class Dotnet < Formula
# GCC builds have limited support via community.
fails_with :gcc
- # Backport fix for error loading BuildXL service index
- patch do
- url "https://github.com/dotnet/dotnet/commit/18b5c7e1b125468f483a697ba8809c0a2412a762.patch?full_index=1"
- sha256 "76ede810166cf718fe430a8b155da07ca245ec9174b73b3471baf413bbd42460"
- end
-
- # Backport fix to build with Xcode 16
- patch do
- url "https://github.com/dotnet/runtime/commit/562efd6824762dd0c1826cc99e006ad34a7e9e85.patch?full_index=1"
- sha256 "435002246227064be19db8065b945e94565b59362e75a72ee6d6322a25baa832"
- directory "src/runtime"
- end
-
- # Backport fix to build with Clang 19
- # Ref: https://github.com/dotnet/runtime/commit/043ae8c50dbe1c7377cf5ad436c5ac1c226aef79
- patch :DATA
-
def install
if OS.mac?
- # Deparallelize to reduce chances of missing PDBs
- ENV.deparallelize
- # Avoid failing on missing PDBs as unable to build bottle on all runners in current state
- # Issue ref: https://github.com/dotnet/source-build/issues/4150
- inreplace "build.proj", /\bFailOnMissingPDBs="true"/, 'FailOnMissingPDBs="false"'
-
- # Disable crossgen2 optimization in ASP.NET Core to work around build failure trying to find tool.
- # Microsoft.AspNetCore.App.Runtime.csproj(445,5): error : Could not find crossgen2 tools/crossgen2
- # TODO: Try to remove in future .NET 8 release or when macOS is officially supported in .NET 9
- inreplace "src/aspnetcore/src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj",
- "',
- ""
+ '"$(DotnetTool) build-server shutdown --vbcscompiler"',
+ '"true"'
+ end
+
+ args = ["--clean-while-building", "--source-build", "--with-system-libs"]
+ args << (OS.mac? ? "brotli+libunwind+rapidjson+zlib" : "brotli+libunwind+rapidjson")
+ if build.stable?
+ args += ["--release-manifest", "release.json"]
+ odie "Update release.json resource!" if resource("release.json").version != version
+ buildpath.install resource("release.json")
end
- system "./prep.sh"
+ system "./prep-source-build.sh"
# We unset "CI" environment variable to work around aspire build failure
# error MSB4057: The target "GitInfo" does not exist in the project.
# Ref: https://github.com/Homebrew/homebrew-core/pull/154584#issuecomment-1815575483
with_env(CI: nil) do
- system "./build.sh", "--clean-while-building", "--online"
+ system "./build.sh", *args
end
libexec.mkpath
- tarball = Dir["artifacts/*/Release/dotnet-sdk-*.tar.gz"].first
- system "tar", "-xzf", tarball, "--directory", libexec
- doc.install Dir[libexec/"*.txt"]
+ tarball = buildpath.glob("artifacts/*/Release/dotnet-sdk-*.tar.gz").first
+ system "tar", "--extract", "--file", tarball, "--directory", libexec
+ doc.install libexec.glob("*.txt")
(bin/"dotnet").write_env_script libexec/"dotnet", DOTNET_ROOT: libexec
bash_completion.install "src/sdk/scripts/register-completions.bash" => "dotnet"
zsh_completion.install "src/sdk/scripts/register-completions.zsh" => "_dotnet"
- man1.install Dir["src/sdk/documentation/manpages/sdk/*.1"]
- man7.install Dir["src/sdk/documentation/manpages/sdk/*.7"]
+ man1.install buildpath.glob("src/sdk/documentation/manpages/sdk/*.1")
+ man7.install buildpath.glob("src/sdk/documentation/manpages/sdk/*.7")
end
def caveats
- <<~EOS
+ <<~TEXT
For other software to find dotnet you may need to set:
export DOTNET_ROOT="#{opt_libexec}"
- EOS
+ TEXT
end
test do
target_framework = "net#{version.major_minor}"
- (testpath/"test.cs").write <<~EOS
+
+ (testpath/"test.cs").write <<~CSHARP
using System;
namespace Homebrew
@@ -133,8 +128,9 @@ def caveats
}
}
}
- EOS
- (testpath/"test.csproj").write <<~EOS
+ CSHARP
+
+ (testpath/"test.csproj").write <<~XML
Exe
@@ -150,47 +146,10 @@ def caveats
- EOS
+ XML
+
system bin/"dotnet", "build", "--framework", target_framework, "--output", testpath, testpath/"test.csproj"
assert_equal "#{testpath}/test.dll,a,b,c\n",
shell_output("#{bin}/dotnet run --framework #{target_framework} #{testpath}/test.dll a b c")
end
end
-
-__END__
-diff --git a/src/runtime/src/coreclr/vm/comreflectioncache.hpp b/src/runtime/src/coreclr/vm/comreflectioncache.hpp
-index 08d173e61648c6ebb98a4d7323b30d40ec351d94..12db55251d80d24e3765a8fbe6e3b2d24a12f767 100644
---- a/src/runtime/src/coreclr/vm/comreflectioncache.hpp
-+++ b/src/runtime/src/coreclr/vm/comreflectioncache.hpp
-@@ -26,6 +26,7 @@ template class ReflectionCache
-
- void Init();
-
-+#ifndef DACCESS_COMPILE
- BOOL GetFromCache(Element *pElement, CacheType& rv)
- {
- CONTRACTL
-@@ -102,6 +103,7 @@ template class ReflectionCache
- AdjustStamp(TRUE);
- this->LeaveWrite();
- }
-+#endif // !DACCESS_COMPILE
-
- private:
- // Lock must have been taken before calling this.
-@@ -141,6 +143,7 @@ template class ReflectionCache
- return CacheSize;
- }
-
-+#ifndef DACCESS_COMPILE
- void AdjustStamp(BOOL hasWriterLock)
- {
- CONTRACTL
-@@ -170,6 +173,7 @@ template class ReflectionCache
- if (!hasWriterLock)
- this->LeaveWrite();
- }
-+#endif // !DACCESS_COMPILE
-
- void UpdateHashTable(SIZE_T hash, int slot)
- {
diff --git a/audit_exceptions/github_prerelease_allowlist.json b/audit_exceptions/github_prerelease_allowlist.json
index be0c899f254ce..7f9af3c098127 100644
--- a/audit_exceptions/github_prerelease_allowlist.json
+++ b/audit_exceptions/github_prerelease_allowlist.json
@@ -1,4 +1,5 @@
{
+ "dotnet": "9.0.0",
"get-flash-videos": "1.25.99.03",
"gitless": "0.8.8",
"grt": "0.2.4",