From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC01A158015 for ; Sun, 17 Dec 2023 21:45:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4D612BC027; Sun, 17 Dec 2023 21:45:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E0512BC027 for ; Sun, 17 Dec 2023 21:45:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD5E933F9FD for ; Sun, 17 Dec 2023 21:45:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13B0E1338 for ; Sun, 17 Dec 2023 21:45:49 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1702849545.792f13c208290681a4b35214d8b7ee3aa2cd8ef1.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mond/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mond/mond-0.9.4-r1.ebuild dev-lang/mond/mond-0.9.4-r2.ebuild X-VCS-Directories: dev-lang/mond/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 792f13c208290681a4b35214d8b7ee3aa2cd8ef1 X-VCS-Branch: master Date: Sun, 17 Dec 2023 21:45:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 915c8a86-384a-4daf-9187-78a7100487fc X-Archives-Hash: 3ab7558e0c37325324e915677258413f commit: 792f13c208290681a4b35214d8b7ee3aa2cd8ef1 Author: Maciej Barć gentoo org> AuthorDate: Sun Dec 17 20:36:17 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Dec 17 21:45:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=792f13c2 dev-lang/mond: bump DOTNET_PKG_COMPAT to 8.0 Closes: https://bugs.gentoo.org/920110 Signed-off-by: Maciej Barć gentoo.org> dev-lang/mond/{mond-0.9.4-r1.ebuild => mond-0.9.4-r2.ebuild} | 11 ++++++++--- 1 file 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 similarity index 91% rename from dev-lang/mond/mond-0.9.4-r1.ebuild rename to 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 )