Blame SPECS/dotnet.spec

627693
# Avoid provides/requires from private libraries
627693
%global privlibs             libhostfxr
627693
%global privlibs %{privlibs}|libclrjit
627693
%global privlibs %{privlibs}|libcoreclr
627693
%global privlibs %{privlibs}|libcoreclrtraceptprovider
627693
%global privlibs %{privlibs}|libdbgshim
627693
%global privlibs %{privlibs}|libhostpolicy
627693
%global privlibs %{privlibs}|libmscordaccore
627693
%global privlibs %{privlibs}|libmscordbi
627693
%global privlibs %{privlibs}|libsos
627693
%global privlibs %{privlibs}|libsosplugin
627693
%global __provides_exclude ^(%{privlibs})\\.so
627693
%global __requires_exclude ^(%{privlibs})\\.so
627693
627693
# Filter flags not supported by clang/dotnet:
627693
#  -fcf-protection is not supported by clang
627693
#  -fstack-clash-protection is not supported by clang
627693
#  -specs= is not supported by clang
627693
#  -fpie is added manually instead of via -specs
627693
%global dotnet_cflags %(echo %optflags | sed -e 's/-fcf-protection//' | sed -e 's/-fstack-clash-protection//' | sed -re 's/-specs=[^ ]*//g')
627693
%global dotnet_ldflags %(echo %{__global_ldflags} | sed -re 's/-specs=[^ ]*//g')
627693
627693
%if 0%{?fedora}
627693
%global use_bundled_libunwind 0
627693
%else
627693
%global use_bundled_libunwind 1
627693
%endif
627693
627693
%global simple_name dotnet
627693
dd4214
%global host_version 2.1.30
dd4214
%global runtime_version 2.1.30
dd4214
%global sdk_version 2.1.526
627693
627693
Name:           dotnet
627693
Version:        %{sdk_version}
dd4214
Release:        1%{?dist}
627693
Summary:        .NET Core CLI tools and runtime
627693
License:        MIT and ASL 2.0 and BSD
627693
URL:            https://github.com/dotnet/
627693
627693
# The source is generated on a RHEL box via:
0e8c89
# ./build-dotnet-tarball v%%{sdk_version}-SDK
627693
0e8c89
Source0:        dotnet-v%{sdk_version}-SDK.tar.gz
627693
Source1:        check-debug-symbols.py
627693
Source2:        dotnet.sh
627693
627693
Patch10:        corefx-optflags-support.patch
627693
Patch11:        corefx-32956-alpn.patch
0e8c89
# This patch is generally applied at tarball-build time, except when we dont build the tarball
0e8c89
Patch12:        build-corefx-disable-werror.patch
627693
cf73fe
Patch100:       coreclr-pie.patch
cf73fe
Patch101:       coreclr-libunwind-fno-common.patch
627693
627693
Patch300:       core-setup-4510-commit-id.patch
627693
Patch301:       core-setup-pie.patch
627693
627693
Patch400:       cli-telemetry-optout.patch
627693
627693
ExclusiveArch:  x86_64
627693
627693
BuildRequires:  clang
627693
BuildRequires:  cmake
627693
# Bootstrap SDK needs OpenSSL 1.0 to run, but we can build and then
627693
# run with either OpenSSL 1.0 or 1.1
627693
%if 0%{?fedora} >= 26 || 0%{?rhel} >= 8
627693
BuildRequires:  compat-openssl10
627693
%endif
627693
BuildRequires:  git
627693
BuildRequires:  glibc-langpack-en
627693
BuildRequires:  hostname
627693
BuildRequires:  krb5-devel
627693
BuildRequires:  libcurl-devel
627693
BuildRequires:  libicu-devel
627693
%if ! %{use_bundled_libunwind}
627693
BuildRequires:  libunwind-devel
627693
%endif
627693
BuildRequires:  lldb-devel
627693
BuildRequires:  llvm
627693
BuildRequires:  lttng-ust-devel
627693
BuildRequires:  make
627693
BuildRequires:  openssl-devel
627693
BuildRequires:  python3
627693
BuildRequires:  strace
627693
BuildRequires:  zlib-devel
627693
627693
Requires:       %{simple_name}-sdk-2.1%{?_isa} >= %{sdk_version}-%{release}
627693
627693
%description
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, macOS and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
.NET Core contains a runtime conforming to .NET Standards a set of
627693
framework libraries, an SDK containing compilers and a 'dotnet'
627693
application to drive everything.
627693
627693
627693
%package -n %{simple_name}-host
627693
627693
Version:        %{host_version}
627693
Summary:        .NET command line launcher
627693
627693
%description -n %{simple_name}-host
627693
The .NET Core host is a command line program that runs a standalone
627693
.NET core application or launches the SDK.
627693
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, Mac and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
627693
%package -n %{simple_name}-host-fxr-2.1
627693
627693
Version:        %{host_version}
627693
Summary:        .NET Core command line host resolver
627693
627693
# Theoretically any version of the host should work. But lets aim for the one
627693
# provided by this package, or from a newer version of .NET Core
627693
Requires:       %{simple_name}-host%{?_isa} >= %{host_version}-%{release}
627693
627693
%description -n %{simple_name}-host-fxr-2.1
627693
The .NET Core host resolver contains logic to resolve and select the
627693
right version of the .NET Core SDK or runtime to use.
627693
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, Mac and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
%package -n %{simple_name}-runtime-2.1
627693
627693
Version:        %{runtime_version}
627693
Summary:        NET Core 2.1 runtime
627693
627693
Requires:       %{simple_name}-host-fxr-2.1%{?_isa} >= %{host_version}-%{release}
627693
627693
# libicu is dlopen()ed
627693
Requires:       libicu
627693
627693
%description -n %{simple_name}-runtime-2.1
627693
The .NET Core runtime contains everything needed to run .NET Core applications.
627693
It includes a high performance Virtual Machine as well as the framework
627693
libraries used by .NET Core applications.
627693
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, Mac and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
%package -n %{simple_name}-sdk-2.1
627693
627693
Version:        %{sdk_version}
627693
Summary:        .NET Core 2.1 Software Development Kit
627693
627693
Requires:       %{simple_name}-sdk-2.1.5xx%{?_isa} >= %{sdk_version}-%{release}
627693
627693
%description -n %{simple_name}-sdk-2.1
627693
The .NET Core SDK is a collection of command line applications to
627693
create, build, publish and run .NET Core applications.
627693
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, Mac and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
%package -n %{simple_name}-sdk-2.1.5xx
627693
627693
Version:        %{sdk_version}
627693
Summary:        .NET Core 2.1.5xx Software Development Kit
627693
627693
Requires:       %{simple_name}-runtime-2.1%{?_isa} >= %{runtime_version}-%{release}
627693
627693
%description -n %{simple_name}-sdk-2.1.5xx
627693
The .NET Core SDK is a collection of command line applications to
627693
create, build, publish and run .NET Core applications.
627693
627693
.NET Core is a fast, lightweight and modular platform for creating
627693
cross platform applications that work on Linux, Mac and Windows.
627693
627693
It particularly focuses on creating console applications, web
627693
applications and micro-services.
627693
627693
627693
%prep
0e8c89
%setup -q -n %{simple_name}-v%{sdk_version}-SDK
627693
627693
pushd src/corefx
627693
%patch10 -p1
627693
%patch11 -p1
0e8c89
%patch12 -p1
627693
popd
627693
627693
pushd src/coreclr
627693
%patch100 -p1
627693
%patch101 -p1
627693
popd
627693
627693
pushd src/core-setup
627693
%patch300 -p1
627693
%patch301 -p1
627693
popd
627693
627693
pushd src/cli
627693
%patch400 -p1
627693
popd
627693
627693
# Fix bad hardcoded path in build
627693
sed -i 's|/usr/share/dotnet|%{_libdir}/%{simple_name}|' src/core-setup/src/corehost/common/pal.unix.cpp
627693
627693
# Disable warnings
627693
sed -i 's|skiptests|skiptests ignorewarnings|' repos/coreclr.proj
627693
0e8c89
# If CLR_CMAKE_USE_SYSTEM_LIBUNWIND=TRUE is missing, add it back
0e8c89
grep CLR_CMAKE_USE_SYSTEM_LIBUNWIND repos/coreclr.proj || \
0e8c89
    sed -i 's|\$(BuildArguments) </BuildArguments>|$(BuildArguments) cmakeargs -DCLR_CMAKE_USE_SYSTEM_LIBUNWIND=TRUE</BuildArguments>|' repos/coreclr.proj
0e8c89
627693
%if %{use_bundled_libunwind}
627693
# Use bundled libunwind
627693
sed -i 's|-DCLR_CMAKE_USE_SYSTEM_LIBUNWIND=TRUE|-DCLR_CMAKE_USE_SYSTEM_LIBUNWIND=FALSE|' repos/coreclr.proj
627693
%endif
627693
627693
cat source-build-info.txt
627693
627693
627693
%build
627693
export DOTNET_CLI_TELEMETRY_OPTOUT=1
627693
627693
export LLVM_HOME=/opt/rh/llvm-toolset-6.0/root/usr
627693
export CMAKE_INCLUDE_PATH="/opt/rh/llvm-toolset-6.0/root/usr/include"
627693
627693
export CFLAGS="%{dotnet_cflags}"
627693
export CXXFLAGS="%{dotnet_cflags}"
627693
export LDFLAGS="%{dotnet_ldflags}"
627693
627693
test -f Tools/ilasm/ilasm
627693
627693
Tools/dotnetcli/dotnet --info
627693
627693
VERBOSE=1 ./build.sh \
627693
  /v:n \
627693
  /p:MinimalConsoleLogOutput=false \
627693
  /p:ContinueOnPrebuiltBaselineError=true
627693
627693
627693
%install
627693
install -d -m 0755 %{buildroot}%{_libdir}/%{simple_name}/
627693
ls bin/x64/Release
627693
tar xf bin/x64/Release/dotnet-sdk-%{sdk_version}-*.tar.gz -C %{buildroot}%{_libdir}/%{simple_name}/
627693
627693
# Fix permissions on files
627693
find %{buildroot}%{_libdir}/%{simple_name}/ -type f -name '*.props' -exec chmod -x {} \;
627693
find %{buildroot}%{_libdir}/%{simple_name}/ -type f -name '*.targets' -exec chmod -x {} \;
627693
find %{buildroot}%{_libdir}/%{simple_name}/ -type f -name '*.dll' -exec chmod -x {} \;
627693
find %{buildroot}%{_libdir}/%{simple_name}/ -type f -name '*.pubxml' -exec chmod -x {} \;
627693
3745bc
# Provided by dotnet-host from another SRPM
627693
# Add ~/.dotnet/tools to $PATH for all users
3745bc
#install -dm 0755 %%{buildroot}%%{_sysconfdir}/profile.d/
3745bc
#install %%{SOURCE2} %%{buildroot}%%{_sysconfdir}/profile.d/
627693
3745bc
# Provided by dotnet-host from another SRPM
3745bc
#install -dm 755 %%{buildroot}/%%{_datadir}/bash-completion/completions
627693
# dynamic completion needs the file to be named the same as the base command
3745bc
#install src/cli/scripts/register-completions.bash %%{buildroot}/%%{_datadir}/bash-completion/completions/dotnet
627693
627693
# TODO: the zsh completion script needs to be ported to use #compdef
627693
#install -dm 755 %%{buildroot}/%%{_datadir}/zsh/site-functions
627693
#install src/cli/scripts/register-completions.zsh %%{buildroot}/%%{_datadir}/zsh/site-functions/_dotnet
627693
3745bc
# Provided by dotnet-host from another SRPM
3745bc
#install -d -m 0755 %%{buildroot}%%{_bindir}
3745bc
#ln -s %%{_libdir}/%%{simple_name}/dotnet %%{buildroot}%%{_bindir}/
627693
3745bc
# Provided by dotnet-host from another SRPM
3745bc
#install -d -m 0755 %%{buildroot}%%{_mandir}/man1/
3745bc
#find -iname 'dotnet*.1' -type f -exec cp {} %%{buildroot}%%{_mandir}/man1/ \;
627693
627693
# Check debug symbols in all elf objects. This is not in %%check
627693
# because native binaries are stripped by rpm-build after %%install.
627693
# So we need to do this check earlier.
627693
echo "Testing build results for debug symbols..."
627693
%{SOURCE1} -v %{buildroot}%{_libdir}/%{simple_name}/
627693
3745bc
# Self-check
627693
%{buildroot}%{_libdir}/%{simple_name}/dotnet --info
627693
3745bc
# Provided by dotnet-host from another SRPM
3745bc
rm %{buildroot}%{_libdir}/%{simple_name}/LICENSE.txt
3745bc
rm %{buildroot}%{_libdir}/%{simple_name}/ThirdPartyNotices.txt
3745bc
rm %{buildroot}%{_libdir}/%{simple_name}/dotnet
627693
627693
627693
%files -n %{simple_name}-host-fxr-2.1
627693
%dir %{_libdir}/%{simple_name}/host/fxr
627693
%{_libdir}/%{simple_name}/host/fxr/%{host_version}
627693
627693
%files -n %{simple_name}-runtime-2.1
627693
%dir %{_libdir}/%{simple_name}/shared
627693
%dir %{_libdir}/%{simple_name}/shared/Microsoft.NETCore.App
627693
%{_libdir}/%{simple_name}/shared/Microsoft.NETCore.App/%{runtime_version}
627693
627693
%files -n %{simple_name}-sdk-2.1
627693
# empty package useful for dependencies
627693
627693
%files -n %{simple_name}-sdk-2.1.5xx
627693
%dir %{_libdir}/%{simple_name}/sdk
627693
%{_libdir}/%{simple_name}/sdk/%{sdk_version}
627693
627693
%changelog
dd4214
* Mon Aug 16 2021 Omair Majid <omajid@redhat.com> - 2.1.526-1
dd4214
- Update to .NET SDK 2.1.526 and Runtime 2.1.30
dd4214
- Resolves: RHBZ#1993896
dd4214
dd4214
* Tue Aug 03 2021 Omair Majid <omajid@redhat.com> - 2.1.525-1
dd4214
- Update to .NET SDK 2.1.525 and Runtime 2.1.29
dd4214
- Resolves: RHBZ#1988581
dd4214
dd4214
* Tue Apr 27 2021 Omair Majid <omajid@redhat.com> - 2.1.524-1
dd4214
- Update to .NET SDK 2.1.524 and Runtime 2.1.28
dd4214
- Resolves: RHBZ#1953766
dd4214
dd4214
* Thu Apr 08 2021 Omair Majid <omajid@redhat.com> - 2.1.523-1
dd4214
- Update to .NET Core SDK 2.1.523 and Runtime 2.1.27
dd4214
- Resolves: RHBZ#1947454
dd4214
dd4214
* Tue Mar 09 2021 Omair Majid <omajid@redhat.com> - 2.1.522-2
dd4214
- Update to .NET Core SDK 2.1.522 and Runtime 2.1.26
dd4214
- Resolves: RHBZ#1933334
dd4214
cf73fe
* Wed Feb 10 2021 Omair Majid <omajid@redhat.com> - 2.1.521-2
cf73fe
- Update to .NET Core SDK 2.1.521 and Runtime 2.1.25
cf73fe
- Resolves: RHBZ#1921939
cf73fe
cf73fe
* Tue Jan 12 14:41:40 EST 2021 Omair Majid <omajid@redhat.com> - 2.1.520-1
cf73fe
- Update to .NET Core SDK 2.1.520 and Runtime 2.1.24
cf73fe
- Resolves: RHBZ#1905575
cf73fe
cf73fe
* Tue Oct 06 2020 Omair Majid <omajid@redhat.com> - 2.1.519-2
cf73fe
- Bump release
cf73fe
- Resolves: RHBZ#1884080
cf73fe
cf73fe
* Thu Oct 01 2020 Omair Majid <omajid@redhat.com> - 2.1.519-1
cf73fe
- Update to .NET Core SDK 2.1.519 and Runtime 2.1.23
cf73fe
- Drop patches merged upstream
cf73fe
- Resolves: RHBZ#1884080
cf73fe
cf73fe
* Fri Sep 04 2020 Omair Majid <omajid@redhat.com> - 2.1.518-1
cf73fe
- Update to .NET Core SDK 2.1.518 and Runtime 2.1.22
cf73fe
- Resolves: RHBZ#1874064
cf73fe
cf73fe
* Mon Aug 17 2020 Omair Majid <omajid@redhat.com> - 2.1.517-1
cf73fe
- Update to .NET Core SDK 2.1.517 and Runtime 2.1.21
cf73fe
- Resolves: RHBZ#1866119
cf73fe
cf73fe
* Fri Jul 17 2020 Omair Majid <omajid@redhat.com> - 2.1.516-1
cf73fe
- Update to .NET Core SDK 2.1.516 and Runtime 2.1.20
cf73fe
- Resolves: RHBZ#1851971
cf73fe
- Resolves: RHBZ#1856937
cf73fe
0e8c89
* Thu Jun 11 2020 Omair Majid <omajid@redhat.com> - 2.1.515-2
0e8c89
- Update to .NET Core SDK 2.1.515 and Runtime 2.1.19
0e8c89
- Resolves: RHBZ#1843672
0e8c89
0e8c89
* Mon Jun 01 2020 Omair Majid <omajid@redhat.com> - 2.1.514-3
0e8c89
- Update to .NET Core SDK 2.1.514 and Runtime 2.1.18
0e8c89
- Resolves: RHBZ#1828392
0e8c89
0e8c89
* Mon Mar 23 2020 Omair Majid <omajid@redhat.com> - 2.1.513-2
0e8c89
- Update to .NET Core SDK 2.1.513 and Runtime 2.1.17
0e8c89
- Resolves: RHBZ#1815640
0e8c89
0e8c89
* Sat Mar 07 2020 Omair Majid <omajid@redhat.com> - 2.1.512-1
0e8c89
- Update to .NET Core Runtime 2.1.16 and SDK 2.1.512
0e8c89
- Resolves: RHBZ#1799068
0e8c89
0e8c89
* Fri Jan 17 2020 Omair Majid <omajid@redhat.com> - 2.1.511-2
0e8c89
- Update to .NET Core Runtime 2.1.15 and SDK 2.1.511
0e8c89
- Resolves: RHBZ#1786190
0e8c89
3745bc
* Thu Aug 29 2019 Omair Majid <omajid@redhat.com> - 2.1.509-2
3745bc
- Update to .NET Core Runtime 2.1.13 and SDK 2.1.509
3745bc
- Resolves: RHBZ#1742959
3745bc
3745bc
* Thu Aug 15 2019 Omair Majid <omajid@redhat.com> - 2.1.508-3
3745bc
- Remove dotnet and dotnet host packages
3745bc
- Resolves: RHBZ#1740879
3745bc
3745bc
* Tue Aug 13 2019 Omair Majid <omajid@redhat.com> - 2.1.508-2
3745bc
- Bump release
3745bc
- Resolves: RHBZ#1740308
3745bc
3745bc
* Thu Jul 11 2019 Omair Majid <omajid@redhat.com> - 2.1.508-1
3745bc
- Update to .NET Core Runtime 2.1.12 and SDK 2.1.508
3745bc
- Resolves: RHBZ#1728823
3745bc
627693
* Wed Jun 12 2019 Omair Majid <omajid@redhat.com> - 2.1.507-4
627693
- Bump version
627693
- Related: RHBZ#1712158
627693
627693
* Mon May 20 2019 Omair Majid <omajid@redhat.com> - 2.1.507-2
627693
- Link against strerror_r correctly
627693
- Resolves: RHBZ#1712158
627693
627693
* Thu May 02 2019 Omair Majid <omajid@redhat.com> - 2.1.507-1
627693
- Update to .NET Core Runtime 2.1.11 and SDK 2.1.507
627693
- Resolves: RHBZ#1705284
627693
627693
* Wed Apr 17 2019 Omair Majid <omajid@redhat.com> - 2.1.506-2
627693
- Switch away from SCL dependencies for clang/llvm/lldb
627693
- Resolves: RHBZ#1700908
627693
627693
* Tue Apr 09 2019 Omair Majid <omajid@redhat.com> - 2.1.506-1
627693
- Update to .NET Core Runtime 2.1.10 and SDK 2.1.506
627693
- Resolves: RHBZ#1696371
627693
627693
* Fri Feb 22 2019 Omair Majid <omajid@redhat.com> - 2.1.504-1
627693
- Update to .NET Core Runtime 2.1.8 and SDK 2.1.504
627693
- Sync with Fedora copr spec file
627693
- Resolves: RHBZ#1646713
627693
627693
* Fri Oct 12 2018 Omair Majid <omajid@redhat.com> - 2.1.403-4
627693
- Disable telemetry via code, not just environment variable
627693
- Resolves: rhbz#1638093
627693
627693
* Thu Oct 11 2018 Omair Majid <omajid@redhat.com> - 2.1.403-3
627693
- Disable telemetry by default
627693
- Resolves: rhbz#1638093
627693
627693
* Wed Oct 10 2018 Omair Majid <omajid@redhat.com> - 2.1.403-2
627693
- Target the latest ASP.NET Core version instead of 2.1.1
627693
- Resolves: rhbz#1636585
627693
627693
* Thu Oct 04 2018 Omair Majid <omajid@redhat.com> - 2.1.403-1
627693
- Update to .NET Core Runtime 2.1.5 and SDK 2.1.403
627693
- Resolves: rhbz#1634182
627693
627693
* Mon Oct 01 2018 Omair Majid <omajid@redhat.com> - 2.1.402-5
627693
- Backport fix to correct order of SSL_CERT_FILE and SSL_CERT_DIR lookup
627693
- Resolves: rhbz#1633742
627693
627693
* Thu Sep 27 2018 Omair Majid <omajid@redhat.com> - 2.1.402-4
627693
- Add ~/.dotnet/tools to $PATH to make it easier to use dotnet tools
627693
- Resolves: rhbz#1630439
627693
627693
* Tue Sep 25 2018 Omair Majid <omajid@redhat.com> - 2.1.402-3
627693
- Update .NET Core Runtime 2.1.4 and SDK 2.1.402
627693
- Resolves: rhbz#1628997
627693
627693
* Tue Sep 11 2018 Omair Majid <omajid@redhat.com> - 2.1.401-3
627693
- Use standard flags to build .NET Core
627693
- Resolves: rhbz#1624105
627693
627693
* Tue Sep 11 2018 Omair Majid <omajid@redhat.com> - 2.1.401-2
627693
- Bundle libunwind
627693
- Resolves: rhbz#1626285
627693
627693
* Fri Aug 17 2018 Omair Majid <omajid@redhat.com> - 2.1.401-1
627693
- Update .NET Core Runtime 2.1.3 and SDK 2.1.401
627693
- Drop upstreamed patches
627693
627693
* Mon Aug 06 2018 Omair Majid <omajid@redhat.com> - 2.1.302-1
627693
- Initial build.
627693
- Un-SCLized the package.
627693
627693
* Wed Jul 4 2018 Omair Majid <omajid@redhat.com> - 2.1.302-1
627693
- Update to .NET Core Runtime 2.1.2 and SDK 2.1.302
627693
627693
* Wed Jun 20 2018 Omair Majid <omajid@redhat.com> - 2.1.301-5
627693
- Add sdk-2.1.3xx subpackage
627693
627693
* Tue Jun 19 2018 Omair Majid <omajid@redhat.com> - 2.1.301-4
627693
- Rebuild to pick up new lttng-ust
627693
627693
* Tue Jun 19 2018 Omair Majid <omajid@redhat.com> - 2.1.301-3
627693
- Add workaround for unreadable system certificates
627693
- Resolves: rhbz#1588099
627693
627693
* Tue Jun 19 2018 Omair Majid <omajid@redhat.com> - 2.1.301-2
627693
- Add updated man pages
627693
- Resolves: rhbz#1584790
627693
627693
* Thu Jun 14 2018 Omair Majid <omajid@redhat.com> - 2.1.301-1
627693
- Update to .NET Core SDK 2.1.301
627693
627693
* Wed May 30 2018 Omair Majid <omajid@redhat.com> - 2.1.300-7
627693
- Explicitly require a modified libcurl
627693
627693
* Tue May 29 2018 Omair Majid <omajid@redhat.com> - 2.1.300-6
627693
- Install bash completions in %%{_root_datadir}
627693
627693
* Mon May 28 2018 Omair Majid <omajid@redhat.com> - 2.1.300-5
627693
- Add provides for dotnet-sdk-2.1.3xx
627693
627693
* Mon May 28 2018 Omair Majid <omajid@redhat.com> - 2.1.300-4
627693
- Remove patch for ASP.NET Core templates. No longer needed for 2.1.
627693
627693
* Fri May 25 2018 Omair Majid <omajid@redhat.com> - 2.1.300-3
627693
- Remove net46 symlink
627693
627693
* Thu May 24 2018 Omair Majid <omajid@redhat.com> - 2.1.300-2
627693
- Rebuild to pick up updated dependencies
627693
627693
* Thu May 24 2018 Omair Majid <omajid@redhat.com> - 2.1.300-1
627693
- New package. Import from Fedora (DotNet SIG package).