import UBI dotnet8.0-8.0.101-1.el9_3

This commit is contained in:
eabdullin 2024-01-10 21:15:55 +00:00
parent 34faf566e4
commit d925c67cb5
4 changed files with 19 additions and 15 deletions

View File

@ -1 +1 @@
a3656c594207a2f92901d5ecc7c9a3bae6524e40 SOURCES/dotnet-v8.0.0.tar.gz
63afe4d4947ec5eac76f5f39090da96d72020427 SOURCES/dotnet-v8.0.1.tar.gz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/dotnet-v8.0.0.tar.gz
SOURCES/dotnet-v8.0.1.tar.gz

View File

@ -1,9 +1,9 @@
{
"release": "8.0.0",
"release": "8.0.1",
"channel": "8.0",
"tag": "v8.0.0",
"sdkVersion": "8.0.100",
"runtimeVersion": "8.0.0",
"tag": "v8.0.1",
"sdkVersion": "8.0.101",
"runtimeVersion": "8.0.1",
"sourceRepository": "https://github.com/dotnet/dotnet",
"sourceVersion": "40e7f014ff784457efffa58074549735e30772ae"
"sourceVersion": "b27976e5a6850466ee5b4ce24f91ee93bef645f7"
}

View File

@ -8,16 +8,16 @@
%global dotnetver 8.0
%global host_version 8.0.0
%global runtime_version 8.0.0
%global aspnetcore_runtime_version 8.0.0
%global sdk_version 8.0.100
%global host_version 8.0.1
%global runtime_version 8.0.1
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 8.0.101
%global sdk_feature_band_version %(echo %{sdk_version} | cut -d '-' -f 1 | sed -e 's|[[:digit:]][[:digit:]]$|00|')
%global templates_version 8.0.0
%global templates_version %{runtime_version}
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
# upstream can produce releases with a different tag than the SDK version
%global upstream_tag v8.0.0
%global upstream_tag v%{runtime_version}
%global upstream_tag_without_v %(echo %{upstream_tag} | sed -e 's|^v||')
%global host_rpm_version %{host_version}
@ -54,7 +54,7 @@
Name: dotnet%{dotnetver}
Version: %{sdk_rpm_version}
Release: 2%{?dist}
Release: 1%{?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
@ -532,7 +532,7 @@ fi
tar xf artifacts/%{runtime_arch}/Release/dotnet-symbols-sdk-%{sdk_version}*%{runtime_id}.tar.gz \
-C %{buildroot}%{_libdir}/dotnet/
pushd %{buildroot}%{_libdir}/dotnet/
find host/ metadata/ packs/ sdk/ sdk-manifests/ templates/ -iname '*.pdb'
find host/ metadata/ packs/ sdk/ sdk-manifests/ templates/ -iname '*.pdb' -delete
popd
# Fix executable permissions on files
@ -655,6 +655,10 @@ export COMPlus_LTTng=0
%changelog
* Wed Dec 20 2023 Omair Majid <omajid@redhat.com> - 8.0.101-1
- Update to .NET SDK 8.0.101 and Runtime 8.0.1
- Resolves: RHEL-19809
* Wed Nov 08 2023 Omair Majid <omajid@redhat.com> - 8.0.100-2
- Install more symbols
- Related: RHEL-15861