dotnet-runtime: Drop ASP.NET Runtimes 3.1 and 5.0 and addon (125)

This commit is contained in:
Rudi Heitbaum 2022-10-15 05:07:00 +00:00
parent 5d0609f517
commit e21f8b33a2
2 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,12 @@
125
- Drop ASP.NET Core Runtime 3.1
- Drop .NET Runtime 5.0
- Drop ASP.NET Core Runtime 5.0
.NET Core 3.1 is End of Support - 2022-12-13
.NET 5.0 is End of Support - 2022-05-10
Current addons using .NET (Emby4, Jellyfin, NextPVR)
are now all using .NET 6.0
124
- Update ASP.NET Core Runtime 6.0.12

View File

@ -2,14 +2,14 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="dotnet-runtime"
PKG_REV="124"
PKG_REV="125"
PKG_ARCH="any"
PKG_LICENSE="MIT"
PKG_SITE="https://dotnet.microsoft.com/"
PKG_DEPENDS_TARGET="toolchain icu aspnet5-runtime aspnet6-runtime dotnet3-runtime dotnet5-runtime"
PKG_DEPENDS_TARGET="toolchain icu aspnet6-runtime"
PKG_SECTION="tools"
PKG_SHORTDESC="ASP.NET Core Runtime"
PKG_LONGDESC="ASP.NET Core Runtimes ($(get_pkg_version dotnet3-runtime)), ($(get_pkg_version dotnet5-runtime)) and ($(get_pkg_version aspnet6-runtime)) enables you to run existing console/web/server applications."
PKG_LONGDESC="ASP.NET Core Runtimes ($(get_pkg_version aspnet6-runtime)) enables you to run existing console/web/server applications."
PKG_TOOLCHAIN="manual"
PKG_IS_ADDON="yes"
@ -20,12 +20,6 @@ PKG_MAINTAINER="Anton Voyl (awiouy)"
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 dotnet5-runtime)/* \
${ADDON_BUILD}/${PKG_ADDON_ID}/bin
cp -r $(get_build_dir aspnet5-runtime)/* \
${ADDON_BUILD}/${PKG_ADDON_ID}/bin
cp -r $(get_build_dir aspnet6-runtime)/* \
${ADDON_BUILD}/${PKG_ADDON_ID}/bin