The dotnet9.0 package
Find a file
2025-04-10 06:58:43 -04:00
.fmf Migrate from STI to tmt 2023-03-01 14:01:10 -05:00
tests Add uninstall tests to CI 2024-07-17 07:27:03 -04:00
.gitignore Update to .NET SDK 9.0.105 and Runtime 9.0.4 2025-04-10 06:58:43 -04:00
build-dotnet-bootstrap-tarball Update to upstream e48b2112b5b536efb5c97188b6fd778fc55ff3d6 2024-07-03 16:38:08 -04:00
build-prebuilt-archive Update to .NET 9 Preview 7 2024-08-27 14:24:59 -04:00
check-debug-symbols.py Update to upstream e48b2112b5b536efb5c97188b6fd778fc55ff3d6 2024-07-03 16:38:08 -04:00
copr-build Initial .NET 9 package 2024-03-10 12:15:28 -04:00
dotnet.sh.in Initial import (#1802803) 2020-02-20 20:23:21 -05:00
dotnet9.0.spec Update to .NET SDK 9.0.105 and Runtime 9.0.4 2025-04-10 06:58:43 -04:00
gating.yaml Update to .NET SDK 8.0.100 Preview 7 and Runtime 8.0.0 Preview 7 2023-08-14 10:12:49 -04:00
macros.dotnet Add macros.dotnet 2024-09-07 09:37:16 -04:00
README.md Merge remote-tracking branch 'dotnet-sig/dotnet9.0/main' into rawhide 2024-09-20 12:41:59 -04:00
release-key-2023.asc Enable gpg signature verification 2023-12-12 14:58:09 -05:00
release.json Update to .NET SDK 9.0.105 and Runtime 9.0.4 2025-04-10 06:58:43 -04:00
roslyn-analyzers-ppc64le-apphost.patch Update to .NET 9 Preview 7 2024-08-27 14:24:59 -04:00
rpminspect.yaml Add various fixes from CentOS Stream 9 2023-12-08 08:58:16 -05:00
runtime-disable-fortify-on-ilasm-parser.patch Update to .NET SDK 9.0.100-preview.4.24267.1 and Runtime 9.0.0-preview.4.24266.19 2024-06-03 11:34:42 -04:00
runtime-openssl-sha1.patch Update to .NET 9 Preview 7 2024-08-27 14:24:59 -04:00
runtime-re-enable-implicit-rejection.patch Update to .NET SDK 9 preview 2 and Runtime 9 preview 2 2024-03-17 07:11:04 -04:00
sources Update to .NET SDK 9.0.105 and Runtime 9.0.4 2025-04-10 06:58:43 -04:00
update-release Update to .NET SDK 9.0.101 and Runtime 9.0.0 2024-12-04 09:53:22 -05:00

dotnet9.0

The dotnet9.0 package

This is the .NET 9.0 package for Fedora.

This package is maintained by the Fedora DotNet SIG (Special Interest Group). You can find out more about the DotNet SIG at:

Please report any issues using bugzilla.

Specification

This package follows package naming and contents suggested by upstream, with one exception. It installs dotnet to /usr/lib64/dotnet (aka %{_libdir}).

Contributing

The steps below are for the final package. Please only contribute to this pre-release version this if you know what you are doing. Original instructions follow.

General Changes

  1. Fork the repo.

  2. Checkout the forked repository.

    • git clone ssh://$USER@pkgs.fedoraproject.org/forks/$USER/rpms/dotnet9.0.git
    • cd dotnet9.0
  3. Make your changes. Don't forget to add a changelog.

  4. Do local builds.

    • fedpkg local
  5. Fix any errors that come up and rebuild until it works locally.

  6. Do builds in koji.

    • fedpkg scratch-build --srpm
  7. Commit the changes to the git repo.

    • git add any new patches
    • git remove any now-unnecessary patches
    • git commit -a
    • git push
  8. Create a pull request with your changes.

  9. Once the tests in the pull-request pass, and reviewers are happy, do a real build.

    • fedpkg build
  10. For non-rawhide releases, file updates using bodhi to ship the just-built package out to users.

    OR

    • fedpkg update

Updating to an new upstream release

  1. Fork the repo.

  2. Checkout the forked repository.

    • git clone ssh://$USER@pkgs.fedoraproject.org/forks/$USER/rpms/dotnet9.0.git
    • cd dotnet9.0
  3. Build the new upstream source tarball. Update the versions in the spec file. Add a changelog. This is generally automated by the following.

    • ./update-release <sdk-version> <runtime-version>

    If this fails because of compiler errors, you might have to figure out a fix, then add the patch in build-dotnet-tarball script rather than the spec file.

  4. Do local builds.

    • fedpkg local
  5. Fix any errors that come up and rebuild until it works locally. Any patches that are needed at this point should be added to the spec file.

  6. Do builds in koji.

    • fedpkg scratch-build --srpm
  7. Upload the source archive to the Fedora look-aside cache.

    • fedpkg new-sources path-to-generated-dotnet-source-tarball.tar.gz
  8. Commit the changes to the git repo.

    • git add any new patches
    • git remove any now-unnecessary patches
    • git commit -a
    • git push
  9. Create a pull request with your changes.

  10. Once the tests in the pull-request pass, and reviewers are happy, do a real build.

    • fedpkg build
  11. For non-rawhide releases, file updates using bodhi to ship the just-built package out to users.

    OR

    • fedpkg update

Testing

This package uses CI tests as defined in tests/ci.yml. You can run them using tmt. Creating a pull-request or running an official build will fire off tests and flag any issues. We have enabled gating (via gating.yaml) on the tests. That prevents a build that fails any test from being released until the failures are waived.

The tests themselves are contained in this external repository: https://github.com/redhat-developer/dotnet-regular-tests/