import OL dotnet6.0-6.0.118-1.0.1.el9_2

This commit is contained in:
Andrew Lukoshko 2023-06-22 14:43:13 +00:00
parent a4a2f47409
commit 36ab49c17f
4 changed files with 2705 additions and 7 deletions

View File

@ -1 +1 @@
abb5f4dbb01ceb7eebd7a8577f102e508b71d7f0 SOURCES/dotnet-v6.0.116.tar.gz
550e97836027f6d7772957e91476cf02febace1d SOURCES/dotnet-v6.0.118.tar.gz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/dotnet-v6.0.116.tar.gz
SOURCES/dotnet-v6.0.118.tar.gz

File diff suppressed because it is too large Load Diff

View File

@ -20,10 +20,10 @@
# until that's done, disable LTO. This has to happen before setting the flags below.
%define _lto_cflags %{nil}
%global host_version 6.0.16
%global runtime_version 6.0.16
%global host_version 6.0.18
%global runtime_version 6.0.18
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 6.0.116
%global sdk_version 6.0.118
%global sdk_feature_band_version %(echo %{sdk_version} | 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 }')
@ -56,11 +56,11 @@
%global runtime_arch s390x
%endif
%{!?runtime_id:%global runtime_id %(. /etc/os-release ; echo "${ID}.${VERSION_ID%%.*}")-%{runtime_arch}}
%{!?runtime_id:%global runtime_id %(. /etc/os-release ; echo "${ID}.${VERSION_ID}")-%{runtime_arch}}
Name: dotnet6.0
Version: %{sdk_rpm_version}
Release: 2%{?dist}
Release: 1.0.1%{?dist}
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
URL: https://github.com/dotnet/
@ -112,6 +112,7 @@ Patch1001: msbuild-no-systemconfiguration.patch
Patch1500: sdk-telemetry-optout.patch
Patch10000: 10000-Add-missing-OL-Runtime-IDs.patch
%if 0%{?fedora} || 0%{?rhel} >= 8
ExclusiveArch: aarch64 x86_64 s390x
@ -409,6 +410,8 @@ pushd src/sdk
%patch1500 -p1
popd
%patch10000 -p1
pushd src/installer
popd
@ -609,6 +612,17 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
%changelog
* Wed Jun 14 2023 EL Errata <el-errata_ww@oracle.com> - 6.0.118-1.0.1
- Add missing Oracle Linux Runtime IDs
* Thu Jun 01 2023 Andrew Slice <andrew.slice@redhat.com> - 6.0.118-1
- Update to .NET SDK 6.0.118 and Runtime 6.0.18
- Resolves: RHBZ#2212379
* Thu Apr 27 2023 Omair Majid <omajid@redhat.com> - 6.0.117-1
- Update to .NET SDK 6.0.117 and Runtime 6.0.17
- Resolves: RHBZ#2190264
* Wed Apr 12 2023 Omair Majid <omajid@redhat.com> - 6.0.116-2
- Update to .NET SDK 6.0.116 and Runtime 6.0.16
- Resolves: RHBZ#2183582