Compare commits
No commits in common. "imports/c9/dotnet7.0-7.0.113-2.el9_3" and "c8-beta" have entirely different histories.
imports/c9
...
c8-beta
@ -1 +1 @@
|
||||
1cdbf0686cb78097e778fce933f6d138bb6f22f1 SOURCES/dotnet-v7.0.113.tar.gz
|
||||
c2015d0972371ab8995d18246d1f5b76299f3be3 SOURCES/dotnet-v7.0.103.tar.gz
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/dotnet-v7.0.113.tar.gz
|
||||
SOURCES/dotnet-v7.0.103.tar.gz
|
||||
|
@ -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.13
|
||||
%global runtime_version 7.0.13
|
||||
%global host_version 7.0.3
|
||||
%global runtime_version 7.0.3
|
||||
%global aspnetcore_runtime_version %{runtime_version}
|
||||
%global sdk_version 7.0.113
|
||||
%global sdk_version 7.0.103
|
||||
%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 }')
|
||||
@ -51,7 +51,7 @@
|
||||
|
||||
Name: dotnet7.0
|
||||
Version: %{sdk_rpm_version}
|
||||
Release: 2%{?dist}
|
||||
Release: 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/
|
||||
@ -79,6 +79,7 @@ Source11: dotnet.sh.in
|
||||
Patch1: roslyn-analyzers-ppc64le-apphost.patch
|
||||
|
||||
|
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
||||
ExclusiveArch: aarch64 ppc64le s390x x86_64
|
||||
%else
|
||||
@ -323,7 +324,7 @@ applications using the .NET SDK.
|
||||
%dotnet_targeting_pack dotnet-apphost-pack-7.0 %{runtime_rpm_version} Microsoft.NETCore.App 7.0 Microsoft.NETCore.App.Host.%{runtime_id}
|
||||
%dotnet_targeting_pack dotnet-targeting-pack-7.0 %{runtime_rpm_version} Microsoft.NETCore.App 7.0 Microsoft.NETCore.App.Ref
|
||||
%dotnet_targeting_pack aspnetcore-targeting-pack-7.0 %{aspnetcore_runtime_rpm_version} Microsoft.AspNetCore.App 7.0 Microsoft.AspNetCore.App.Ref
|
||||
#%%dotnet_targeting_pack netstandard-targeting-pack-2.1 %%{sdk_rpm_version} NETStandard.Library 2.1 NETStandard.Library.Ref
|
||||
%dotnet_targeting_pack netstandard-targeting-pack-2.1 %{sdk_rpm_version} NETStandard.Library 2.1 NETStandard.Library.Ref
|
||||
|
||||
|
||||
%package -n dotnet-sdk-7.0-source-built-artifacts
|
||||
@ -515,35 +516,30 @@ find %{buildroot}%{_libdir}/dotnet/ -type f -name '*.targets' -exec chmod -x {}
|
||||
find %{buildroot}%{_libdir}/dotnet/ -type f -name '*.txt' -exec chmod -x {} \;
|
||||
find %{buildroot}%{_libdir}/dotnet/ -type f -name '*.xml' -exec chmod -x {} \;
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
#install -dm 0755 %%{buildroot}%%{_sysconfdir}/profile.d/
|
||||
#install dotnet.sh %%{buildroot}%%{_sysconfdir}/profile.d/
|
||||
install -dm 0755 %{buildroot}%{_sysconfdir}/profile.d/
|
||||
install dotnet.sh %{buildroot}%{_sysconfdir}/profile.d/
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
#install -dm 0755 %%{buildroot}/%%{_datadir}/bash-completion/completions
|
||||
install -dm 0755 %{buildroot}/%{_datadir}/bash-completion/completions
|
||||
# dynamic completion needs the file to be named the same as the base command
|
||||
#install src/sdk/scripts/register-completions.bash %%{buildroot}/%%{_datadir}/bash-completion/completions/dotnet
|
||||
install src/sdk/scripts/register-completions.bash %{buildroot}/%{_datadir}/bash-completion/completions/dotnet
|
||||
|
||||
# TODO: the zsh completion script needs to be ported to use #compdef
|
||||
#install -dm 755 %%{buildroot}/%%{_datadir}/zsh/site-functions
|
||||
#install src/cli/scripts/register-completions.zsh %%{buildroot}/%%{_datadir}/zsh/site-functions/_dotnet
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
#install -dm 0755 %%{buildroot}%%{_bindir}
|
||||
#ln -s ../../%%{_libdir}/dotnet/dotnet %%{buildroot}%%{_bindir}/
|
||||
install -dm 0755 %{buildroot}%{_bindir}
|
||||
ln -s ../../%{_libdir}/dotnet/dotnet %{buildroot}%{_bindir}/
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
#for section in 1 7; do
|
||||
# install -dm 0755 %%{buildroot}%%{_mandir}/man${section}/
|
||||
# find -iname 'dotnet*'.${section} -type f -exec cp {} %%{buildroot}%%{_mandir}/man${section}/ \;
|
||||
#done
|
||||
for section in 1 7; do
|
||||
install -dm 0755 %{buildroot}%{_mandir}/man${section}/
|
||||
find -iname 'dotnet*'.${section} -type f -exec cp {} %{buildroot}%{_mandir}/man${section}/ \;
|
||||
done
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
#install -dm 0755 %%{buildroot}%%{_sysconfdir}/dotnet
|
||||
#echo "%%{_libdir}/dotnet" >> install_location
|
||||
#install install_location %%{buildroot}%%{_sysconfdir}/dotnet/
|
||||
#echo "%%{_libdir}/dotnet" >> install_location_%%{runtime_arch}
|
||||
#install install_location_%%{runtime_arch} %%{buildroot}%%{_sysconfdir}/dotnet/
|
||||
install -dm 0755 %{buildroot}%{_sysconfdir}/dotnet
|
||||
echo "%{_libdir}/dotnet" >> install_location
|
||||
install install_location %{buildroot}%{_sysconfdir}/dotnet/
|
||||
echo "%{_libdir}/dotnet" >> install_location_%{runtime_arch}
|
||||
install install_location_%{runtime_arch} %{buildroot}%{_sysconfdir}/dotnet/
|
||||
|
||||
install -dm 0755 %{buildroot}%{_libdir}/dotnet/source-built-artifacts
|
||||
install -m 0644 artifacts/%{runtime_arch}/Release/Private.SourceBuilt.Artifacts.*.tar.gz %{buildroot}/%{_libdir}/dotnet/source-built-artifacts/
|
||||
@ -559,7 +555,8 @@ echo "Testing build results for debug symbols..."
|
||||
%{SOURCE10} -v %{buildroot}%{_libdir}/dotnet/
|
||||
|
||||
|
||||
# Self-check
|
||||
|
||||
%check
|
||||
%if 0%{?fedora} > 35
|
||||
# lttng in Fedora > 35 is incompatible with .NET
|
||||
export COMPlus_LTTng=0
|
||||
@ -568,14 +565,27 @@ export COMPlus_LTTng=0
|
||||
%{buildroot}%{_libdir}/dotnet/dotnet --info
|
||||
%{buildroot}%{_libdir}/dotnet/dotnet --version
|
||||
|
||||
# Provided by dotnet-host from another SRPM
|
||||
rm %{buildroot}%{_libdir}/dotnet/LICENSE.txt
|
||||
rm %{buildroot}%{_libdir}/dotnet/ThirdPartyNotices.txt
|
||||
rm %{buildroot}%{_libdir}/dotnet/dotnet
|
||||
|
||||
# Provided by netstandard-targeting-pack-2.1 from another SRPM
|
||||
rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
|
||||
%if 0%{?rhel} <= 8
|
||||
%files -n dotnet
|
||||
# empty package useful for dependencies
|
||||
%endif
|
||||
|
||||
%files -n dotnet-host
|
||||
%dir %{_libdir}/dotnet
|
||||
%{_libdir}/dotnet/dotnet
|
||||
%dir %{_libdir}/dotnet/host
|
||||
%dir %{_libdir}/dotnet/host/fxr
|
||||
%{_bindir}/dotnet
|
||||
%license %{_libdir}/dotnet/LICENSE.txt
|
||||
%license %{_libdir}/dotnet/ThirdPartyNotices.txt
|
||||
%doc %{_mandir}/man1/dotnet*.1.gz
|
||||
%doc %{_mandir}/man7/dotnet*.7.gz
|
||||
%config(noreplace) %{_sysconfdir}/profile.d/dotnet.sh
|
||||
%config(noreplace) %{_sysconfdir}/dotnet
|
||||
%dir %{_datadir}/bash-completion
|
||||
%dir %{_datadir}/bash-completion/completions
|
||||
%{_datadir}/bash-completion/completions/dotnet
|
||||
|
||||
%files -n dotnet-hostfxr-7.0
|
||||
%dir %{_libdir}/dotnet/host/fxr
|
||||
@ -609,78 +619,38 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Oct 24 2023 Omair Majid <omajid@redhat.com> - 7.0.113-2
|
||||
- Update to .NET SDK 7.0.113 and Runtime 7.0.13
|
||||
- Resolves: RHEL-14467
|
||||
|
||||
* Mon Oct 16 2023 Omair Majid <omajid@redhat.com> - 7.0.112-2
|
||||
- Update to .NET SDK 7.0.112 and Runtime 7.0.12
|
||||
- Resolves: RHEL-11698
|
||||
|
||||
* Tue Sep 12 2023 Omair Majid <omajid@redhat.com> - 7.0.111-2
|
||||
- Update to .NET SDK 7.0.111 and Runtime 7.0.11
|
||||
- Resolves: RHEL-2000
|
||||
|
||||
* Wed Aug 09 2023 Omair Majid <omajid@redhat.com> - 7.0.110-2
|
||||
- Update to .NET SDK 7.0.110 and Runtime 7.0.10
|
||||
- Resolves: RHBZ#2228571
|
||||
|
||||
* Tue Jul 11 2023 Omair Majid <omajid@redhat.com> - 7.0.109-2
|
||||
- Update to .NET SDK 7.0.109 and Runtime 7.0.9
|
||||
- Resolves: RHBZ#2219632
|
||||
|
||||
* Tue Jun 13 2023 Andrew Slice <andrew.slice@redhat.com> - 7.0.107-2
|
||||
- Update to .NET SDK 7.0.107 and Runtime 7.0.7
|
||||
- Resolves: RHBZ#2211767
|
||||
|
||||
* Wed Apr 12 2023 Omair Majid <omajid@redhat.com> - 7.0.105-2
|
||||
- Update to .NET SDK 7.0.105 and Runtime 7.0.5
|
||||
- Resolves: RHBZ#2183591
|
||||
|
||||
* Tue Mar 28 2023 Omair Majid <omajid@redhat.com> - 7.0.104-2
|
||||
- Bump Release
|
||||
- Related: RHBZ#2175025
|
||||
|
||||
* Mon Mar 20 2023 Omair Majid <omajid@redhat.com> - 7.0.104-1
|
||||
- Update to .NET SDK 7.0.104 and Runtime 7.0.4
|
||||
- Resolves: RHBZ#2175025
|
||||
|
||||
* Fri Mar 10 2023 Omair Majid <omajid@redhat.com> - 7.0.103-1
|
||||
* Thu Feb 02 2023 Omair Majid <omajid@redhat.com> - 7.0.103-1
|
||||
- Update to .NET SDK 7.0.103 and Runtime 7.0.3
|
||||
- Resolves: RHBZ#2166773
|
||||
- Resolves: RHBZ#2166775
|
||||
|
||||
* Thu Mar 09 2023 Omair Majid <omajid@redhat.com> - 7.0.102-1
|
||||
* Mon Dec 19 2022 Omair Majid <omajid@redhat.com> - 7.0.102-1
|
||||
- Update to .NET SDK 7.0.102 and Runtime 7.0.2
|
||||
- Resolves: RHBZ#2154465
|
||||
- Resolves: RHBZ#2154466
|
||||
|
||||
* Wed Jan 11 2023 Omair Majid <omajid@redhat.com> - 7.0.101-2
|
||||
* Tue Dec 06 2022 Omair Majid <omajid@redhat.com> - 7.0.101-1
|
||||
- Update to .NET SDK 7.0.101 and Runtime 7.0.1
|
||||
- Resolves: RHBZ#2150150
|
||||
- Resolves: RHBZ#2150151
|
||||
|
||||
* Wed Nov 09 2022 Omair Majid <omajid@redhat.com> - 7.0.100-1
|
||||
- Update to .NET 7 GA release
|
||||
- Resolves: RHBZ#2137944
|
||||
|
||||
* Tue Oct 25 2022 Omair Majid <omajid@redhat.com> - 7.0.100-0.5.rc2
|
||||
- Add lldb as a build dependency
|
||||
- Related: RHBZ#2134641
|
||||
* Wed Nov 02 2022 Omair Majid <omajid@redhat.com> - 7.0.100-1
|
||||
- Update to .NET SDK 7.0.100 and Runtime 7.0.0
|
||||
- Resolves: RHBZ#2137943
|
||||
|
||||
* Mon Oct 24 2022 Omair Majid <omajid@redhat.com> - 7.0.100-0.4.rc2
|
||||
- Enable ppc64le builds
|
||||
- Related: RHBZ#2134641
|
||||
- Related: RHBZ#2134642
|
||||
|
||||
* Thu Oct 13 2022 Omair Majid <omajid@redhat.com> - 7.0.100-0.3.rc2
|
||||
- Update to .NET 7 RC 2
|
||||
- Resolves: RHBZ#2134641
|
||||
- Resolves: RHBZ#2134642
|
||||
|
||||
* Sat Sep 17 2022 Omair Majid <omajid@redhat.com> - 7.0.100-0.2.rc1
|
||||
- Update to .NET 7 RC 1
|
||||
- Enable s390x builds
|
||||
- Resolves: RHBZ#2123884
|
||||
- Resolves: RHBZ#2123886
|
||||
|
||||
* Thu Aug 25 2022 Omair Majid <omajid@redhat.com> - 7.0.100-0.1
|
||||
- Initial .NET 7 package
|
||||
- Resolves: RHBZ#2112027
|
||||
- Resolves: RHBZ#2112096
|
||||
|
||||
* Wed May 11 2022 Omair Majid <omajid@redhat.com> - 6.0.105-1
|
||||
- Update to .NET SDK 6.0.105 and Runtime 6.0.5
|
||||
|
Loading…
Reference in New Issue
Block a user