summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-12-17 21:36:17 +0100
committerMaciej Barć <xgqt@gentoo.org>2023-12-17 22:45:45 +0100
commit792f13c208290681a4b35214d8b7ee3aa2cd8ef1 (patch)
tree010f618ff4dc212652f344ae9bcde713cb146713
parentdev-dotnet/coco: bump DOTNET_PKG_COMPAT to 8.0 (diff)
downloadgentoo-792f13c208290681a4b35214d8b7ee3aa2cd8ef1.tar.gz
gentoo-792f13c208290681a4b35214d8b7ee3aa2cd8ef1.tar.bz2
gentoo-792f13c208290681a4b35214d8b7ee3aa2cd8ef1.zip
dev-lang/mond: bump DOTNET_PKG_COMPAT to 8.0
Closes: https://bugs.gentoo.org/920110 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--dev-lang/mond/mond-0.9.4-r2.ebuild (renamed from dev-lang/mond/mond-0.9.4-r1.ebuild)11
1 files changed, 8 insertions, 3 deletions
diff --git a/dev-lang/mond/mond-0.9.4-r1.ebuild b/dev-lang/mond/mond-0.9.4-r2.ebuild
index cb880bcdd1f7..81202e70121b 100644
--- a/dev-lang/mond/mond-0.9.4-r1.ebuild
+++ b/dev-lang/mond/mond-0.9.4-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-DOTNET_PKG_COMPAT=7.0
+DOTNET_PKG_COMPAT=8.0
NUGETS="
fleck@1.2.0
microsoft.build.tasks.git@1.1.1
@@ -103,8 +103,13 @@ LICENSE="MIT"
SLOT="0"
DOTNET_PKG_PROJECTS=( Mond.Repl/Mond.Repl.csproj )
-DOTNET_PKG_BUILD_EXTRA_ARGS=( -p:RollForward=Major )
-DOTNET_PKG_TEST_EXTRA_ARGS=( -p:RollForward=Major )
+DOTNET_PKG_RESTORE_EXTRA_ARGS=(
+ -p:RollForward=Major
+ -p:TargetFramework="net${DOTNET_PKG_COMPAT}"
+ -p:TargetFrameworks="net${DOTNET_PKG_COMPAT}"
+)
+DOTNET_PKG_BUILD_EXTRA_ARGS=( "${DOTNET_PKG_RESTORE_EXTRA_ARGS[@]}" )
+DOTNET_PKG_TEST_EXTRA_ARGS=( "${DOTNET_PKG_RESTORE_EXTRA_ARGS[@]}" )
DOCS=( README.md Examples )