Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package waybar for openSUSE:Factory checked in at 2022-12-16 17:51:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/waybar (Old) and /work/SRC/openSUSE:Factory/.waybar.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "waybar" Fri Dec 16 17:51:36 2022 rev:41 rq:1043178 version:0.9.16 Changes: -------- --- /work/SRC/openSUSE:Factory/waybar/waybar.changes 2022-12-06 14:24:09.146024315 +0100 +++ /work/SRC/openSUSE:Factory/.waybar.new.1835/waybar.changes 2022-12-16 17:51:43.128039818 +0100 @@ -1,0 +2,6 @@ +Tue Dec 13 20:58:47 UTC 2022 - Filippo Bonazzi <filippo.bona...@suse.com> + +- Fix: actually use the date library dependency provided by hhdate + * add 0001-require-date-dependency.patch + +------------------------------------------------------------------- New: ---- 0001-require-date-dependency.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ waybar.spec ++++++ --- /var/tmp/diff_new_pack.It9Nkk/_old 2022-12-16 17:51:43.752043253 +0100 +++ /var/tmp/diff_new_pack.It9Nkk/_new 2022-12-16 17:51:43.756043275 +0100 @@ -25,6 +25,7 @@ URL: https://github.com/Alexays/Waybar Source0: %{name}-%{version}.tar.gz Patch0: 0000-replace-gethostbyname-getaddrinfo.patch +Patch1: 0001-require-date-dependency.patch BuildRequires: cmake %if 0%{?sle_version} >= 150400 BuildRequires: gcc11-c++ @@ -38,7 +39,7 @@ # test dependency BuildRequires: pkgconfig(catch2) >= 3.0 BuildRequires: sndio-devel >= 1.7.0 -# date module +# clock module BuildRequires: hhdate-devel # optional: man pages BuildRequires: scdoc ++++++ 0001-require-date-dependency.patch ++++++ diff --git a/meson.build b/meson.build index 9354ca8..e61ee70 100644 --- a/meson.build +++ b/meson.build @@ -120,7 +120,6 @@ gtk_layer_shell = dependency('gtk-layer-shell-0', fallback : ['gtk-layer-shell', 'gtk_layer_shell_dep']) systemd = dependency('systemd', required: get_option('systemd')) tz_dep = dependency('date', - required: false, default_options : [ 'use_system_tzdb=true' ], modules : [ 'date::date', 'date::date-tz' ], fallback: [ 'date', 'tz_dep' ])