Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet: january 2025 releases #374284

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Conversation

corngood
Copy link
Contributor

@corngood corngood commented Jan 16, 2025

This also fixes some problems I found with the update scripts.

Cc: @NixOS/dotnet

Things done

  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
    • sandbox = relaxed
    • sandbox = true
  • Tested, as applicable:
  • Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • 25.05 Release Notes (or backporting 24.11 and 25.05 Release notes)
    • (Package updates) Added a release notes entry if the change is major or breaking
    • (Module updates) Added a release notes entry if the change is significant
    • (Module addition) Added a release notes entry if adding a new NixOS module
  • Fits CONTRIBUTING.md.

Add a 👍 reaction to pull requests you find important.

@corngood
Copy link
Contributor Author

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 374284


x86_64-linux

✅ 140 packages built:
  • ArchiSteamFarm
  • alcom
  • alttpr-opentracker
  • am2rlauncher
  • avalonia-ilspy
  • avdump3
  • azure-artifacts-credprovider
  • azure-functions-core-tools
  • bicep
  • blendfarm
  • btcpayserver
  • btcpayserver-altcoins
  • cavalier
  • celeste64
  • certdump
  • clps2c-compiler
  • csharp-ls
  • csharpier
  • csharprepl
  • cyclonedx-cli
  • dafny
  • denaro
  • dependency-track
  • depotdownloader
  • discordchatexporter-cli
  • discordchatexporter-desktop
  • dotnet-aspnetcore
  • dotnet-aspnetcore_9
  • dotnet-ef
  • dotnet-outdated
  • dotnet-repl
  • dotnet-runtime
  • dotnet-runtime_9
  • dotnet-sdk
  • dotnet-sdk_9
  • dotnetCorePackages.dotnet_8.aspnetcore
  • dotnetCorePackages.dotnet_8.aspnetcore.man
  • dotnetCorePackages.dotnet_8.runtime
  • dotnetCorePackages.dotnet_8.runtime.man
  • dotnetCorePackages.dotnet_8.sdk
  • dotnetCorePackages.dotnet_8.sdk.man
  • dotnetCorePackages.dotnet_8.vmr
  • dotnetCorePackages.dotnet_8.vmr.man
  • dotnetCorePackages.dotnet_9.aspnetcore
  • dotnetCorePackages.dotnet_9.aspnetcore.man
  • dotnetCorePackages.dotnet_9.runtime
  • dotnetCorePackages.dotnet_9.runtime.man
  • dotnetCorePackages.dotnet_9.sdk
  • dotnetCorePackages.dotnet_9.sdk.man
  • dotnetCorePackages.dotnet_9.vmr
  • dotnetCorePackages.dotnet_9.vmr.man
  • dotnetCorePackages.sdk_8_0_1xx
  • dotnetCorePackages.sdk_8_0_3xx
  • fable
  • famistudio
  • fantomas
  • formula
  • fsautocomplete
  • galaxy-buds-client
  • garnet
  • gh-gei
  • git-credential-manager
  • github-runner
  • gitversion
  • godot3-mono
  • godot3-mono-debug-server
  • godot3-mono-export-templates
  • godot3-mono-headless
  • godot3-mono-headless.dev
  • godot3-mono-headless.man
  • godot3-mono-server
  • godot3-mono.dev
  • godot3-mono.man
  • ilspycmd
  • imewlconverter
  • inklecate
  • jackett
  • jellyfin
  • jetbrains.clion
  • jetbrains.rider
  • juniper
  • kavita
  • knossosnet
  • kryptor
  • libation
  • lidarr
  • lubelogger
  • lumafly
  • marksman
  • mesen
  • mqttmultimeter
  • msbuild-structured-log-viewer
  • msgraph-cli
  • nbxplorer
  • netcoredbg
  • nexusmods-app
  • nexusmods-app-unfree
  • omnisharp-roslyn
  • opentabletdriver
  • openutau
  • osu-lazer
  • parabolic
  • pbm
  • pinta
  • pre-commit
  • pre-commit.dist
  • prowlarr
  • ps3-disc-dumper
  • pupdate
  • python312Packages.clr-loader
  • python312Packages.clr-loader.dist
  • python313Packages.clr-loader
  • python313Packages.clr-loader.dist
  • radarr
  • readarr
  • recyclarr
  • renode
  • renode-unstable
  • retrospy
  • roslyn-ls
  • ryujinx
  • ryujinx-greemdev
  • scarab
  • seq-cli
  • skeditor
  • slskd
  • smtp4dev
  • space-station-14-launcher
  • tagger
  • technitium-dns-server
  • technitium-dns-server-library
  • tone
  • torrentstream
  • upgrade-assistant
  • v2rayn
  • vrcadvert
  • whisparr
  • wiseunpacker
  • xivlauncher
  • yafc-ce

@@ -77,7 +78,9 @@ async def run_update_script(nixpkgs_root: str, merge_lock: asyncio.Lock, temp_di
eprint(f"--- SHOWING ERROR LOG FOR {package['name']} ----------------------")
eprint()
eprint(e.stderr.decode('utf-8'))
with open(f"{package['pname']}.log", 'wb') as logfile:
with open(f"{package['pname']}.out.log", 'wb') as logfile:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jtojnar would you mind taking a look at this commit? It was useful for me to debug dotnet stuff which often writes to stdout.

I had originally omitted the .log extension, but it's in .gitignore, so I decided to keep it.

I think ideally this would write both streams to a single temporary log file, but that's likely a bigger change. I can drop this commit if anyone has any concerns.

Copy link
Contributor

@GGG-KILLER GGG-KILLER left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything on the dotnet side looks fine. LGTM!

Copy link
Contributor

@GGG-KILLER GGG-KILLER left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything on the dotnet side looks fine. LGTM!

@corngood corngood added the backport release-24.11 Backport PR automatically label Jan 16, 2025
@corngood
Copy link
Contributor Author

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 374284


aarch64-darwin

⏩ 2 packages marked as broken and skipped:
  • alcom
  • certdump
❌ 2 packages failed to build:
  • dafny
  • discordchatexporter-cli
✅ 86 packages built:
  • ArchiSteamFarm
  • avalonia-ilspy
  • azure-functions-core-tools
  • bicep
  • blendfarm
  • btcpayserver
  • btcpayserver-altcoins
  • clps2c-compiler
  • csharpier
  • csharprepl
  • cyclonedx-cli
  • dependency-track
  • depotdownloader
  • dotnet-aspnetcore
  • dotnet-aspnetcore_9
  • dotnet-ef
  • dotnet-outdated
  • dotnet-repl
  • dotnet-runtime
  • dotnet-runtime_9
  • dotnet-sdk
  • dotnet-sdk_9
  • dotnetCorePackages.dotnet_8.aspnetcore
  • dotnetCorePackages.dotnet_8.aspnetcore.man
  • dotnetCorePackages.dotnet_8.runtime
  • dotnetCorePackages.dotnet_8.runtime.man
  • dotnetCorePackages.dotnet_8.sdk
  • dotnetCorePackages.dotnet_8.sdk.man
  • dotnetCorePackages.dotnet_8.vmr
  • dotnetCorePackages.dotnet_8.vmr.man
  • dotnetCorePackages.dotnet_9.aspnetcore
  • dotnetCorePackages.dotnet_9.aspnetcore.man
  • dotnetCorePackages.dotnet_9.runtime
  • dotnetCorePackages.dotnet_9.runtime.man
  • dotnetCorePackages.dotnet_9.sdk
  • dotnetCorePackages.dotnet_9.sdk.man
  • dotnetCorePackages.dotnet_9.vmr
  • dotnetCorePackages.dotnet_9.vmr.man
  • dotnetCorePackages.sdk_8_0_1xx
  • dotnetCorePackages.sdk_8_0_3xx
  • famistudio
  • fantomas
  • formula
  • fsautocomplete
  • garnet
  • gh-gei
  • git-credential-manager
  • github-runner
  • gitversion
  • ilspycmd
  • imewlconverter
  • jackett
  • jellyfin
  • juniper
  • knossosnet
  • kryptor
  • libation
  • lubelogger
  • marksman
  • mesen
  • msbuild-structured-log-viewer
  • msgraph-cli
  • nbxplorer
  • netcoredbg
  • omnisharp-roslyn
  • openutau
  • pre-commit
  • pre-commit.dist
  • prowlarr
  • python312Packages.clr-loader
  • python312Packages.clr-loader.dist
  • python313Packages.clr-loader
  • python313Packages.clr-loader.dist
  • radarr
  • recyclarr
  • roslyn-ls
  • ryujinx-greemdev
  • seq-cli
  • smtp4dev
  • tone
  • torrentstream
  • upgrade-assistant
  • vrcadvert
  • whisparr
  • wiseunpacker
  • yafc-ce

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants