From 7828e7fa29c03c45fbfade2f33bb6a25c6ebf236 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Mon, 19 Aug 2024 16:34:47 -0400 Subject: [PATCH] Update to .NET SDK 8.0.108 and Runtime 8.0.8 Resolves: RHEL-52434 --- .gitignore | 2 ++ dotnet8.0.spec | 12 ++++++++---- release.json | 12 ++++++------ sources | 4 ++-- update-release | 4 ++-- 5 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 223be07..a5308e2 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,5 @@ /dotnet-8.0.1.tar.gz.sig /dotnet-8.0.7.tar.gz /dotnet-8.0.7.tar.gz.sig +/dotnet-8.0.8.tar.gz +/dotnet-8.0.8.tar.gz.sig diff --git a/dotnet8.0.spec b/dotnet8.0.spec index e918f0b..7f659c7 100644 --- a/dotnet8.0.spec +++ b/dotnet8.0.spec @@ -8,10 +8,10 @@ %global dotnetver 8.0 -%global host_version 8.0.7 -%global runtime_version 8.0.7 +%global host_version 8.0.8 +%global runtime_version 8.0.8 %global aspnetcore_runtime_version %{runtime_version} -%global sdk_version 8.0.107 +%global sdk_version 8.0.108 %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 }') @@ -54,7 +54,7 @@ Name: dotnet%{dotnetver} Version: %{sdk_rpm_version} -Release: 5%{?dist} +Release: 2%{?dist} Summary: .NET Runtime and SDK License: 0BSD AND Apache-2.0 AND (Apache-2.0 WITH LLVM-exception) AND APSL-2.0 AND BSD-2-Clause AND BSD-3-Clause AND BSD-4-Clause AND BSL-1.0 AND bzip2-1.0.6 AND CC0-1.0 AND CC-BY-3.0 AND CC-BY-4.0 AND CC-PDDC AND CNRI-Python AND EPL-1.0 AND GPL-2.0-only AND (GPL-2.0-only WITH GCC-exception-2.0) AND GPL-2.0-or-later AND GPL-3.0-only AND ICU AND ISC AND LGPL-2.1-only AND LGPL-2.1-or-later AND LicenseRef-Fedora-Public-Domain AND LicenseRef-ISO-8879 AND MIT AND MIT-Wu AND MS-PL AND MS-RL AND NCSA AND OFL-1.1 AND OpenSSL AND Unicode-DFS-2015 AND Unicode-DFS-2016 AND W3C-19980720 AND X11 AND Zlib @@ -712,6 +712,10 @@ export COMPlus_LTTng=0 %changelog +* Mon Aug 19 2024 Omair Majid - 8.0.108-2 +- Update to .NET SDK 8.0.108 and Runtime 8.0.8 +- Resolves: RHEL-52434 + * Wed Aug 07 2024 Omair Majid - 8.0.107-5 - Update to .NET SDK 8.0.107 and Runtime 8.0.7 - Related: RHEL-25950 diff --git a/release.json b/release.json index 72a9adc..0da99bb 100644 --- a/release.json +++ b/release.json @@ -1,10 +1,10 @@ { - "release": "8.0.7", + "release": "8.0.8", "channel": "8.0", - "tag": "v8.0.7", - "sdkVersion": "8.0.107", - "runtimeVersion": "8.0.7", - "aspNetCoreVersion": "8.0.7", + "tag": "v8.0.8", + "sdkVersion": "8.0.108", + "runtimeVersion": "8.0.8", + "aspNetCoreVersion": "8.0.8", "sourceRepository": "https://github.com/dotnet/dotnet", - "sourceVersion": "8be139ddde52d33e24c7d82f813248ff9fc54b97" + "sourceVersion": "e78e8a64f20e61e1fea4f24afca66ad1dc56285f" } diff --git a/sources b/sources index 70a6f4e..58ddf97 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (dotnet-8.0.7.tar.gz) = 5d84c262a33dc2701a7e74e4a6166f4fae21632a91fecdfc0b26141cb6a8efbbdd6c93d4eb172bc10b3548b21b9f7759c00f6bdeb66bb0f658f9f3b559a1c504 -SHA512 (dotnet-8.0.7.tar.gz.sig) = cba31f48de2652a0f8893636e21bd16a7420d56b1dfbff08c39e006a00acfb234beec84044004537c7c2006336be0dfbabbc23199f76a1458c87f9b2cd08f126 +SHA512 (dotnet-8.0.8.tar.gz) = 7f41d46bb54a13bf2483422ccc3bfbe3b3ace7bb07d29b88723c8293c242bc4847b2ef044c51893f356902b90d0750055e98f33e6da8e0bc8942151d73c58c23 +SHA512 (dotnet-8.0.8.tar.gz.sig) = 996a7392e739111945789d5db2599b63ec899e98c9c72de362af7115634f925d3b77a5cde6d738e849358befbee1ec12bef0d9145ac0f4a9bf85bb3ef54266c9 diff --git a/update-release b/update-release index e4cab19..bc40977 100755 --- a/update-release +++ b/update-release @@ -72,6 +72,8 @@ else tag=v${runtime_version} fi +set -x + sed -i -E "s|^%global host_version [[:digit:]]\.[[:digit:]]\.[[:digit:]]+|%global host_version ${host_version}|" "$spec_file" sed -i -E "s|^%global runtime_version [[:digit:]]\.[[:digit:]]\.[[:digit:]]+|%global runtime_version ${runtime_version}|" "$spec_file" sed -i -E "s|^%global sdk_version [[:digit:]]\.[[:digit:]]\.[[:digit:]][[:digit:]][[:digit:]]|%global sdk_version ${sdk_version}|" "$spec_file" @@ -111,8 +113,6 @@ else fi fi -set -x - comment="Update to .NET SDK ${sdk_version} and Runtime ${runtime_version}" commit_message="$comment "