Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wofi-pass for openSUSE:Factory checked in at 2023-01-24 19:43:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wofi-pass (Old) and /work/SRC/openSUSE:Factory/.wofi-pass.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wofi-pass" Tue Jan 24 19:43:12 2023 rev:2 rq:1060530 version:0.0~git.1646651169.572c0ef Changes: -------- --- /work/SRC/openSUSE:Factory/wofi-pass/wofi-pass.changes 2022-07-11 19:11:03.323753083 +0200 +++ /work/SRC/openSUSE:Factory/.wofi-pass.new.32243/wofi-pass.changes 2023-01-24 20:36:52.145791584 +0100 @@ -1,0 +2,9 @@ +Mon Jan 23 16:14:28 UTC 2023 - Matej Cepl <mc...@suse.com> + +- Recommends sway-branding-openSUSE and add sway-branding.patch + which uses the stylesheet it provides (it is not error for + wofi to point to non-existent stylesheet, so it is optional + dependency, and if somebody desires not to use openSUSEway + style, they are free to do so). + +------------------------------------------------------------------- New: ---- sway-branding.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wofi-pass.spec ++++++ --- /var/tmp/diff_new_pack.96dj1A/_old 2023-01-24 20:36:52.577793821 +0100 +++ /var/tmp/diff_new_pack.96dj1A/_new 2023-01-24 20:36:52.581793841 +0100 @@ -1,7 +1,7 @@ # # spec file for package wofi-pass # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,12 +24,16 @@ URL: https://gitlab.com/muhq/wofi-pass Source0: wofi-pass-%{version}.tar.gz Source99: wofi-pass-rpmlintrc +# PATCH-FEATURE-OPENSUSE sway-branding.patch mc...@suse.com +# Use branding stylesheet in /etc/wofi/style.css +Patch0: sway-branding.patch BuildRequires: /bin/bash BuildRequires: findutils BuildRequires: pass-otp BuildRequires: password-store BuildRequires: util-linux BuildRequires: wl-clipboard +Recommends: sway-branding BuildArch: noarch %description ++++++ sway-branding.patch ++++++ --- wofi-pass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/wofi-pass +++ b/wofi-pass @@ -91,7 +91,7 @@ fi cd "${PASSWORD_STORE_DIR:-$HOME/.password-store}" password_files="$(find . -name "*.gpg" | sed "s/^\.\/\(.*\)\.gpg$/\1/")" -password=$(printf '%s\n' "$password_files" | wofi --dmenu) +password=$(printf '%s\n' "$password_files" | wofi --dmenu --style=/etc/wofi/style.css) [ -n "$password" ] || exit if [ "$head" -eq 1 ]; then _pass_get "password" | $TYPE_CMD @@ -100,7 +100,7 @@ fi field_list="$(_parse_fields)" if [ "$autotype" -ne 1 ]; then - field=$(printf '%s\n' "$field_list" | wofi --dmenu) + field=$(printf '%s\n' "$field_list" | wofi --dmenu --style=/etc/wofi/style.css) if [ "$field" != "autotype" ]; then _pass_get "$field" | $TYPE_CMD exit