Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-dotnet/dotnet-sdk-bin-common/, dev-dotnet/dotnet-sdk-bin-common/files/
Date: Fri, 30 Apr 2021 11:18:18
Message-Id: 1619781480.37017369d43fe830c8e9802aafbf0f83d8f82bc9.telans@gentoo
1 commit: 37017369d43fe830c8e9802aafbf0f83d8f82bc9
2 Author: Theo Anderson <telans <AT> posteo <DOT> de>
3 AuthorDate: Fri Apr 30 11:17:43 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Fri Apr 30 11:18:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37017369
7
8 dev-dotnet/dotnet-sdk-bin-common: initial import
9
10 Signed-off-by: Theo Anderson <telans <AT> posteo.de>
11
12 dev-dotnet/dotnet-sdk-bin-common/Manifest | 3 ++
13 .../dotnet-sdk-bin-common-5.0.202.ebuild | 52 ++++++++++++++++++++++
14 dev-dotnet/dotnet-sdk-bin-common/files/80dotnet | 2 +
15 dev-dotnet/dotnet-sdk-bin-common/metadata.xml | 8 ++++
16 4 files changed, 65 insertions(+)
17
18 diff --git a/dev-dotnet/dotnet-sdk-bin-common/Manifest b/dev-dotnet/dotnet-sdk-bin-common/Manifest
19 new file mode 100644
20 index 000000000..fed144e93
21 --- /dev/null
22 +++ b/dev-dotnet/dotnet-sdk-bin-common/Manifest
23 @@ -0,0 +1,3 @@
24 +DIST dotnet-sdk-5.0.202-linux-arm.tar.gz 136556882 BLAKE2B b56fd9e28fae720ebc3e667820f7cb37afdf7353688a3595f3f42ad9f2980c7bc0cbfe886efa66da25c6bbf7f69d5401880ac589669ab4576e32b4fb61bdbc61 SHA512 ac363bbc163100e49b2ad43dfded9bdd3444980d9dca1b51bcd65d6fab73a5fc2251f094fd5e6fa1c1c877251b2f26c684023c0e1b09d1956b9bb543f72c4f0b
25 +DIST dotnet-sdk-5.0.202-linux-arm64.tar.gz 134677034 BLAKE2B 059cf0db945d801c17563f72adc22c8f9ed68e510f43995ac4c36b1e28239a90eccf45d467c4d7ab0587b76f12794d241aa32174ba7fe626a0d003d446007dd8 SHA512 26ec125a0637e71acad20386474df89a101e9ae948921b5de0cd343f4bc0e84b4e7b2318e15978723eb3b9d321e89b790c3f0424a43c29b0015fc6f2b9e3e9d9
26 +DIST dotnet-sdk-5.0.202-linux-x64.tar.gz 140180468 BLAKE2B cbdc6ff24baff47dead2f6e2cc46b11527630a4481dbea2241c205bfd065032a97e9367678d1f0520ea2858f87f2f1f0f5d4872e8c442b375b1c09efae6cc596 SHA512 01ed59f236184987405673d24940d55ce29d830e7dbbc19556fdc03893039e6046712de6f901dc9911047a0dee4fd15319b7e94f8a31df6b981fa35bd93d9838
27
28 diff --git a/dev-dotnet/dotnet-sdk-bin-common/dotnet-sdk-bin-common-5.0.202.ebuild b/dev-dotnet/dotnet-sdk-bin-common/dotnet-sdk-bin-common-5.0.202.ebuild
29 new file mode 100644
30 index 000000000..11ad56047
31 --- /dev/null
32 +++ b/dev-dotnet/dotnet-sdk-bin-common/dotnet-sdk-bin-common-5.0.202.ebuild
33 @@ -0,0 +1,52 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="Common files shared between multiple slots of .NET"
40 +HOMEPAGE="https://dotnet.microsoft.com/"
41 +SRC_URI="
42 + amd64? ( https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-x64.tar.gz )
43 + arm? ( https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-arm.tar.gz )
44 + arm64? ( https://dotnetcli.azureedge.net/dotnet/Sdk/${PV}/dotnet-sdk-${PV}-linux-arm64.tar.gz )
45 +"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64"
50 +
51 +# The SDK includes dotnet-runtime-bin and dotnet-aspnet-bin,
52 +# so prevent installing them at the same time
53 +RDEPEND="
54 + !dev-dotnet/dotnet-aspnet-bin
55 + !dev-dotnet/dotnet-runtime-bin
56 + ~dev-dotnet/dotnet-sdk-bin-${PV}
57 +"
58 +
59 +QA_PREBUILT="*"
60 +
61 +S="${WORKDIR}"
62 +
63 +src_prepare() {
64 + # For current .NET versions, all the directories contain versioned files,
65 + # but the top-level files (the dotnet binary for example) are shared between versions,
66 + # and those are backward-compatible.
67 + # The exception from this above rule is packs/NETStandard.Library.Ref which is shared between >=3.0 versions.
68 + # These common files are installed by the non-slotted dev-dotnet/dotnet-sdk-bin-common
69 + # package, while the directories are installed by dev-dotnet/dotnet-sdk-bin which uses
70 + # slots depending on major .NET version.
71 + # This makes it possible to install multiple major versions at the same time.
72 + default
73 +
74 + # Skip the versioned files (which are located inside sub-directories)
75 + find . -maxdepth 1 -type d ! -name . ! -name packs -exec rm -rf {} \; || die
76 + find ./packs -maxdepth 1 -type d ! -name packs ! -name NETStandard.Library.Ref -exec rm -rf {} \; || die
77 +}
78 +
79 +src_install() {
80 + insinto /opt/dotnet
81 + doins -r "${S}/."
82 + dosym ../../opt/dotnet/dotnet /usr/bin/dotnet
83 + fperms +x /usr/bin/dotnet
84 + doenvd "${FILESDIR}/80dotnet"
85 +}
86
87 diff --git a/dev-dotnet/dotnet-sdk-bin-common/files/80dotnet b/dev-dotnet/dotnet-sdk-bin-common/files/80dotnet
88 new file mode 100644
89 index 000000000..4cf0206ea
90 --- /dev/null
91 +++ b/dev-dotnet/dotnet-sdk-bin-common/files/80dotnet
92 @@ -0,0 +1,2 @@
93 +DOTNET_CLI_TELEMETRY_OPTOUT=1
94 +DOTNET_ROOT=/opt/dotnet
95
96 diff --git a/dev-dotnet/dotnet-sdk-bin-common/metadata.xml b/dev-dotnet/dotnet-sdk-bin-common/metadata.xml
97 new file mode 100644
98 index 000000000..17cfe1629
99 --- /dev/null
100 +++ b/dev-dotnet/dotnet-sdk-bin-common/metadata.xml
101 @@ -0,0 +1,8 @@
102 +<?xml version="1.0" encoding="UTF-8"?>
103 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
104 +<pkgmetadata>
105 + <maintainer type="project">
106 + <email>telans@××××××.de</email>
107 + <name>Theo Anderson</name>
108 + </maintainer>
109 +</pkgmetadata>