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 2F03015803E for ; Mon, 1 Jan 2024 20:29:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DDAD2BC028; Mon, 1 Jan 2024 20:29:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EB4682BC028 for ; Mon, 1 Jan 2024 20:29:42 +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 233EF33FD24 for ; Mon, 1 Jan 2024 20:29:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6A4211DB for ; Mon, 1 Jan 2024 20:29:40 +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: <1704140977.0d6ff19696f275082c4ac942afcc9ece7bec8104.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/fantomas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-dotnet/fantomas/fantomas-6.2.3.ebuild X-VCS-Directories: dev-dotnet/fantomas/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 0d6ff19696f275082c4ac942afcc9ece7bec8104 X-VCS-Branch: master Date: Mon, 1 Jan 2024 20:29:40 +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: e5d6ca92-fb54-4134-9997-9a4cebbdd69e X-Archives-Hash: 71bcc98347846d30323ed40c293bcd4e commit: 0d6ff19696f275082c4ac942afcc9ece7bec8104 Author: Maciej Barć gentoo org> AuthorDate: Mon Jan 1 19:19:37 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Jan 1 20:29:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6ff196 dev-dotnet/fantomas: rmove nuget.config files with find Signed-off-by: Maciej Barć gentoo.org> dev-dotnet/fantomas/fantomas-6.2.3.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-dotnet/fantomas/fantomas-6.2.3.ebuild b/dev-dotnet/fantomas/fantomas-6.2.3.ebuild index 8b3b84d8a7a7..d1be8a007fb9 100644 --- a/dev-dotnet/fantomas/fantomas-6.2.3.ebuild +++ b/dev-dotnet/fantomas/fantomas-6.2.3.ebuild @@ -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 EAPI=8 @@ -253,6 +253,9 @@ src_unpack() { } src_prepare() { + dotnet-pkg_src_prepare + + find "${S}" -type f -iname nuget.config -exec rm -v {} + || die cat < NuGet.config || die @@ -268,8 +271,6 @@ EOF ln -s "${WORKDIR}/fsharp-${FCS_COMMIT}" "${S}/.deps/${FCS_COMMIT}" || die find "${S}/.deps/${FCS_COMMIT}/src" -type f \ -exec sed -e "s|FSharp.Compiler|Fantomas.FCS|g" -i {} + || die - - dotnet-pkg_src_prepare } src_configure() {