diff options
author | 2024-02-03 14:13:17 +0100 | |
---|---|---|
committer | 2024-02-10 17:24:44 +0100 | |
commit | 80b969a57e4512e4397468b5369fe82474488db3 (patch) | |
tree | 764046d92e3c136f5cd388588e8356cd079fcbe4 /eclass | |
parent | app-emulation/diskimage-builder: stabilize 3.32.0 for amd64, x86 (diff) | |
download | gentoo-80b969a57e4512e4397468b5369fe82474488db3.tar.gz gentoo-80b969a57e4512e4397468b5369fe82474488db3.tar.bz2 gentoo-80b969a57e4512e4397468b5369fe82474488db3.zip |
eclass/dotnet-pkg-base.eclass: quotes and style tweaks
format special variables in edge cases section of the dotnet-pkg-base eclass
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/dotnet-pkg-base.eclass | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index 1a9d311208e2..db8deb1b3068 100644 --- a/eclass/dotnet-pkg-base.eclass +++ b/eclass/dotnet-pkg-base.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: dotnet-pkg-base.eclass @@ -68,13 +68,19 @@ if [[ ${CATEGORY}/${PN} != dev-dotnet/dotnet-runtime-nugets ]] ; then die "${ECLASS}: DOTNET_PKG_COMPAT not set" fi - DOTNET_PKG_RDEPS+=" virtual/dotnet-sdk:${DOTNET_PKG_COMPAT} " - DOTNET_PKG_BDEPS+=" ${DOTNET_PKG_RDEPS} " + DOTNET_PKG_RDEPS+=" + virtual/dotnet-sdk:${DOTNET_PKG_COMPAT} + " + DOTNET_PKG_BDEPS+=" + ${DOTNET_PKG_RDEPS} + " # Special package "dev-dotnet/csharp-gentoodotnetinfo" used for information # gathering, example for usage see the "dotnet-pkg-base_info" function. if [[ ${CATEGORY}/${PN} != dev-dotnet/csharp-gentoodotnetinfo ]] ; then - DOTNET_PKG_BDEPS+=" dev-dotnet/csharp-gentoodotnetinfo " + DOTNET_PKG_BDEPS+=" + dev-dotnet/csharp-gentoodotnetinfo + " fi IUSE+=" debug " |