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 92309158041 for ; Tue, 5 Mar 2024 09:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0DE4E2A40; Tue, 5 Mar 2024 09:18:53 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 83434E2A40 for ; Tue, 5 Mar 2024 09:18:53 +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 9DBDD34302A for ; Tue, 5 Mar 2024 09:18:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0D1514F9 for ; Tue, 5 Mar 2024 09:18:48 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1709630237.ba2830a0185a3a4679eb0856d30b7d354c22ef16.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/files/chromium-119-minizip-cast.patch X-VCS-Directories: www-client/chromium/files/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: ba2830a0185a3a4679eb0856d30b7d354c22ef16 X-VCS-Branch: master Date: Tue, 5 Mar 2024 09:18:48 +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: a1ae257b-d673-4287-bb6b-6ecafa65a603 X-Archives-Hash: 79221d634ff589da25f062a6c17e26d2 commit: ba2830a0185a3a4679eb0856d30b7d354c22ef16 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Mar 4 18:27:50 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Tue Mar 5 09:17:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba2830a0 www-client/chromium: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Petr Vaněk gentoo.org> .../chromium/files/chromium-119-minizip-cast.patch | 23 ---------------------- 1 file changed, 23 deletions(-) diff --git a/www-client/chromium/files/chromium-119-minizip-cast.patch b/www-client/chromium/files/chromium-119-minizip-cast.patch deleted file mode 100644 index 0d03e8ea3d9b..000000000000 --- a/www-client/chromium/files/chromium-119-minizip-cast.patch +++ /dev/null @@ -1,23 +0,0 @@ -clang-16 does not get the types for an aggregate right and fails with narrowing error ---- a/third_party/zlib/google/zip_internal.cc -+++ b/third_party/zlib/google/zip_internal.cc -@@ -260,13 +260,12 @@ zip_fileinfo TimeToZipFileInfo(const base::Time& file_time) { - // It assumes that dates below 1980 are in the double digit format. - // Hence the fail safe option is to leave the date unset. Some programs - // might show the unset date as 1980-0-0 which is invalid. -- zip_info.tmz_date = { -- .tm_sec = static_cast(file_time_parts.second), -- .tm_min = static_cast(file_time_parts.minute), -- .tm_hour = static_cast(file_time_parts.hour), -- .tm_mday = static_cast(file_time_parts.day_of_month), -- .tm_mon = static_cast(file_time_parts.month - 1), -- .tm_year = static_cast(file_time_parts.year)}; -+ zip_info.tmz_date.tm_sec = static_cast(file_time_parts.second); -+ zip_info.tmz_date.tm_min = static_cast(file_time_parts.minute); -+ zip_info.tmz_date.tm_hour = static_cast(file_time_parts.hour); -+ zip_info.tmz_date.tm_mday = static_cast(file_time_parts.day_of_month); -+ zip_info.tmz_date.tm_mon = static_cast(file_time_parts.month - 1); -+ zip_info.tmz_date.tm_year = static_cast(file_time_parts.year); - } - - return zip_info;