public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/variety] rawhide: Rebuilt for Python 3.15
@ 2026-06-08  6:49 Martin Gansser
  0 siblings, 0 replies; 2+ messages in thread
From: Martin Gansser @ 2026-06-08  6:49 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/variety
Branch : rawhide
Commit : 7a9f7779b0fcbb5b625438101ff51652d24c860e
Author : Martin Gansser <mgansser@netcom-mail.de>
Date   : 2026-06-08T08:48:54+02:00
Stats  : +1/-42 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/variety/c/7a9f7779b0fcbb5b625438101ff51652d24c860e?branch=rawhide

Log:
Rebuilt for Python 3.15

---
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/variety-GExiv2.patch b/variety-GExiv2.patch
deleted file mode 100644
index f73a76d..0000000
--- a/variety-GExiv2.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- variety-0.9.0-b1/variety/Util.py.orig	2026-04-29 08:57:48.491047539 +0000
-+++ variety-0.9.0-b1/variety/Util.py	2026-04-29 08:58:44.648538839 +0000
-@@ -42,7 +42,17 @@
- 
- # fmt: off
- import gi  # isort:skip
--gi.require_version("GExiv2", "0.10")
-+
-+# Try newer GExiv2 versions first, fall back to older ones
-+for _ver in ("0.16", "0.14", "0.12", "0.10"):
-+    try:
-+        gi.require_version("GExiv2", _ver)
-+        break
-+    except ValueError:
-+        continue
-+else:
-+    raise ImportError("No compatible GExiv2 version found")
-+
- gi.require_version("PangoCairo", "1.0")
- gi.require_version('Gdk', '3.0')
- from gi.repository import Gdk, GdkPixbuf, GExiv2, Gio, GLib, Pango  # isort:skip
---- variety-0.9.0-b1/variety/data/ui/AddWallhavenDialog.ui.orig	2026-04-29 09:47:29.483566226 +0000
-+++ variety-0.9.0-b1/variety/data/ui/AddWallhavenDialog.ui	2026-04-29 09:48:01.561838941 +0000
-@@ -9,7 +9,7 @@
-     <property name="border_width">5</property>
-     <property name="title">Variety - Add Wallhaven.cc source</property>
-     <property name="default_width">960</property>
--    <property name="icon">../media/variety.svg</property>
-+    <property name="icon">/usr/share/variety/media/variety.svg</property>
-     <property name="type_hint">normal</property>
-     <child>
-       <placeholder/>

diff --git a/variety.spec b/variety.spec
index 1b9e872..c610a30 100644
--- a/variety.spec
+++ b/variety.spec
@@ -134,6 +134,7 @@ if [ -f debian/%{name}.1 ]; then
 fi
 
 rm -rf %{buildroot}%{python3_sitelib}/tests
+rm -rf %{buildroot}%{python3_sitelib}/po
 
 %find_lang %{name}
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [rpms/variety] rawhide: Rebuilt for Python 3.15
@ 2026-06-04 19:23 Python Maint
  0 siblings, 0 replies; 2+ messages in thread
From: Python Maint @ 2026-06-04 19:23 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/variety
Branch : rawhide
Commit : f92195d2c8d6884ea69d5a0d46c09214c87c0376
Author : Python Maint <python-maint@redhat.com>
Date   : 2026-06-04T21:23:28+02:00
Stats  : +5/-2 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/variety/c/f92195d2c8d6884ea69d5a0d46c09214c87c0376?branch=rawhide

Log:
Rebuilt for Python 3.15

---
diff --git a/variety.spec b/variety.spec
index dcfa994..1b9e872 100644
--- a/variety.spec
+++ b/variety.spec
@@ -11,10 +11,10 @@ Name:           variety
 %if 0%{?usesnapshot}
 #Release:        0.17%%{?snapshottag}%%{?dist}
 Version:        0.9.0
-Release:        0.2.beta1%{?dist}
+Release:        0.3.beta1%{?dist}
 %else
 Version:        0.9.0
-Release:        1%{?dist}
+Release:        2%{?dist}
 %endif
 Summary:        Wallpaper changer that automatically downloads wallpapers
 License:        GPL-3.0-only
@@ -158,6 +158,9 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/%{name}.appda
 %{_mandir}/man1/%{name}.1*
 
 %changelog
+* Thu Jun 04 2026 Python Maint <python-maint@redhat.com> - 0.9.0-2
+- Rebuilt for Python 3.15
+
 * Wed May 06 2026 Martin Gansser <martinkg@fedoraproject.org> - 0.9.0-1
 - Update to 0.9.0-1
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-06-08  6:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-08  6:49 [rpms/variety] rawhide: Rebuilt for Python 3.15 Martin Gansser
  -- strict thread matches above, loose matches on Subject: below --
2026-06-04 19:23 Python Maint

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox