Diff dotnet-sdk-bin-7.0.203 with a dotnet-sdk-bin-7.0.401-r1

/usr/portage/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-7.0.401-r1.ebuild 2023-10-09 14:52:29.344368346 +0300
22 22
S="${WORKDIR}"
23 23

  
24 24
SDK_SLOT="$(ver_cut 1-2)"
25
RUNTIME_SLOT="${SDK_SLOT}.5"
25
RUNTIME_SLOT="${SDK_SLOT}.11"
26 26
SLOT="${SDK_SLOT}/${RUNTIME_SLOT}"
27 27

  
28 28
LICENSE="MIT"
......
39 39
PDEPEND="
40 40
	~dev-dotnet/dotnet-runtime-nugets-${RUNTIME_SLOT}
41 41
	~dev-dotnet/dotnet-runtime-nugets-3.1.32
42
	~dev-dotnet/dotnet-runtime-nugets-6.0.16
42
	~dev-dotnet/dotnet-runtime-nugets-6.0.22
43 43
"
44 44

  
45 45
QA_PREBUILT="*"
46 46

  
47 47
src_install() {
48
	local dest=opt/${PN}-${SDK_SLOT}
48
	local dest="opt/${PN}-${SDK_SLOT}"
49 49
	dodir "${dest%/*}"
50 50

  
51 51
	# Create a magic workloads file, bug #841896
......
59 59
	mkdir "${S}" || die
60 60

  
61 61
	fperms 0755 "/${dest}"
62
	dosym ../../${dest}/dotnet /usr/bin/dotnet-bin-${SDK_SLOT}
62
	dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SDK_SLOT}"
63 63
}
64 64

  
65 65
pkg_postinst() {
Thank you!