diff --git a/.gitignore b/.gitignore index 207b68e..5b4c756 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /dotnet-v7.0.114.tar.gz /dotnet-v7.0.115.tar.gz /dotnet-v7.0.116.tar.gz +/dotnet-v7.0.117.tar.gz diff --git a/dotnet7.0.spec b/dotnet7.0.spec index ecb7f2b..8d1bf8e 100644 --- a/dotnet7.0.spec +++ b/dotnet7.0.spec @@ -6,10 +6,10 @@ # until that's done, disable LTO. This has to happen before setting the flags below. %define _lto_cflags %{nil} -%global host_version 7.0.16 -%global runtime_version 7.0.16 +%global host_version 7.0.17 +%global runtime_version 7.0.17 %global aspnetcore_runtime_version %{runtime_version} -%global sdk_version 7.0.116 +%global sdk_version 7.0.117 %global sdk_feature_band_version %(echo %{sdk_version} | cut -d '-' -f 1 | sed -e 's|[[:digit:]][[:digit:]]$|00|') %global templates_version %{runtime_version} #%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }') @@ -612,6 +612,10 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0 %changelog +* Tue Mar 19 2024 Omair Majid - 7.0.117-2 +- Update to .NET SDK 7.0.117 and Runtime 7.0.17 +- Resolves: RHEL-27545 + * Wed Feb 14 2024 Omair Majid - 7.0.116-2 - Update to .NET SDK 7.0.116 and Runtime 7.0.16 - Resolves: RHEL-23790 diff --git a/sources b/sources index fa5dadb..e3fb94c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (dotnet-v7.0.116.tar.gz) = 0b6b5a7b0d1fe22bd133e057f3ce7ddb9b7d38de5137eb36ce9fdd5ccfa16075a71b8f285d57ac65a313dfe640839d2b95510dd7d74635b64602574ef9e7786f +SHA512 (dotnet-v7.0.117.tar.gz) = 2ae685d85630298016c7efb701c69f79947d6031e9aa2126800fb53b214a982e4de000323bf3a675302c16fd099684cd25d51b50530a9187d863472f6fd2d297 diff --git a/update-release b/update-release index 5725315..89d44fc 100755 --- a/update-release +++ b/update-release @@ -103,7 +103,9 @@ else if [[ -f "dotnet-${tag}.tar.gz" ]]; then echo "dotnet-${tag}.tar.gz already exists, not rebuilding tarball" elif [[ -n ${user_provided_tarball_name} ]]; then - cp -a "${user_provided_tarball_name}" "dotnet-${tag}.tar.gz" + tag_without_v=${tag#v} + cp -a "${user_provided_tarball_name}" dotnet-${tag_without_v}.tar.gz + cp -a "${user_provided_tarball_name}.sig" dotnet-${tag_without_v}.tar.gz.sig cp -a "${release_json}" release.json else rm -f release.json