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 90065158094 for ; Sun, 17 Jul 2022 07:22:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 906E5E0E30; Sun, 17 Jul 2022 07:22:13 +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 5130CE0E28 for ; Sun, 17 Jul 2022 07:22:13 +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 13263340FFC for ; Sun, 17 Jul 2022 07:22:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F590540 for ; Sun, 17 Jul 2022 07:22:10 +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: <1658042472.b27e419d3fb2cce9601a5df1974c65e8438e6fb4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/icu/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/icu/files/icu-69.1-fix-ub-units.patch X-VCS-Directories: dev-libs/icu/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b27e419d3fb2cce9601a5df1974c65e8438e6fb4 X-VCS-Branch: master Date: Sun, 17 Jul 2022 07:22:10 +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: 7fa1dbb8-1470-483b-a653-c7e89cd795ae X-Archives-Hash: 0629a44e54e4895c29fa96fab6bc72aa commit: b27e419d3fb2cce9601a5df1974c65e8438e6fb4 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jun 20 08:56:56 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 17 07:21:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b27e419d dev-libs/icu: remove unused patch Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/25996 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/icu/files/icu-69.1-fix-ub-units.patch | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/dev-libs/icu/files/icu-69.1-fix-ub-units.patch b/dev-libs/icu/files/icu-69.1-fix-ub-units.patch deleted file mode 100644 index 6847d5851557..000000000000 --- a/dev-libs/icu/files/icu-69.1-fix-ub-units.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://github.com/unicode-org/icu/pull/1715 -https://bugs.gentoo.org/788112 - -From 29f1188d191a7a75ac7ffa4bfa390f625da39c53 Mon Sep 17 00:00:00 2001 -From: Andreas Schwab -Date: Tue, 11 May 2021 19:04:24 +0200 -Subject: [PATCH] ICU-21613 Fix undefined behaviour in - ComplexUnitsConverter::applyRounder - ---- a/i18n/units_complexconverter.cpp -+++ b/i18n/units_complexconverter.cpp -@@ -237,6 +237,11 @@ void ComplexUnitsConverter::applyRounder(MaybeStackArray &intValues, - } - quantity = decimalQuantity.toDouble(); - -+ if (uprv_isNaN(quantity) || uprv_isInfinite(quantity)) { -+ // Do nothing for non-finite values, since conversion to int64_t is undefined -+ return; -+ } -+ - int32_t lastIndex = unitsConverters_.length() - 1; - if (lastIndex == 0) { - // Only one element, no need to bubble up the carry