Gentoo Archives: gentoo-commits

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