summaryrefslogtreecommitdiff
path: root/gui-apps
diff options
context:
space:
mode:
Diffstat (limited to 'gui-apps')
-rw-r--r--gui-apps/Manifest.gzbin3549 -> 3554 bytes
-rw-r--r--gui-apps/waybar/Manifest1
-rw-r--r--gui-apps/waybar/files/waybar-0.9.3-fix-crash-with-fmt.patch22
3 files changed, 0 insertions, 23 deletions
diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz
index d74b7e2379cf..02370b0188d8 100644
--- a/gui-apps/Manifest.gz
+++ b/gui-apps/Manifest.gz
Binary files differ
diff --git a/gui-apps/waybar/Manifest b/gui-apps/waybar/Manifest
index b6d6eafbe5d8..9a72854b1237 100644
--- a/gui-apps/waybar/Manifest
+++ b/gui-apps/waybar/Manifest
@@ -1,4 +1,3 @@
-AUX waybar-0.9.3-fix-crash-with-fmt.patch 832 BLAKE2B 3559aeb9c31bee3749e983c017190260057a4467cc336182dd922082bf0984c2687e45057948a456d6f08462dcd3d953aed95f57e5e2ae04ac65887aa1fa1471 SHA512 60778ca7a644cd63100029a5c45e9b2e813a7e14cd99e804422515bf39115cf8d0bc0cff550dc8e21c83276b34a0c121e92e373fb0f7a671071b11f2ec54e840
DIST waybar-0.9.5.tar.gz 146094 BLAKE2B cd46e308d282df5ba6ce34417c0fe5468c188acb3c0f9bf5b2d4dd4c2c80547cab65172b4f4162c2dde0b78f68d15c8b79be74113cacd2610fd2a48299e14013 SHA512 0bbb9e898e205728fc564389927fec661a8dd6a9995a6c5d318f930f4527d6afd0be11a6b71dfa9aafb05c982e0f131e51eb0eec9a3e92c28f5cb04ff780fa8b
EBUILD waybar-0.9.5.ebuild 1512 BLAKE2B 2afae936761a35cdd7fafe6fce3415f84d2ee2e4846b46c1b12b7dba340b7c9e05f26c97adfe6e4ca5c41828f0cd8adf07503627296d55e75ba95306223cd568 SHA512 59e2cd4fd0deef37832a1b6b9b88f6d1642a01a30a6339173c79be415a284cbd9087f39317f81de4bd374674e5f7de3340098e0ce80936be773ec62b41a37a57
EBUILD waybar-9999.ebuild 1484 BLAKE2B e9f0652d319431721ff42fbf595f6f353c75c32a2053b1ab348bf021e647afa88ec0589adb4a65ebc403684f7088fd79a61296a39cdd1c8d1a50a2746765d4f4 SHA512 c4235c768d6e50ce3c4c407b16ad6be3d78f05607c8a90f04454a5c62ff0cbb4cfd53c602c1e67aa284a6e38044a8eff3770bbcb897f546b1f94d42787146b37
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 73a2d871f2d6..000000000000
--- 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?= <admin@xenrox.net>
-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;
- }