Update to .NET SDK 6.0.122 and Runtime 6.0.22
Resolves: RHEL-1996
This commit is contained in:
parent
dca6420ded
commit
18c185eb46
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ SOURCES/dotnet-v6.0.114.tar.gz
|
|||||||
/dotnet-v6.0.121-x64-bootstrap.tar.xz
|
/dotnet-v6.0.121-x64-bootstrap.tar.xz
|
||||||
/dotnet-prebuilts-6.0.120-arm64.tar.gz
|
/dotnet-prebuilts-6.0.120-arm64.tar.gz
|
||||||
/dotnet-prebuilts-6.0.120-s390x.tar.gz
|
/dotnet-prebuilts-6.0.120-s390x.tar.gz
|
||||||
|
/dotnet-v6.0.122.tar.gz
|
||||||
|
@ -21,10 +21,10 @@
|
|||||||
# until that's done, disable LTO. This has to happen before setting the flags below.
|
# until that's done, disable LTO. This has to happen before setting the flags below.
|
||||||
%define _lto_cflags %{nil}
|
%define _lto_cflags %{nil}
|
||||||
|
|
||||||
%global host_version 6.0.21
|
%global host_version 6.0.22
|
||||||
%global runtime_version 6.0.21
|
%global runtime_version 6.0.22
|
||||||
%global aspnetcore_runtime_version %{runtime_version}
|
%global aspnetcore_runtime_version %{runtime_version}
|
||||||
%global sdk_version 6.0.121
|
%global sdk_version 6.0.122
|
||||||
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
|
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
|
||||||
%global templates_version %{runtime_version}
|
%global templates_version %{runtime_version}
|
||||||
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
||||||
@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
Name: dotnet6.0
|
Name: dotnet6.0
|
||||||
Version: %{sdk_rpm_version}
|
Version: %{sdk_rpm_version}
|
||||||
Release: 4%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: .NET Runtime and SDK
|
Summary: .NET Runtime and SDK
|
||||||
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
||||||
URL: https://github.com/dotnet/
|
URL: https://github.com/dotnet/
|
||||||
@ -631,6 +631,10 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Sep 12 2023 Omair Majid <omajid@redhat.com> - 6.0.122-2
|
||||||
|
- Update to .NET SDK 6.0.122 and Runtime 6.0.22
|
||||||
|
- Resolves: RHEL-1996
|
||||||
|
|
||||||
* Thu Aug 24 2023 Omair Majid <omajid@redhat.com> - 6.0.121-4
|
* Thu Aug 24 2023 Omair Majid <omajid@redhat.com> - 6.0.121-4
|
||||||
- Disable bootstrap
|
- Disable bootstrap
|
||||||
- Related: RHBZ#2228566
|
- Related: RHBZ#2228566
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (dotnet-v6.0.121.tar.gz) = fc909de6a5c561ba894b8f662999d3a1bd8c442af2a123b14d930e4f27849f39875ab77ed11db4fb272f7a3956566009d5b10992d67d09db26a1e9bcd1bc5117
|
SHA512 (dotnet-v6.0.122.tar.gz) = a397f670c924d2059ae1c45eca59cb52d12b726d60f06f22ea073f55c00807f581b3fe3a129cf4bbc8198fe5bf426c1b3c540664792a1d3818d785517157effd
|
||||||
|
@ -95,10 +95,17 @@ comment="Update to .NET SDK ${sdk_version} and Runtime ${runtime_version}"
|
|||||||
commit_message="$comment
|
commit_message="$comment
|
||||||
"
|
"
|
||||||
for bug_id in "${bug_ids[@]}"; do
|
for bug_id in "${bug_ids[@]}"; do
|
||||||
|
if [[ $bug =~ ^[[:digit:]]+$ ]]; then
|
||||||
comment="$comment
|
comment="$comment
|
||||||
- Resolves: RHBZ#$bug_id"
|
- Resolves: RHBZ#$bug_id"
|
||||||
commit_message="$commit_message
|
commit_message="$commit_message
|
||||||
Resolves: RHBZ#$bug_id"
|
Resolves: RHBZ#$bug_id"
|
||||||
|
else
|
||||||
|
comment="$comment
|
||||||
|
- Resolves: $bug_id"
|
||||||
|
commit_message="$commit_message
|
||||||
|
Resolves: $bug_id"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "$commit_message" > git-commit-message
|
echo "$commit_message" > git-commit-message
|
||||||
|
Loading…
Reference in New Issue
Block a user