Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package variety for openSUSE:Factory checked in at 2022-06-24 08:46:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/variety (Old) and /work/SRC/openSUSE:Factory/.variety.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "variety" Fri Jun 24 08:46:05 2022 rev:12 rq:984789 version:0.8.8 Changes: -------- --- /work/SRC/openSUSE:Factory/variety/variety.changes 2022-01-07 12:48:14.787923169 +0100 +++ /work/SRC/openSUSE:Factory/.variety.new.1548/variety.changes 2022-06-24 08:46:15.207202548 +0200 @@ -1,0 +2,38 @@ +Tue Jun 21 12:37:32 UTC 2022 - Simon Lees <sfl...@suse.de> + +- Update to 0.8.8 + * Feature #89: Added options to select fit size / wallpaper mode. + Added an image-dependent smart fit mode. + * Bugfix #519: Fix issues with autostart. + * Bugfix #534: Fix the fallback Wallhaven non-API downloading + mode used for some Wallhaven URLs. + * Bugfix #480: Improve image searching: Avoid deep/huge folders + causing Variety to ignore the other folders. +- From Previous releases + * Added a global switch to turn Internet connectivity for Variety + off or on + * Wallhaven sources now use the Wallhaven API, not html parsing + (Thanks to @nlpsuge). + * Support for fetching NSFW images from Wallhaven + (Thanks to @nlpsuge). + * When adding Wallhaven sources, you can provide your own Wallhaven + API key. If provided, and the source URL is set to search for NSFW + images, Variety will obey. + * Auto-upgrade set_wallpaper/get_wallpaper scripts. + * Starting from this release, Variety will always automatically + upgrade + * the set_wallpaper/get_wallpaper scripts to make sure fixes to + those are picked up. Your old files have been preserved in the + ~/.config/variety/scripts folder. + * If you need to use custom scripts, please set their paths in the + set_wallpaper_script/get_wallpaper_script properties + in ~/.config/variety/variety.conf. + * New source: National Geographic's photo of the day + (thanks to @TheLastZombie) + * New source: ArtStation (thanks to @denis-gordeev) + * Add support for Gnome's Dark style + * Change default font for quotes and clock to Serif for greater + compatibility + * Translation updates and bugfixes + +------------------------------------------------------------------- @@ -390 +427,0 @@ - Old: ---- variety-0.8.5.tar.gz New: ---- variety-0.8.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ variety.spec ++++++ --- /var/tmp/diff_new_pack.EL6p8q/_old 2022-06-24 08:46:15.775203184 +0200 +++ /var/tmp/diff_new_pack.EL6p8q/_new 2022-06-24 08:46:15.779203189 +0200 @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(AyatanaAppIndicator3\\) Name: variety -Version: 0.8.5 +Version: 0.8.8 Release: 0 Summary: Wallpaper changer License: GPL-3.0-only @@ -35,6 +35,7 @@ Patch1: variety-fix-data-path.patch BuildRequires: fdupes BuildRequires: gobject-introspection +BuildRequires: hicolor-icon-theme BuildRequires: intltool BuildRequires: python-rpm-macros BuildRequires: python3-devel @@ -83,15 +84,25 @@ # Create our own desktop file and remove the pre-installed version rm build/share/applications/%{name}.desktop cp %{SOURCE1} . -# Todo: Add support for FDO icon standard upstream +%if 0%{?suse_version} <= 1500 install -Dm0644 data/media/variety.svg %{buildroot}%{_datadir}/pixmaps/variety.svg +%endif cp VarietyIcons/* %{buildroot}%{_datadir}/variety/media/ %suse_update_desktop_file -i %{name} %fdupes -s %{buildroot} # Remove README.md as we install in %%doc rm -rf %{buildroot}%{_datadir}/doc/variety +# Not sure why Leap 15 doesn't pick up translations. +%if 0%{?suse_version} > 1500 +%find_lang variety +%endif + +%if 0%{?suse_version} > 1500 +%files -f variety.lang +%else %files +%endif %defattr(-,root,root) %doc AUTHORS README.md %license LICENSE @@ -103,7 +114,13 @@ %dir %{_datadir}/appdata %{_datadir}/appdata/variety.appdata.xml %{_datadir}/applications/%{name}.desktop +%if 0%{?suse_version} > 1500 +%{_datadir}/icons/hicolor/scalable/apps/variety.svg +%{_datadir}/icons/hicolor/22x22/apps/variety-indicator-dark.png +%{_datadir}/icons/hicolor/22x22/apps/variety-indicator.png +%else %{_datadir}/pixmaps/variety.svg +%endif %{_datadir}/%{name} %changelog ++++++ variety-0.8.5.tar.gz -> variety-0.8.8.tar.gz ++++++ ++++ 55160 lines of diff (skipped) ++++++ variety-fix-data-path.patch ++++++ --- /var/tmp/diff_new_pack.EL6p8q/_old 2022-06-24 08:46:16.091203538 +0200 +++ /var/tmp/diff_new_pack.EL6p8q/_new 2022-06-24 08:46:16.095203543 +0200 @@ -1,13 +1,14 @@ -diff -Naur a/variety_lib/varietyconfig.py b/variety_lib/varietyconfig.py ---- a/variety_lib/varietyconfig.py 2020-12-02 00:11:48.000000000 -0600 -+++ b/variety_lib/varietyconfig.py 2020-12-15 19:32:57.741172942 -0600 -@@ -21,7 +21,7 @@ +Index: variety-0.8.8/variety_lib/varietyconfig.py +=================================================================== +--- variety-0.8.8.orig/variety_lib/varietyconfig.py ++++ variety-0.8.8/variety_lib/varietyconfig.py +@@ -21,7 +21,7 @@ try: except ImportError: # Variety's data directory. This is set by setup.py for permanent installations, but defaults to ../data # for easy development / running from source. - __variety_data_directory__ = "../data" + __variety_data_directory__ = "/usr/share/variety" __license__ = "GPL-3" - __version__ = "0.8.5" + __version__ = "0.8.8"