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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DAFB11382C5 for ; Mon, 22 Mar 2021 14:05:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10023E0815; Mon, 22 Mar 2021 14:05:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E75B1E0809 for ; Mon, 22 Mar 2021 14:05:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 214AA335DC0 for ; Mon, 22 Mar 2021 14:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E06D5CF for ; Mon, 22 Mar 2021 14:05:08 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1616421664.7f12dcc7b749552a0fd8aa60d6e0803eb49e8653.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/waybar/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-apps/waybar/files/waybar-0.9.3-fix-crash-with-fmt.patch X-VCS-Directories: gui-apps/waybar/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 7f12dcc7b749552a0fd8aa60d6e0803eb49e8653 X-VCS-Branch: master Date: Mon, 22 Mar 2021 14:05:08 +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: baebbb19-7fc0-46bf-95dc-815619f164e4 X-Archives-Hash: 4a56a5ceea15938e5c494ffd0b63f7d2 commit: 7f12dcc7b749552a0fd8aa60d6e0803eb49e8653 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Mar 22 08:45:40 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Mar 22 14:01:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f12dcc7 gui-apps/waybar: remove unused patch(es) Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/20053 Signed-off-by: Joonas Niilola gentoo.org> .../files/waybar-0.9.3-fix-crash-with-fmt.patch | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/gui-apps/waybar/files/waybar-0.9.3-fix-crash-with-fmt.patch b/gui-apps/waybar/files/waybar-0.9.3-fix-crash-with-fmt.patch deleted file mode 100644 index 73a2d871f2d..00000000000 --- a/gui-apps/waybar/files/waybar-0.9.3-fix-crash-with-fmt.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 9b41b9593418772ce578a87de5984d4e37ef7f11 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Thorben=20G=C3=BCnther?= -Date: Mon, 10 Aug 2020 20:53:29 +0200 -Subject: [PATCH] Fix crash with fmt - ---- - include/util/format.hpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/include/util/format.hpp b/include/util/format.hpp -index 0147701b..288d8f0c 100644 ---- a/include/util/format.hpp -+++ b/include/util/format.hpp -@@ -23,7 +23,7 @@ namespace fmt { - constexpr auto parse(ParseContext& ctx) -> decltype (ctx.begin()) { - auto it = ctx.begin(), end = ctx.end(); - if (it != end && *it == ':') ++it; -- if (*it == '>' || *it == '<' || *it == '=') { -+ if (it && (*it == '>' || *it == '<' || *it == '=')) { - spec = *it; - ++it; - }