Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package azote for openSUSE:Factory checked in at 2022-11-12 17:41:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/azote (Old) and /work/SRC/openSUSE:Factory/.azote.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "azote" Sat Nov 12 17:41:21 2022 rev:15 rq:1035298 version:1.9.7 Changes: -------- --- /work/SRC/openSUSE:Factory/azote/azote.changes 2022-11-02 12:48:02.897844205 +0100 +++ /work/SRC/openSUSE:Factory/.azote.new.1597/azote.changes 2022-11-12 17:41:43.498366526 +0100 @@ -1,0 +2,7 @@ +Fri Nov 11 16:00:22 UTC 2022 - Michael Vetter <mvet...@suse.com> + +- Update to 1.9.7: + * Fixed regression introduced in #166, that caused a mess in + the ./azotebg file. Closes #169. + +------------------------------------------------------------------- Old: ---- azote-1.9.6.tar.gz New: ---- azote-1.9.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ azote.spec ++++++ --- /var/tmp/diff_new_pack.siRwde/_old 2022-11-12 17:41:43.906368955 +0100 +++ /var/tmp/diff_new_pack.siRwde/_new 2022-11-12 17:41:43.914369003 +0100 @@ -18,7 +18,7 @@ %{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: azote -Version: 1.9.6 +Version: 1.9.7 Release: 0 Summary: Wallpaper manager for Sway, i3 and some other WMs License: GPL-3.0-only ++++++ azote-1.9.6.tar.gz -> azote-1.9.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azote-1.9.6/azote/main.py new/azote-1.9.7/azote/main.py --- old/azote-1.9.6/azote/main.py 2022-11-01 00:47:50.000000000 +0100 +++ new/azote-1.9.7/azote/main.py 2022-11-08 00:58:58.000000000 +0100 @@ -448,7 +448,6 @@ # Prepare, save and execute the shell script for swaybg. It'll be placed in ~/.azotebg for further use. batch_content = ['#!/usr/bin/env bash', 'pkill swaybg'] - outputs = [] for box in common.display_boxes_list: if box.color: # if a color chosen, the wallpaper won't appear @@ -463,8 +462,6 @@ else: display_name = box.display_name - outputs.append(display_name) - # Escape some special characters which would mess up the script wallpaper_path = box.wallpaper_path.replace('\\', '\\\\').replace("$", "\$").replace("`", "\\`").replace('"', @@ -489,18 +486,6 @@ entry = {"name": box.display_name, "path": box.wallpaper_path, "thumb": thumb} restore_from.append(entry) - # save to ~/.azotebg - if os.path.isfile(common.cmd_file): - with open(common.cmd_file, 'r') as f: - oldazotebg = f.readlines() - oldazotebg = [line.rstrip() for line in oldazotebg] - for item in oldazotebg.copy(): - for output in outputs: - if output in item: - oldazotebg.remove(item) - - batch_content = list(dict.fromkeys(batch_content + oldazotebg)) - with open(common.cmd_file, 'w') as f: # print(batch_content) for item in batch_content: @@ -606,7 +591,7 @@ dialog.set_keep_above(True) dialog.set_logo(logo) - dialog.set_copyright('(c) 2019-2020 Piotr Miller') + dialog.set_copyright('(c) 2019-2022 Piotr Miller') dialog.set_website('https://github.com/nwg-piotr/azote') dialog.set_comments(common.lang['app_desc']) dialog.set_license_type(Gtk.License.GPL_3_0) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/azote-1.9.6/setup.py new/azote-1.9.7/setup.py --- old/azote-1.9.6/setup.py 2022-11-01 00:47:50.000000000 +0100 +++ new/azote-1.9.7/setup.py 2022-11-08 00:58:58.000000000 +0100 @@ -8,7 +8,7 @@ setup( name='azote', - version='1.9.6', + version='1.9.7', description='Wallpaper manager for Sway, i3 and some other WMs', packages=['azote'], include_package_data=True,