From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id D19481582EF for ; Sun, 02 Mar 2025 23:58:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id AE9B4343142 for ; Sun, 02 Mar 2025 23:58:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 074761102D2; Sun, 02 Mar 2025 23:58:53 +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 bobolink.gentoo.org (Postfix) with ESMTPS id F29191102D2 for ; Sun, 02 Mar 2025 23:58:52 +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 A8DC53430C2 for ; Sun, 02 Mar 2025 23:58:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC72226A2 for ; Sun, 02 Mar 2025 23:58:50 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1740959912.8ce43d520be9296e6d18aa84abd9f6cc735debbf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kcalc/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kcalc/kcalc-24.08.3.ebuild kde-apps/kcalc/kcalc-24.12.2.ebuild X-VCS-Directories: kde-apps/kcalc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8ce43d520be9296e6d18aa84abd9f6cc735debbf X-VCS-Branch: master Date: Sun, 02 Mar 2025 23:58:50 +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: cd7db58f-7f58-4a75-a937-b388d0cfbe0f X-Archives-Hash: d067cebd2e64db2bb72a584b440c942b commit: 8ce43d520be9296e6d18aa84abd9f6cc735debbf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 2 21:31:44 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 2 23:58:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce43d52 kde-apps/kcalc: Fix tests by setting LC_NUMERIC="C" Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kcalc/kcalc-24.08.3.ebuild | 4 ++++ kde-apps/kcalc/kcalc-24.12.2.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/kde-apps/kcalc/kcalc-24.08.3.ebuild b/kde-apps/kcalc/kcalc-24.08.3.ebuild index 0d9a346f235f..c6145ba22714 100644 --- a/kde-apps/kcalc/kcalc-24.08.3.ebuild +++ b/kde-apps/kcalc/kcalc-24.08.3.ebuild @@ -33,3 +33,7 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND="sys-devel/gettext" + +src_test() { + LC_NUMERIC="C" ecm_src_test +} diff --git a/kde-apps/kcalc/kcalc-24.12.2.ebuild b/kde-apps/kcalc/kcalc-24.12.2.ebuild index e823fd023d0f..5b5203e274a5 100644 --- a/kde-apps/kcalc/kcalc-24.12.2.ebuild +++ b/kde-apps/kcalc/kcalc-24.12.2.ebuild @@ -34,3 +34,7 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND="sys-devel/gettext" + +src_test() { + LC_NUMERIC="C" ecm_src_test +}