Go to file
2024-10-15 17:39:09 -04:00
.fmf Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
tests Remove lttng-tools from CI package configuration 2024-08-16 14:26:05 -04:00
.gitignore Update to .NET SDK 9.0.100-rc.2.24474.1 and Runtime 9.0.0-rc.2.24473.5 2024-10-15 17:39:09 -04:00
build-dotnet-bootstrap-tarball Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
build-prebuilt-archive Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
check-debug-symbols.py Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
dotnet9.0.spec Update to .NET SDK 9.0.100-rc.2.24474.1 and Runtime 9.0.0-rc.2.24473.5 2024-10-15 17:39:09 -04:00
dotnet.sh.in Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
gating.yaml Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
README.md Update to .NET SDK 9.0 RC 1 2024-09-16 12:00:56 -04:00
release-key-2023.asc Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
release.json Update to .NET SDK 9.0.100-rc.2.24474.1 and Runtime 9.0.0-rc.2.24473.5 2024-10-15 17:39:09 -04:00
roslyn-analyzers-ppc64le-apphost.patch Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
rpminspect.yaml Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
runtime-disable-fortify-on-ilasm-parser.patch Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
runtime-openssl-sha1.patch Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
runtime-re-enable-implicit-rejection.patch Update to .NET SDK 9.0 preview 7 and Runtime 9.0 preview 7 2024-08-15 14:13:16 -04:00
sources Update to .NET SDK 9.0.100-rc.2.24474.1 and Runtime 9.0.0-rc.2.24473.5 2024-10-15 17:39:09 -04:00
update-release Update to .NET SDK 9.0.100-rc.2.24474.1 and Runtime 9.0.0-rc.2.24473.5 2024-10-15 17:39:09 -04:00

dotnet9.0

This is the .NET 9.0 package for RHEL.

Please report any issues using Jira.

Specification

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

Contributing

  1. Fork the repo.

  2. Checkout the forked repository.

    • git clone git@gitlab.com:$USER/centos_rpms_dotnet9.0.git dotnet9.0
    • cd dotnet9.0
  3. Make your changes. Don't forget to add a changelog.

    If you are updating to a new upstream release: Get the new upstream source tarball and the detached signature. 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.

    • centpkg 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.

    • centpkg scratch-build --srpm
  7. If this is a new release, upload the source archive and detached signature to the look-aside cache.

    • centpkg new-sources dotnet-source-tarball.tar.gz dotnet-source-tarball.tar.gz.sig
  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, merge the pull request and do a real build.

    • centpkg build

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/