From 4427a4274ee7d560c73fa4600d713a77711168d0 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sun, 22 May 2022 05:26:14 +0000 Subject: [PATCH] dotnet-runtime: Repackaged to only include ASP.NET 6 and addon (118) - Repackaged to only include ASP.NET 6 (as .NET 6 Runtime is included within ASP.NET.) - LibreELEC now only includes OpenSSL 3 and not OpenSSL 1.x. - .NET 6 is the first .NET version to support OpenSSL 3. - If your .NET Core 3.1 application requires OpenSSL - it will not work with this release of LibreELEC. --- packages/addons/tools/dotnet-runtime/changelog.txt | 9 ++++++++- packages/addons/tools/dotnet-runtime/package.mk | 8 +++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/packages/addons/tools/dotnet-runtime/changelog.txt b/packages/addons/tools/dotnet-runtime/changelog.txt index 4a05f80388..bd7f770ff4 100644 --- a/packages/addons/tools/dotnet-runtime/changelog.txt +++ b/packages/addons/tools/dotnet-runtime/changelog.txt @@ -1,4 +1,11 @@ -116 +118 +- Repackaged to only include ASP.NET 6 (as .NET 6 Runtime is included within ASP.NET.) +- LibreELEC now only includes OpenSSL 3 and not OpenSSL 1.x. + - .NET 6 is the first .NET version to support OpenSSL 3. + - If your .NET Core 3.1 application requires OpenSSL - it will not work with + this release of LibreELEC. + +117 - Update .NET Runtime 6.0.5 - Update ASP.NET Core Runtime 6.0.5 diff --git a/packages/addons/tools/dotnet-runtime/package.mk b/packages/addons/tools/dotnet-runtime/package.mk index 011ed1d9c9..6b11161be3 100644 --- a/packages/addons/tools/dotnet-runtime/package.mk +++ b/packages/addons/tools/dotnet-runtime/package.mk @@ -2,14 +2,14 @@ # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) PKG_NAME="dotnet-runtime" -PKG_REV="117" +PKG_REV="118" PKG_ARCH="any" PKG_LICENSE="MIT" PKG_SITE="https://dotnet.microsoft.com/" -PKG_DEPENDS_TARGET="toolchain icu aspnet6-runtime dotnet3-runtime dotnet6-runtime icu" +PKG_DEPENDS_TARGET="toolchain icu aspnet6-runtime dotnet3-runtime icu" PKG_SECTION="tools" PKG_SHORTDESC="ASP.NET Core Runtime" -PKG_LONGDESC="ASP.NET Core Runtimes ($(get_pkg_version dotnet3-runtime)) and ($(get_pkg_version dotnet6-runtime)) enables you to run existing console/web/server applications." +PKG_LONGDESC="ASP.NET Core Runtimes ($(get_pkg_version dotnet3-runtime)) and ($(get_pkg_version aspnet6-runtime)) enables you to run existing console/web/server applications." PKG_TOOLCHAIN="manual" PKG_IS_ADDON="yes" @@ -22,8 +22,6 @@ addon() { mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/bin cp -r $(get_build_dir dotnet3-runtime)/* \ ${ADDON_BUILD}/${PKG_ADDON_ID}/bin - cp -r $(get_build_dir dotnet6-runtime)/* \ - ${ADDON_BUILD}/${PKG_ADDON_ID}/bin cp -r $(get_build_dir aspnet6-runtime)/* \ ${ADDON_BUILD}/${PKG_ADDON_ID}/bin