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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 474201582EF for ; Sun, 02 Mar 2025 21:33:07 +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 3211634305D for ; Sun, 02 Mar 2025 21:33:07 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 369D61102D0; Sun, 02 Mar 2025 21:33:06 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 2D7111102D0 for ; Sun, 02 Mar 2025 21:33:06 +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 D2641343014 for ; Sun, 02 Mar 2025 21:33:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 102BD1EA7 for ; Sun, 02 Mar 2025 21:33:04 +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: <1740951104.311b9b7fd256eeab02ee329eaa568814121cce0f.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kcalc/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kcalc/kcalc-24.12.49.9999.ebuild kde-apps/kcalc/kcalc-9999.ebuild X-VCS-Directories: kde-apps/kcalc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 311b9b7fd256eeab02ee329eaa568814121cce0f X-VCS-Branch: master Date: Sun, 02 Mar 2025 21:33:04 +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: 1c21ec6c-bc33-42b0-a1e9-c8d3416703a1 X-Archives-Hash: 97ee16a172b58b6de7b13f88496bfbec commit: 311b9b7fd256eeab02ee329eaa568814121cce0f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 2 21:31:44 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 2 21:31:44 2025 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=311b9b7f kde-apps/kcalc: Fix tests by setting LC_NUMERIC="C" Bug: https://bugs.gentoo.org/950210 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kcalc/kcalc-24.12.49.9999.ebuild | 4 ++++ kde-apps/kcalc/kcalc-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/kde-apps/kcalc/kcalc-24.12.49.9999.ebuild b/kde-apps/kcalc/kcalc-24.12.49.9999.ebuild index e2ccb7d971..090b3dc5dc 100644 --- a/kde-apps/kcalc/kcalc-24.12.49.9999.ebuild +++ b/kde-apps/kcalc/kcalc-24.12.49.9999.ebuild @@ -34,3 +34,7 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND="sys-devel/gettext" + +src_test() { + LC_NUMERIC="C" ecm_src_test +} diff --git a/kde-apps/kcalc/kcalc-9999.ebuild b/kde-apps/kcalc/kcalc-9999.ebuild index 729935b05f..26d17d83fb 100644 --- a/kde-apps/kcalc/kcalc-9999.ebuild +++ b/kde-apps/kcalc/kcalc-9999.ebuild @@ -35,3 +35,7 @@ DEPEND=" " RDEPEND="${DEPEND}" BDEPEND="sys-devel/gettext" + +src_test() { + LC_NUMERIC="C" ecm_src_test +}