From 63ede375f50f2eb865babb282e15f156d275f07d Mon Sep 17 00:00:00 2001 From: Martin Gansser Date: Sun, 1 May 2022 16:23:42 +0200 Subject: [PATCH 1/3] Update to 0.8.7 --- .gitignore | 1 + sources | 2 +- variety.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0efb3ba..efa8370 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /variety-0.8.4.tar.gz /variety-0.8.5.tar.gz /variety-0.8.6.tar.gz +/variety-0.8.7.tar.gz diff --git a/sources b/sources index f39e8d0..0c85851 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (variety-0.8.6.tar.gz) = 1fa86d07ebf52fbc301069a6fbd790f865e9e23f2628f1bf9f8148f3430b84e4878efe6bd13791f3e67c4bfe23d7f1f4409588babcdea98dc9fcf45e631f840b +SHA512 (variety-0.8.7.tar.gz) = d88c09b3f18ff74e67e845b748c08f1e7af8627c49285267869be62cf341de73e7967a1de5aa885202020d72daec7325689dba747fe42c3a1091bd2b4e129c80 diff --git a/variety.spec b/variety.spec index fdfb890..4d3d155 100644 --- a/variety.spec +++ b/variety.spec @@ -11,7 +11,7 @@ Name: variety Version: 0.8.6 Release: 0.1%{?snapshottag}%{?dist} %else -Version: 0.8.6 +Version: 0.8.7 Release: 1%{?dist} %endif Summary: Wallpaper changer that automatically downloads wallpapers @@ -124,6 +124,9 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg %changelog +* Sun May 01 2022 Martin Gansser - 0.8.7-1 +- Update to 0.8.7 + * Tue Apr 26 2022 Martin Gansser - 0.8.6-1 - Update to 0.8.6 From 34dbcf342745029e5023cb1e40695d5998545d1e Mon Sep 17 00:00:00 2001 From: Martin Gansser Date: Fri, 17 Jun 2022 15:09:00 +0200 Subject: [PATCH 2/3] Update to 0.8.8 --- .gitignore | 1 + Add_Dark_Wallpaper_Support_for_Gnome42.patch | 10 ---------- sources | 2 +- variety-0.6.4-fix_webkit_version.patch | 15 --------------- variety.spec | 11 ++++++++--- 5 files changed, 10 insertions(+), 29 deletions(-) delete mode 100644 Add_Dark_Wallpaper_Support_for_Gnome42.patch delete mode 100644 variety-0.6.4-fix_webkit_version.patch diff --git a/.gitignore b/.gitignore index efa8370..c687bae 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /variety-0.8.5.tar.gz /variety-0.8.6.tar.gz /variety-0.8.7.tar.gz +/variety-0.8.8.tar.gz diff --git a/Add_Dark_Wallpaper_Support_for_Gnome42.patch b/Add_Dark_Wallpaper_Support_for_Gnome42.patch deleted file mode 100644 index 696324c..0000000 --- a/Add_Dark_Wallpaper_Support_for_Gnome42.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- variety-0.8.5/data/scripts/set_wallpaper.orig 2022-03-26 16:35:24.387777235 +0100 -+++ variety-0.8.5/data/scripts/set_wallpaper 2022-03-26 16:36:32.911009155 +0100 -@@ -173,6 +173,7 @@ - - # GNOME Screensaver / Lock screen - thanks to George C. de Araujo for the patch - gsettings set org.gnome.desktop.screensaver picture-uri "file://$WP" 2> /dev/null -+gsettings set org.gnome.desktop.background picture-uri-dark "file://$WP" 2> /dev/null - if [ "$(gsettings get org.gnome.desktop.screensaver picture-options)" == "'none'" ]; then - gsettings set org.gnome.desktop.screensaver picture-options 'zoom' - fi diff --git a/sources b/sources index 0c85851..6fcd0b3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (variety-0.8.7.tar.gz) = d88c09b3f18ff74e67e845b748c08f1e7af8627c49285267869be62cf341de73e7967a1de5aa885202020d72daec7325689dba747fe42c3a1091bd2b4e129c80 +SHA512 (variety-0.8.8.tar.gz) = 87b6893450b2b7428fb54e92793acfb2a1523c147acc4d2c147e72ed6d8e89703466023437ae63fbbccdf5510fd07cd4535b05838bf455ef794785e6e9f1f8b2 diff --git a/variety-0.6.4-fix_webkit_version.patch b/variety-0.6.4-fix_webkit_version.patch deleted file mode 100644 index 0289833..0000000 --- a/variety-0.6.4-fix_webkit_version.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -up variety-0.6.4/variety/AddPanoramioDialog.py.fix_webkit_version variety-0.6.4/variety/AddPanoramioDialog.py ---- variety-0.6.4/variety/AddPanoramioDialog.py.fix_webkit_version 2017-08-21 12:43:51.512278896 +0200 -+++ variety-0.6.4/variety/AddPanoramioDialog.py 2017-08-21 13:55:36.305538659 +0200 -@@ -17,9 +17,9 @@ import json - - import logging - import gi --gi.require_version('WebKit', '3.0') -+gi.require_version('WebKit2', '4.0') - --from gi.repository import Gtk, WebKit, GObject # pylint: disable=E0611 -+from gi.repository import Gtk, WebKit2, GObject # pylint: disable=E0611 - from variety.Options import Options - from variety_lib.helpers import get_builder - from variety import _, _u diff --git a/variety.spec b/variety.spec index 4d3d155..b36fc20 100644 --- a/variety.spec +++ b/variety.spec @@ -9,15 +9,14 @@ Name: variety %if 0%{?usesnapshot} Version: 0.8.6 -Release: 0.1%{?snapshottag}%{?dist} +Release: 0.2%{?snapshottag}%{?dist} %else -Version: 0.8.7 +Version: 0.8.8 Release: 1%{?dist} %endif Summary: Wallpaper changer that automatically downloads wallpapers License: GPLv3 URL: https://github.com/varietywalls/variety -Patch0: Add_Dark_Wallpaper_Support_for_Gnome42.patch %if 0%{?usesnapshot} Source0: %{url}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz @@ -124,6 +123,12 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg %changelog +* Fri Jun 17 2022 Martin Gansser - 0.8.8-1 +- Update to 0.8.8 + +* Mon Jun 13 2022 Python Maint - 0.8.7-2 +- Rebuilt for Python 3.11 + * Sun May 01 2022 Martin Gansser - 0.8.7-1 - Update to 0.8.7 From 5e46a46fe675709cc93ef641f48306635f4cd546 Mon Sep 17 00:00:00 2001 From: Martin Gansser Date: Thu, 23 Jun 2022 21:24:09 +0200 Subject: [PATCH 3/3] Update to 0.8.9 --- .gitignore | 1 + sources | 2 +- variety.spec | 10 ++++++++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c687bae..520345c 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /variety-0.8.6.tar.gz /variety-0.8.7.tar.gz /variety-0.8.8.tar.gz +/variety-0.8.9.tar.gz diff --git a/sources b/sources index 6fcd0b3..3ea45c5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (variety-0.8.8.tar.gz) = 87b6893450b2b7428fb54e92793acfb2a1523c147acc4d2c147e72ed6d8e89703466023437ae63fbbccdf5510fd07cd4535b05838bf455ef794785e6e9f1f8b2 +SHA512 (variety-0.8.9.tar.gz) = d08cef8af509e576f861279d00e9a8ef2c737657c7609e2797ec126c92764acd133898300d9121939e7c359751be3868e11ba1398baaec72c842cc43c9cadf1b diff --git a/variety.spec b/variety.spec index b36fc20..2710f39 100644 --- a/variety.spec +++ b/variety.spec @@ -9,9 +9,9 @@ Name: variety %if 0%{?usesnapshot} Version: 0.8.6 -Release: 0.2%{?snapshottag}%{?dist} +Release: 0.3%{?snapshottag}%{?dist} %else -Version: 0.8.8 +Version: 0.8.9 Release: 1%{?dist} %endif Summary: Wallpaper changer that automatically downloads wallpapers @@ -123,6 +123,12 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg %changelog +* Thu Jun 23 2022 Martin Gansser - 0.8.9-1 +- Update to 0.8.9 + +* Fri Jun 17 2022 Python Maint - 0.8.8-2 +- Rebuilt for Python 3.11 + * Fri Jun 17 2022 Martin Gansser - 0.8.8-1 - Update to 0.8.8