[packages/yambar] up to 1.11.0

atler atler at pld-linux.org
Wed Apr 17 23:05:32 CEST 2024


commit c30de202222fdbb3190bd3488fea6373a3f9ad78
Author: Jan Palus <atler at pld-linux.org>
Date:   Wed Apr 17 23:03:25 2024 +0200

    up to 1.11.0

 build.patch | 59 -----------------------------------------------------------
 yambar.spec |  8 +++-----
 2 files changed, 3 insertions(+), 64 deletions(-)
---
diff --git a/yambar.spec b/yambar.spec
index d47a3ae..a100bc7 100644
--- a/yambar.spec
+++ b/yambar.spec
@@ -1,12 +1,11 @@
 Summary:	Modular status panel for X11 and Wayland
 Name:		yambar
-Version:	1.10.0
-Release:	2
+Version:	1.11.0
+Release:	1
 License:	MIT
 Group:		Applications
 Source0:	https://codeberg.org/dnkl/yambar/archive/%{version}.tar.gz
-# Source0-md5:	30c6503f385f9b72562aa1dbba60358b
-Patch0:		build.patch
+# Source0-md5:	2cd1725479977b4132bdba8d3d3458de
 URL:		https://codeberg.org/dnkl/yambar/
 BuildRequires:	alsa-lib-devel
 BuildRequires:	bison
@@ -65,7 +64,6 @@ ZSH completion for yambar command line.
 
 %prep
 %setup -q -n %{name}
-%patch0 -p1
 
 %build
 %meson build
diff --git a/build.patch b/build.patch
deleted file mode 100644
index e802deb..0000000
--- a/build.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From e1fc3a0e29b608110f0965a19f35d85fb3df03e6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= <daniel at ekloef.se>
-Date: Fri, 14 Jul 2023 12:52:19 +0200
-Subject: [PATCH 1/2] =?UTF-8?q?tag:=20explicitly=20initialize=20=E2=80=98f?=
- =?UTF-8?q?mt=E2=80=99?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes the following compiler warning/error:
-
-  In file included from /usr/include/stdio.h:906,
-                   from ../tag.c:6:
-  In function ‘snprintf’,
-      inlined from ‘tags_expand_template’ at ../tag.c:708:13:
-  /usr/include/bits/stdio2.h:54:10: error: ‘fmt’ may be used uninitialized [-Werror=maybe-uninitialized]
-     54 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
-        |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-     55 |                                    __glibc_objsize (__s), __fmt,
-        |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-     56 |                                    __va_arg_pack ());
-        |                                    ~~~~~~~~~~~~~~~~~
-  ../tag.c: In function ‘tags_expand_template’:
-  ../tag.c:677:25: note: ‘fmt’ was declared here
-    677 |             const char *fmt;
-        |                         ^~~
-  cc1: all warnings being treated as errors
-
-Closes #311
----
- tag.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/tag.c b/tag.c
-index b098eb7..0f44d7e 100644
---- a/tag.c
-+++ b/tag.c
-@@ -674,7 +674,7 @@ tags_expand_template(const char *template, const struct tag_set *tags)
-             const long max = tag->max(tag);
-             long value = kind == VALUE_MIN ? min : max;
- 
--            const char *fmt;
-+            const char *fmt = NULL;
-             switch (format) {
-             case FMT_DEFAULT: fmt = zero_pad ? "%0*ld" : "%*ld"; break;
-             case FMT_HEX:     fmt = zero_pad ? "%0*lx" : "%*lx"; break;
-@@ -704,6 +704,8 @@ tags_expand_template(const char *template, const struct tag_set *tags)
-             }
-             }
- 
-+            assert(fmt != NULL);
-+
-             char str[24];
-             snprintf(str, sizeof(str), fmt, digits, value);
-             sbuf_append(&formatted, str);
--- 
-2.30.8
-
-
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/yambar.git/commitdiff/c30de202222fdbb3190bd3488fea6373a3f9ad78



More information about the pld-cvs-commit mailing list