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 01906158064 for ; Fri, 10 May 2024 17:22:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08C43E2A1C; Fri, 10 May 2024 17:22:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E0A85E2A1C for ; Fri, 10 May 2024 17:22:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2058D34300F for ; Fri, 10 May 2024 17:22:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 349091A4A for ; Fri, 10 May 2024 17:22:19 +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: <1715361737.7c9c54240012d0e69be44abb78d0cb14883faed0.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/dotnet-sdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild X-VCS-Directories: dev-dotnet/dotnet-sdk/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 7c9c54240012d0e69be44abb78d0cb14883faed0 X-VCS-Branch: master Date: Fri, 10 May 2024 17:22:19 +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: 91a34934-2b52-4446-8498-3269c5f32502 X-Archives-Hash: 0c2e72a47097081168ab7dd5919b801a commit: 7c9c54240012d0e69be44abb78d0cb14883faed0 Author: Maciej Barć gentoo org> AuthorDate: Fri May 10 17:21:20 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri May 10 17:22:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9c5424 dev-dotnet/dotnet-sdk: check for locales in pkg_pretend Bug: https://bugs.gentoo.org/931648 Signed-off-by: Maciej Barć gentoo.org> dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild index 49051dc868f3..483499226303 100644 --- a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild +++ b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.102.ebuild @@ -108,11 +108,7 @@ QA_FLAGS_IGNORED=" .*/singlefilehost " -pkg_setup() { - check-reqs_pkg_setup - llvm_pkg_setup - python-any-r1_pkg_setup - +check_requirements_locale() { if [[ "${MERGE_TYPE}" != binary ]] ; then if use elibc_glibc ; then local locales @@ -137,6 +133,20 @@ pkg_setup() { fi } +pkg_pretend() { + check-reqs_pkg_pretend + + check_requirements_locale +} + +pkg_setup() { + check-reqs_pkg_setup + llvm_pkg_setup + python-any-r1_pkg_setup + + check_requirements_locale +} + src_prepare() { default