From 0a0c057b6a47881e04d8b2e70518f9fc4535a787 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 1 Jun 2023 13:39:35 +0100 Subject: [PATCH 01/39] Update to 2.6.0 release --- sources | 2 +- watcher_fix_libexec.patch | 11 +++++++++++ xapps.spec | 14 +++++++++++--- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 watcher_fix_libexec.patch diff --git a/sources b/sources index bf3d136..ee56d2c 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.4.3.tar.gz) = ecfe97b5a6de6ef06416b3220dc30856c590087c22b77ba2078194995650966e7811a91b3ce6335b363ea5066473d5c59a318232e40a2311341067dcee4719b2 +SHA512 (xapps-2.6.0.tar.gz) = 77974e1402fb7d763c4f8ca827ab7f4d5be854a2c6f168f412bd43ee30704d320057a1be1227f6c631416de310282ef6e3f01450fcc71ef55c7cdc251e620451 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/watcher_fix_libexec.patch b/watcher_fix_libexec.patch new file mode 100644 index 0000000..305c5b1 --- /dev/null +++ b/watcher_fix_libexec.patch @@ -0,0 +1,11 @@ +--- b/meson.build ++++ a/meson.build +@@ -10,7 +10,7 @@ i18n = import('i18n') + + dbus_services_dir = dependency('dbus-1').get_pkgconfig_variable('session_bus_services_dir', + define_variable: ['datadir', get_option('datadir')]) +-sn_watcher_dir = join_paths(get_option('prefix'), get_option('libdir'), 'xapps') ++sn_watcher_dir = join_paths(get_option('prefix'), get_option('libexecdir'), 'xapps') + + cdata = configuration_data() + cdata.set_quoted('GETTEXT_PACKAGE', 'xapp') diff --git a/xapps.spec b/xapps.spec index a6a2636..f2247be 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.4.3 +Version: 2.6.0 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -7,6 +7,7 @@ License: LGPLv2+ URL: https://github.com/linuxmint/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.2.tar.xz +Patch0: watcher_fix_libexec.patch ExcludeArch: %{ix86} @@ -30,6 +31,7 @@ Recommends: inxi Requires: python3-xapps-overrides%{?_isa} = %{version}-%{release} Requires: xdg-utils Requires: xorg-x11-xinit +Suggests: switcheroo-control Obsoletes: python2-xapps-overrides < %{version}-%{release} %description @@ -70,7 +72,9 @@ Python%{python3_version} files for XApp apps. %autosetup -p1 -n xapp-%{version} %build -%meson -D deprecated_warnings=false +%meson \ + --buildtype=debugoptimized \ + -D deprecated_warnings=false %meson_build %install @@ -92,12 +96,13 @@ rm %{buildroot}%{_datadir}/format %{_sysconfdir}/X11/xinit/xinitrc.d/80xapp-gtk3-module.sh %{_bindir}/pastebin %{_bindir}/upload-system-info +%{_bindir}/xapp-gpu-offload %{_bindir}/xfce4-set-wallpaper %{_libdir}/libxapp.so.* %{_libdir}/girepository-1.0/XApp-1.0.typelib %{_libdir}/gtk-3.0/modules/libxapp-gtk3-module.so %dir %{_libexecdir}/xapps/ -%{_libexecdir}/xapps/sn-watcher/ +%{_libexecdir}/xapps/xapp-sn-watcher %{_datadir}/dbus-1/services/org.x.StatusNotifierWatcher.service %{_datadir}/iso-flag-png/ %{_datadir}/glib-2.0/schemas/org.x.apps.*.xml @@ -122,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Thu Jun 01 2023 Leigh Scott - 2.6.0-1 +- Update to 2.6.0 release + * Wed Mar 29 2023 Leigh Scott - 2.4.3-1 - Update to 2.4.3 release From 1b1828d474bea135e08d8ad8d7f924e26c5141a6 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Fri, 2 Jun 2023 23:46:00 +0100 Subject: [PATCH 02/39] Use recommends switcheroo-control --- xapps.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xapps.spec b/xapps.spec index f2247be..cd4925b 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPLv2+ @@ -31,7 +31,7 @@ Recommends: inxi Requires: python3-xapps-overrides%{?_isa} = %{version}-%{release} Requires: xdg-utils Requires: xorg-x11-xinit -Suggests: switcheroo-control +Recommends: switcheroo-control Obsoletes: python2-xapps-overrides < %{version}-%{release} %description @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Jun 02 2023 Leigh Scott - 2.6.0-2 +- Use recommends switcheroo-control + * Thu Jun 01 2023 Leigh Scott - 2.6.0-1 - Update to 2.6.0 release From e7eb9cc4c78c71dc5aac1568ba61289bc4ed4d1b Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 8 Jun 2023 12:11:26 +0100 Subject: [PATCH 03/39] Update to 2.6.1 release --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index ee56d2c..7c6bd02 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.6.0.tar.gz) = 77974e1402fb7d763c4f8ca827ab7f4d5be854a2c6f168f412bd43ee30704d320057a1be1227f6c631416de310282ef6e3f01450fcc71ef55c7cdc251e620451 +SHA512 (xapps-2.6.1.tar.gz) = f96006fffac67b312caba644e8da75209c443688b08254b9bb5b17eb9148e66b35a8b1fe336e8880c7b950f8fc696884d8f5d610092c2cb44357ad3bf3ef43c7 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index cd4925b..c065650 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.6.0 -Release: 2%{?dist} +Version: 2.6.1 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPLv2+ @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Thu Jun 08 2023 Leigh Scott - 2.6.1-1 +- Update to 2.6.1 release + * Fri Jun 02 2023 Leigh Scott - 2.6.0-2 - Use recommends switcheroo-control From 144c7f8a65512c2fdf3a651ac320c15e31b14ed9 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 15 Jun 2023 17:00:44 +0200 Subject: [PATCH 04/39] Rebuilt for Python 3.12 --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index c065650..ce81640 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPLv2+ @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Thu Jun 15 2023 Python Maint - 2.6.1-2 +- Rebuilt for Python 3.12 + * Thu Jun 08 2023 Leigh Scott - 2.6.1-1 - Update to 2.6.1 release From bbcce6a14f234c74e8d2b17a4f7edf285ed047a9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:30:26 +0000 Subject: [PATCH 05/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index ce81640..2c5a1c3 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPLv2+ @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jun 15 2023 Python Maint - 2.6.1-2 - Rebuilt for Python 3.12 From 80b707ae4a5c021ebea8f13db844e639e80afdcd Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 25 Jul 2023 19:28:07 +0100 Subject: [PATCH 06/39] Fix meld issue --- ...496c3f909458c0b8035048ae7671b760577f.patch | 60 +++++++++++++++++++ xapps.spec | 8 ++- 2 files changed, 66 insertions(+), 2 deletions(-) create mode 100644 8570496c3f909458c0b8035048ae7671b760577f.patch diff --git a/8570496c3f909458c0b8035048ae7671b760577f.patch b/8570496c3f909458c0b8035048ae7671b760577f.patch new file mode 100644 index 0000000..0c6f4d7 --- /dev/null +++ b/8570496c3f909458c0b8035048ae7671b760577f.patch @@ -0,0 +1,60 @@ +From 8570496c3f909458c0b8035048ae7671b760577f Mon Sep 17 00:00:00 2001 +From: Michael Webster +Date: Tue, 25 Jul 2023 12:02:36 -0400 +Subject: [PATCH] xapp-gtk3-module.c: Use the 'realize' signal to trigger + injecting the favorites:// uri into the sidebar places. + +It's not important where this occurs, but doing it during the +GtkPlacesSidebar constructed vfunc now causes a deadlock in the +dconf engine between the GSettings instance for favorites, and +the one for GtkFileChooserWidget settings, created during its +construction. + +I've been unable to determine any particular commit that may be +to blame, between gtk, gio, meld and dconf, and I'm unable to +reproduce this anywhere but in Meld thus far. + +The 'realize' signal is sent after widget construction so is +safely outside the template machinery. + +Fixes #171. +--- + libxapp/xapp-gtk3-module.c | 14 ++++++++++---- + 1 file changed, 10 insertions(+), 4 deletions(-) + +diff --git a/libxapp/xapp-gtk3-module.c b/libxapp/xapp-gtk3-module.c +index 5e93b30..9939201 100644 +--- a/libxapp/xapp-gtk3-module.c ++++ b/libxapp/xapp-gtk3-module.c +@@ -24,14 +24,12 @@ static void (* original_window_realize) (GtkWidget *widget); + static void (* original_window_unrealize) (GtkWidget *widget); + + static void +-xapp_sidebar_constructed (GObject *object) ++on_sidebar_realized (GtkWidget *widget, gpointer data) + { +- GtkPlacesSidebar *sidebar = GTK_PLACES_SIDEBAR (object); ++ GtkPlacesSidebar *sidebar = GTK_PLACES_SIDEBAR (widget); + GSettings *fav_settings; + gchar **list; + +- (* original_sidebar_constructed) (object); +- + // This is better than initializing favorites to count. + // That way if there aren't any favorites, fav_settings + // will go away. XAppFavorites is a singleton. +@@ -47,6 +45,14 @@ xapp_sidebar_constructed (GObject *object) + + g_strfreev (list); + g_object_unref (fav_settings); ++ g_signal_handlers_disconnect_by_func (widget, on_sidebar_realized, NULL); ++} ++ ++static void ++xapp_sidebar_constructed (GObject *object) ++{ ++ (* original_sidebar_constructed) (object); ++ g_signal_connect (object, "realize", G_CALLBACK (on_sidebar_realized), NULL); + } + + static void diff --git a/xapps.spec b/xapps.spec index 2c5a1c3..c93363c 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,13 +1,14 @@ Name: xapps Version: 2.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common files for XApp desktop apps -License: LGPLv2+ +License: LGPL-3.0-only URL: https://github.com/linuxmint/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.2.tar.xz Patch0: watcher_fix_libexec.patch +Patch1: %{url}/commit/8570496c3f909458c0b8035048ae7671b760577f.patch ExcludeArch: %{ix86} @@ -127,6 +128,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Jul 25 2023 Leigh Scott - 2.6.1-4 +- Fix meld issue + * Sat Jul 22 2023 Fedora Release Engineering - 2.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 76a37dcfd6dd5badba0c74145e0a7ca46958a3df Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 25 Nov 2023 14:36:45 +0000 Subject: [PATCH 07/39] Update to 2.8.0 release --- ...496c3f909458c0b8035048ae7671b760577f.patch | 60 ------------------- sources | 2 +- watcher_fix_libexec.patch | 7 ++- xapps.spec | 8 ++- 4 files changed, 10 insertions(+), 67 deletions(-) delete mode 100644 8570496c3f909458c0b8035048ae7671b760577f.patch diff --git a/8570496c3f909458c0b8035048ae7671b760577f.patch b/8570496c3f909458c0b8035048ae7671b760577f.patch deleted file mode 100644 index 0c6f4d7..0000000 --- a/8570496c3f909458c0b8035048ae7671b760577f.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 8570496c3f909458c0b8035048ae7671b760577f Mon Sep 17 00:00:00 2001 -From: Michael Webster -Date: Tue, 25 Jul 2023 12:02:36 -0400 -Subject: [PATCH] xapp-gtk3-module.c: Use the 'realize' signal to trigger - injecting the favorites:// uri into the sidebar places. - -It's not important where this occurs, but doing it during the -GtkPlacesSidebar constructed vfunc now causes a deadlock in the -dconf engine between the GSettings instance for favorites, and -the one for GtkFileChooserWidget settings, created during its -construction. - -I've been unable to determine any particular commit that may be -to blame, between gtk, gio, meld and dconf, and I'm unable to -reproduce this anywhere but in Meld thus far. - -The 'realize' signal is sent after widget construction so is -safely outside the template machinery. - -Fixes #171. ---- - libxapp/xapp-gtk3-module.c | 14 ++++++++++---- - 1 file changed, 10 insertions(+), 4 deletions(-) - -diff --git a/libxapp/xapp-gtk3-module.c b/libxapp/xapp-gtk3-module.c -index 5e93b30..9939201 100644 ---- a/libxapp/xapp-gtk3-module.c -+++ b/libxapp/xapp-gtk3-module.c -@@ -24,14 +24,12 @@ static void (* original_window_realize) (GtkWidget *widget); - static void (* original_window_unrealize) (GtkWidget *widget); - - static void --xapp_sidebar_constructed (GObject *object) -+on_sidebar_realized (GtkWidget *widget, gpointer data) - { -- GtkPlacesSidebar *sidebar = GTK_PLACES_SIDEBAR (object); -+ GtkPlacesSidebar *sidebar = GTK_PLACES_SIDEBAR (widget); - GSettings *fav_settings; - gchar **list; - -- (* original_sidebar_constructed) (object); -- - // This is better than initializing favorites to count. - // That way if there aren't any favorites, fav_settings - // will go away. XAppFavorites is a singleton. -@@ -47,6 +45,14 @@ xapp_sidebar_constructed (GObject *object) - - g_strfreev (list); - g_object_unref (fav_settings); -+ g_signal_handlers_disconnect_by_func (widget, on_sidebar_realized, NULL); -+} -+ -+static void -+xapp_sidebar_constructed (GObject *object) -+{ -+ (* original_sidebar_constructed) (object); -+ g_signal_connect (object, "realize", G_CALLBACK (on_sidebar_realized), NULL); - } - - static void diff --git a/sources b/sources index 7c6bd02..3a6aad1 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.6.1.tar.gz) = f96006fffac67b312caba644e8da75209c443688b08254b9bb5b17eb9148e66b35a8b1fe336e8880c7b950f8fc696884d8f5d610092c2cb44357ad3bf3ef43c7 +SHA512 (xapps-2.8.0.tar.gz) = 2c208f3b04ad19033f0be4cc15d35f473f2df67a4d10ee17dbdc2ba8f243383fe1b6e62c85169389c4b641be5f2c07374aeff13d6c9ac443395e31a41c0b31a1 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/watcher_fix_libexec.patch b/watcher_fix_libexec.patch index 305c5b1..baa3406 100644 --- a/watcher_fix_libexec.patch +++ b/watcher_fix_libexec.patch @@ -1,11 +1,12 @@ --- b/meson.build +++ a/meson.build -@@ -10,7 +10,7 @@ i18n = import('i18n') +@@ -11,7 +11,7 @@ - dbus_services_dir = dependency('dbus-1').get_pkgconfig_variable('session_bus_services_dir', - define_variable: ['datadir', get_option('datadir')]) + dbus_services_dir = dependency('dbus-1').get_variable(pkgconfig: 'session_bus_services_dir', + pkgconfig_define: ['datadir', get_option('datadir')]) -sn_watcher_dir = join_paths(get_option('prefix'), get_option('libdir'), 'xapps') +sn_watcher_dir = join_paths(get_option('prefix'), get_option('libexecdir'), 'xapps') cdata = configuration_data() cdata.set_quoted('GETTEXT_PACKAGE', 'xapp') + diff --git a/xapps.spec b/xapps.spec index c93363c..e3d8612 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.6.1 -Release: 4%{?dist} +Version: 2.8.0 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -8,7 +8,6 @@ URL: https://github.com/linuxmint/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.2.tar.xz Patch0: watcher_fix_libexec.patch -Patch1: %{url}/commit/8570496c3f909458c0b8035048ae7671b760577f.patch ExcludeArch: %{ix86} @@ -128,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Nov 25 2023 Leigh Scott - 2.8.0-1 +- Update to 2.8.0 release + * Tue Jul 25 2023 Leigh Scott - 2.6.1-4 - Fix meld issue From c39bd7eb9d4a6d25fecb6d6a723e12e1046c7c6c Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 5 Dec 2023 07:33:03 +0000 Subject: [PATCH 08/39] Update to 2.8.1 release --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 3a6aad1..a896bf1 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.0.tar.gz) = 2c208f3b04ad19033f0be4cc15d35f473f2df67a4d10ee17dbdc2ba8f243383fe1b6e62c85169389c4b641be5f2c07374aeff13d6c9ac443395e31a41c0b31a1 +SHA512 (xapps-2.8.1.tar.gz) = 3a028cae14b7486c636d4bf92fa524c111d8cdee6e6a3449b2427855a32deaa201f790937010e06d63914448dd1736716d9e2a2dabb15b61608edc1740853459 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index e3d8612..bc8273c 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.8.0 +Version: 2.8.1 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Dec 05 2023 Leigh Scott - 2.8.1-1 +- Update to 2.8.1 release + * Sat Nov 25 2023 Leigh Scott - 2.8.0-1 - Update to 2.8.0 release From 8abdeb9f3a0acca7b2f1ab779e5c0b23e69cbcb9 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Thu, 4 Jan 2024 18:32:23 +0000 Subject: [PATCH 09/39] Update to 2.8.2 release --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index a896bf1..ff1f5de 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.1.tar.gz) = 3a028cae14b7486c636d4bf92fa524c111d8cdee6e6a3449b2427855a32deaa201f790937010e06d63914448dd1736716d9e2a2dabb15b61608edc1740853459 +SHA512 (xapps-2.8.2.tar.gz) = 97d19b95626a37fc08a0a159be741de5d9bcc034484e977bd739b91bd37122fcf2f3479285d544282a92c8fa180b116db1ad5e96fe19284c62287d3c5b135163 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index bc8273c..5377bee 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Thu Jan 04 2024 Leigh Scott - 2.8.2-1 +- Update to 2.8.2 release + * Tue Dec 05 2023 Leigh Scott - 2.8.1-1 - Update to 2.8.1 release From ad59c824bffa2f083851ce3f7ca1225ef80acd1b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:18:57 +0000 Subject: [PATCH 10/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index 5377bee..c5b2448 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Jan 04 2024 Leigh Scott - 2.8.2-1 - Update to 2.8.2 release From bb495f7ad8b09bb5e97c032da945daad34302447 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 26 Mar 2024 08:52:44 +0000 Subject: [PATCH 11/39] Fix buildrequires --- xapps.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xapps.spec b/xapps.spec index c5b2448..fba8a81 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -21,7 +21,7 @@ BuildRequires: libdbusmenu-gtk3-devel BuildRequires: libX11-devel BuildRequires: libgnomekbd-devel BuildRequires: meson -BuildRequires: pygobject3-devel +BuildRequires: python3-gobject-devel BuildRequires: vala Requires: fpaste @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Mar 26 2024 Leigh Scott - 2.8.2-3 +- Fix buildrequires + * Sat Jan 27 2024 Fedora Release Engineering - 2.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 148d2eb6470dd99f4aa9f36e874543788e1ec1c1 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 4 Jun 2024 17:35:48 +0100 Subject: [PATCH 12/39] Update to 2.8.3 --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index ff1f5de..d746191 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.2.tar.gz) = 97d19b95626a37fc08a0a159be741de5d9bcc034484e977bd739b91bd37122fcf2f3479285d544282a92c8fa180b116db1ad5e96fe19284c62287d3c5b135163 +SHA512 (xapps-2.8.3.tar.gz) = 593a887f4fcaac40f2981da60073a3ed518a1636f4318ce862ec1dc992030e85bf48eada95e4f3ac999ec8a51be57b336d5143e912a174f1cc09cd0c5cb20b49 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index fba8a81..c85b062 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.8.2 -Release: 3%{?dist} +Version: 2.8.3 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Jun 04 2024 Leigh Scott - 2.8.3-1 +- Update to 2.8.3 + * Tue Mar 26 2024 Leigh Scott - 2.8.2-3 - Fix buildrequires From 6d20fd1514226422a2caf494c05099db110b9b89 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 7 Jun 2024 14:12:28 +0200 Subject: [PATCH 13/39] Rebuilt for Python 3.13 --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index c85b062..d199b9e 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Jun 07 2024 Python Maint - 2.8.3-2 +- Rebuilt for Python 3.13 + * Tue Jun 04 2024 Leigh Scott - 2.8.3-1 - Update to 2.8.3 From 8090d24e54c3526e89feda7e11ee20500ddb525d Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 18 Jun 2024 23:32:28 +0100 Subject: [PATCH 14/39] Update to 2.8.4 --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index d746191..65a4b21 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.3.tar.gz) = 593a887f4fcaac40f2981da60073a3ed518a1636f4318ce862ec1dc992030e85bf48eada95e4f3ac999ec8a51be57b336d5143e912a174f1cc09cd0c5cb20b49 +SHA512 (xapps-2.8.4.tar.gz) = a32c73f14d016328bf023fad36d72cb4262667d56c2545f7fac44bce61d01a1055bfc64d5e17ef80cad6b04ede7471519bdc77a9b2d293aa95096027eed2df7a SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index d199b9e..0e68da0 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.8.3 -Release: 2%{?dist} +Version: 2.8.4 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -127,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Jun 18 2024 Leigh Scott - 2.8.4-1 +- Update to 2.8.4 + * Fri Jun 07 2024 Python Maint - 2.8.3-2 - Rebuilt for Python 3.13 From 0f031b1931f3609051efe6aa64abb485638bc665 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sun, 7 Jul 2024 17:11:35 +0100 Subject: [PATCH 15/39] Fix build requires --- xapps.spec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xapps.spec b/xapps.spec index 0e68da0..9919cd8 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -22,6 +22,7 @@ BuildRequires: libX11-devel BuildRequires: libgnomekbd-devel BuildRequires: meson BuildRequires: python3-gobject-devel +BuildRequires: python3-rpm-macros BuildRequires: vala Requires: fpaste @@ -58,10 +59,6 @@ Summary: Python%{python3_version} files for %{name} Requires: python3-gobject-base%{?_isa} Requires: %{name}%{?_isa} = %{version}-%{release} - -BuildRequires: python3-devel -BuildRequires: python3-gobject - Provides: python3-xapps-overrides = %{version}-%{release} Provides: python3-xapps-overrides%{?_isa} = %{version}-%{release} @@ -127,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sun Jul 07 2024 Leigh Scott - 2.8.4-2 +- Fix build requires + * Tue Jun 18 2024 Leigh Scott - 2.8.4-1 - Update to 2.8.4 From bf7b593431278cd29c91bfdf585334f0329cfcb0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:41:49 +0000 Subject: [PATCH 16/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index 9919cd8..4ae8700 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Jul 07 2024 Leigh Scott - 2.8.4-2 - Fix build requires From 3bb9e697070bddc327504a80ba71691d5936a1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 22 Jul 2024 22:17:36 +0200 Subject: [PATCH 17/39] BuildRequire python3-devel to produce correct automated RPM Requires See https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_buildrequire_python3_devel python3-xapps-overrides-2.8.4-1.fc41.x86_64 Required python(abi) = 3.13 python3-xapps-overrides-2.8.4-3.fc41.x86_64 no longer Required python(abi) = 3.13 This was caused by 0f031b1931f3609051efe6aa64abb485638bc665 The package MUST Require python(abi) = 3.13 because it installs to /usr/lib64/python3.13/site-packages/ --- xapps.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xapps.spec b/xapps.spec index 4ae8700..17dea35 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -22,7 +22,7 @@ BuildRequires: libX11-devel BuildRequires: libgnomekbd-devel BuildRequires: meson BuildRequires: python3-gobject-devel -BuildRequires: python3-rpm-macros +BuildRequires: python3-devel BuildRequires: vala Requires: fpaste @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Mon Jul 22 2024 Miro Hrončok - 2.8.4-4 +- Ensure python3-xapps-overrides Requires correct python(abi) + * Sat Jul 20 2024 Fedora Release Engineering - 2.8.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From ee75d1636b262e01b4c8a27a13eef4c77a6c89f1 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 22 Jul 2024 22:00:40 +0100 Subject: [PATCH 18/39] Update to 2.8.5 --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 65a4b21..e7faeff 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.4.tar.gz) = a32c73f14d016328bf023fad36d72cb4262667d56c2545f7fac44bce61d01a1055bfc64d5e17ef80cad6b04ede7471519bdc77a9b2d293aa95096027eed2df7a +SHA512 (xapps-2.8.5.tar.gz) = 133a01309f0bc33a0aa73ee86eb8900573b4ab5b84e9e503b04b246448bce0b05880403288a739c5e252a2276311afba86c9c687887dd6e8c528734e328c6ee7 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 17dea35..7dfeb5d 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.8.4 -Release: 4%{?dist} +Version: 2.8.5 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Mon Jul 22 2024 Leigh Scott - 2.8.5-1 +- Update to 2.8.5 + * Mon Jul 22 2024 Miro Hrončok - 2.8.4-4 - Ensure python3-xapps-overrides Requires correct python(abi) From bcf3447481d874bc35258845fa1a5b1d5f04b177 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 25 Nov 2024 14:27:13 +0000 Subject: [PATCH 19/39] Update to 2.8.6 --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index e7faeff..3a329d4 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.5.tar.gz) = 133a01309f0bc33a0aa73ee86eb8900573b4ab5b84e9e503b04b246448bce0b05880403288a739c5e252a2276311afba86c9c687887dd6e8c528734e328c6ee7 +SHA512 (xapps-2.8.6.tar.gz) = f287c5ea40ae1b3825c085ded2f094d2f068930b36a8cec38b62fd8b8bebe0abe132a3c65a508e5a3caf2810e727e905cae639afb70dcfa29e30141b3dc99b29 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 7dfeb5d..7793ef5 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.8.5 +Version: 2.8.6 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Mon Nov 25 2024 Leigh Scott - 2.8.6-1 +- Update to 2.8.6 + * Mon Jul 22 2024 Leigh Scott - 2.8.5-1 - Update to 2.8.5 From 58911aceb8b9455ffdeab02dc6244bfc7956248c Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Fri, 6 Dec 2024 13:12:52 +0000 Subject: [PATCH 20/39] Update to 2.8.7 --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 3a329d4..4fd71b4 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.6.tar.gz) = f287c5ea40ae1b3825c085ded2f094d2f068930b36a8cec38b62fd8b8bebe0abe132a3c65a508e5a3caf2810e727e905cae639afb70dcfa29e30141b3dc99b29 +SHA512 (xapps-2.8.7.tar.gz) = c8b83ca70a38d4d84dd00a8e5795649443aa34e683055da8cdd4e0ffa5458fa7597c5119c9515034fd02ce6f730dce717c18400e4e2d4a15cef42c44cb7dc969 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 7793ef5..11b50c3 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.8.6 +Version: 2.8.7 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Dec 06 2024 Leigh Scott - 2.8.7-1 +- Update to 2.8.7 + * Mon Nov 25 2024 Leigh Scott - 2.8.6-1 - Update to 2.8.6 From 5cbb4f2daa97ddf4d52ba5dd1866db03e466843b Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Mon, 6 Jan 2025 15:15:24 +0000 Subject: [PATCH 21/39] Update to 2.8.8 --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 4fd71b4..bb76d6a 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.7.tar.gz) = c8b83ca70a38d4d84dd00a8e5795649443aa34e683055da8cdd4e0ffa5458fa7597c5119c9515034fd02ce6f730dce717c18400e4e2d4a15cef42c44cb7dc969 +SHA512 (xapps-2.8.8.tar.gz) = 0c876d0fa59da10fd079d3c38879ace398dbe99a6351a5437b60c87c2c339799f5228260653d9c03b8efab8c310519fc7edba5eca8f571e683bf06b7aee88403 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 11b50c3..ef0eecd 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 2.8.7 +Version: 2.8.8 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Mon Jan 06 2025 Leigh Scott - 2.8.8-1 +- Update to 2.8.8 + * Fri Dec 06 2024 Leigh Scott - 2.8.7-1 - Update to 2.8.7 From 60076ef4a08a5a4b1c23228d052b75ccd0625bcb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:24:40 +0000 Subject: [PATCH 22/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index ef0eecd..cc390fc 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2.8.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Mon Jan 06 2025 Leigh Scott - 2.8.8-1 - Update to 2.8.8 From 7e529d6f158bce7b445766c10342c0003c03f858 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 14:09:01 +0200 Subject: [PATCH 23/39] Rebuilt for Python 3.14 --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index cc390fc..ea6aba8 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Jun 03 2025 Python Maint - 2.8.8-3 +- Rebuilt for Python 3.14 + * Sun Jan 19 2025 Fedora Release Engineering - 2.8.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 6296a7a32caec9371e6146c716313fe3bcf329eb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:37:13 +0000 Subject: [PATCH 24/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index ea6aba8..bd9ffb1 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.8.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jun 03 2025 Python Maint - 2.8.8-3 - Rebuilt for Python 3.14 From 4db1d6dd59c3b477039e815bf447a40ddfaed823 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 15:23:08 +0200 Subject: [PATCH 25/39] Rebuilt for Python 3.14.0rc2 bytecode --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index bd9ffb1..8572cff 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Aug 15 2025 Python Maint - 2.8.8-5 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 2.8.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 540cb212369b450da4e98b9a505542580d4a2b94 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 15:03:36 +0200 Subject: [PATCH 26/39] Rebuilt for Python 3.14.0rc3 bytecode --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index 8572cff..4cfa2fe 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 2.8.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Sep 19 2025 Python Maint - 2.8.8-6 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 2.8.8-5 - Rebuilt for Python 3.14.0rc2 bytecode From 7784f7d95398733acbef27602f720c5cfbd092f4 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 12 Nov 2025 15:13:14 +0000 Subject: [PATCH 27/39] Update to 3.2.0 --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index bb76d6a..dd651b7 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-2.8.8.tar.gz) = 0c876d0fa59da10fd079d3c38879ace398dbe99a6351a5437b60c87c2c339799f5228260653d9c03b8efab8c310519fc7edba5eca8f571e683bf06b7aee88403 +SHA512 (xapps-3.2.0.tar.gz) = 5a573a1ed2c502a0713743837827a35515f9448bb0160ca365c44ceaeca89dc78c87a7c822d2286a9cd898926daf124fdd763c6a2a9c22fd8526a64182e18f81 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 4cfa2fe..2a8063f 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps -Version: 2.8.8 -Release: 6%{?dist} +Version: 3.2.0 +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Wed Nov 12 2025 Leigh Scott - 3.2.0-1 +- Update to 3.2.0 + * Fri Sep 19 2025 Python Maint - 2.8.8-6 - Rebuilt for Python 3.14.0rc3 bytecode From 9d6f9d958256c01a33728313e713a998c1978a08 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 13 Dec 2025 10:16:17 +0000 Subject: [PATCH 28/39] Update to 3.2.1 --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index dd651b7..5f8d35d 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-3.2.0.tar.gz) = 5a573a1ed2c502a0713743837827a35515f9448bb0160ca365c44ceaeca89dc78c87a7c822d2286a9cd898926daf124fdd763c6a2a9c22fd8526a64182e18f81 +SHA512 (xapps-3.2.1.tar.gz) = 7850a161387014352f94d210db723ef47e058d506f8c2bac238448287c29e84a68a11f395691dd0b22deb20fdec1bcacb3b9316667be87e15e7bbed338797673 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 2a8063f..4599a04 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 3.2.0 +Version: 3.2.1 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Dec 13 2025 Leigh Scott - 3.2.1-1 +- Update to 3.2.1 + * Wed Nov 12 2025 Leigh Scott - 3.2.0-1 - Update to 3.2.0 From b6d9d6e1eb40f67d59534b94c412ec49413642db Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Fri, 9 Jan 2026 13:42:01 +0000 Subject: [PATCH 29/39] Update to 3.2.2 --- sources | 2 +- xapps.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 5f8d35d..52d2aa5 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-3.2.1.tar.gz) = 7850a161387014352f94d210db723ef47e058d506f8c2bac238448287c29e84a68a11f395691dd0b22deb20fdec1bcacb3b9316667be87e15e7bbed338797673 +SHA512 (xapps-3.2.2.tar.gz) = 7b624e456d390073fad0f22184d2b79dfef39666c9ab3a117117ba98c89f2deb0594e017f8fb5c34debbc9bdd144b63145b930187093bd6ef72e9a013b37d798 SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 4599a04..fe45199 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,5 +1,5 @@ Name: xapps -Version: 3.2.1 +Version: 3.2.2 Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Jan 09 2026 Leigh Scott - 3.2.2-1 +- Update to 3.2.2 + * Sat Dec 13 2025 Leigh Scott - 3.2.1-1 - Update to 3.2.1 From 483e3dab78eae661f21e82564c2e68319f4aee6e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:27:02 +0000 Subject: [PATCH 30/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index fe45199..12142ee 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,6 +1,6 @@ Name: xapps Version: 3.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 3.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jan 09 2026 Leigh Scott - 3.2.2-1 - Update to 3.2.2 From d1a4bb4faaa07d83fa1947d06b6d611c3eb476e7 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 28 Feb 2026 14:42:38 +0000 Subject: [PATCH 31/39] Update flags --- .gitignore | 1 + sources | 2 +- xapps.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 242d2d0..5c0d629 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /xapps-*.src.rpm /flags-*.tar.gz /flags_1.0.2.tar.xz +/flags_1.0.4.tar.xz diff --git a/sources b/sources index 52d2aa5..85db08a 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ +SHA512 (flags_1.0.4.tar.xz) = 303e7a77fb3819c602f59727ea9c9a56486435c5331e7721cac205c1e840d6a2f609f5fdb6b8fa401b1e8b6a32ee3915ef06255ad86d7c3de88842787010e56c SHA512 (xapps-3.2.2.tar.gz) = 7b624e456d390073fad0f22184d2b79dfef39666c9ab3a117117ba98c89f2deb0594e017f8fb5c34debbc9bdd144b63145b930187093bd6ef72e9a013b37d798 -SHA512 (flags_1.0.2.tar.xz) = 7e71e59c7cb47617ede875fd3d1892cee05df7fab8490beffb0ecba19255ab66db9985379fa6647609146ea551174cec84b20708a244e1b5ab2a83d925b31b9c diff --git a/xapps.spec b/xapps.spec index 12142ee..6f0465d 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,12 +1,12 @@ Name: xapps Version: 3.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only URL: https://github.com/linuxmint/%{name} Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz -Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.2.tar.xz +Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.4.tar.xz Patch0: watcher_fix_libexec.patch ExcludeArch: %{ix86} @@ -124,6 +124,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Feb 28 2026 Leigh Scott - 3.2.2-3 +- Update flags + * Sat Jan 17 2026 Fedora Release Engineering - 3.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 41af4ea9c60a5aa7e60c1dc698a2de75b94f431f Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 23 May 2026 12:26:09 +0100 Subject: [PATCH 32/39] Update to 3.3.1-unstable --- sources | 2 +- xapps.spec | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/sources b/sources index 85db08a..9615fbf 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ +SHA512 (xapps-3.3.1-unstable.tar.gz) = d930734142ff2582434b0a437e8822f55e7017ab69460f1d1e99de2ca207aaf718363b35ac682d9607e97b269bcc98538cbf0898567f298a6e008491821b4b51 SHA512 (flags_1.0.4.tar.xz) = 303e7a77fb3819c602f59727ea9c9a56486435c5331e7721cac205c1e840d6a2f609f5fdb6b8fa401b1e8b6a32ee3915ef06255ad86d7c3de88842787010e56c -SHA512 (xapps-3.2.2.tar.gz) = 7b624e456d390073fad0f22184d2b79dfef39666c9ab3a117117ba98c89f2deb0594e017f8fb5c34debbc9bdd144b63145b930187093bd6ef72e9a013b37d798 diff --git a/xapps.spec b/xapps.spec index 6f0465d..3c91898 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,11 +1,13 @@ +%global upstream_version 3.3.1-unstable + Name: xapps -Version: 3.2.2 -Release: 3%{?dist} +Version: 3.3.1^unstable +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only URL: https://github.com/linuxmint/%{name} -Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz +Source0: %{url}/archive/%{upstream_version}/%{name}-%{upstream_version}.tar.gz Source1: http://packages.linuxmint.com/pool/main/f/flags/flags_1.0.4.tar.xz Patch0: watcher_fix_libexec.patch @@ -16,6 +18,7 @@ BuildRequires: glib2-devel BuildRequires: gobject-introspection-devel BuildRequires: gtk-doc BuildRequires: gtk3-devel +BuildRequires: gtk-layer-shell-devel BuildRequires: intltool BuildRequires: libdbusmenu-gtk3-devel BuildRequires: libX11-devel @@ -66,7 +69,7 @@ Provides: python3-xapps-overrides%{?_isa} = %{version}-%{release} Python%{python3_version} files for XApp apps. %prep -%autosetup -p1 -n xapp-%{version} +%autosetup -p1 -n xapp-%{upstream_version} %build %meson \ @@ -124,6 +127,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat May 23 2026 Leigh Scott - 3.3.1^unstable-1 +- Update to 3.3.1-unstable + * Sat Feb 28 2026 Leigh Scott - 3.2.2-3 - Update flags From fa0545a97279cc402da7e112f61c43f2a1244fee Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Wed, 3 Jun 2026 11:58:08 +0100 Subject: [PATCH 33/39] Drop unused build deps --- xapps.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/xapps.spec b/xapps.spec index 3c91898..f5988af 100644 --- a/xapps.spec +++ b/xapps.spec @@ -16,10 +16,8 @@ ExcludeArch: %{ix86} BuildRequires: desktop-file-utils BuildRequires: glib2-devel BuildRequires: gobject-introspection-devel -BuildRequires: gtk-doc BuildRequires: gtk3-devel BuildRequires: gtk-layer-shell-devel -BuildRequires: intltool BuildRequires: libdbusmenu-gtk3-devel BuildRequires: libX11-devel BuildRequires: libgnomekbd-devel From b252cb33428fe7eebacc9bb43deab185612c347e Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 3 Jun 2026 23:53:27 +0200 Subject: [PATCH 34/39] Rebuilt for Python 3.15 --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index f5988af..2187a56 100644 --- a/xapps.spec +++ b/xapps.spec @@ -2,7 +2,7 @@ Name: xapps Version: 3.3.1^unstable -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -125,6 +125,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Wed Jun 03 2026 Python Maint - 3.3.1^unstable-2 +- Rebuilt for Python 3.15 + * Sat May 23 2026 Leigh Scott - 3.3.1^unstable-1 - Update to 3.3.1-unstable From 312c42caeda031970f32ece8a68332f203572827 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Tue, 16 Jun 2026 17:33:52 +0100 Subject: [PATCH 35/39] Update to 3.3.2-unstable --- sources | 2 +- xapps.spec | 399 +---------------------------------------------------- 2 files changed, 7 insertions(+), 394 deletions(-) diff --git a/sources b/sources index 9615fbf..b15a9cb 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-3.3.1-unstable.tar.gz) = d930734142ff2582434b0a437e8822f55e7017ab69460f1d1e99de2ca207aaf718363b35ac682d9607e97b269bcc98538cbf0898567f298a6e008491821b4b51 +SHA512 (xapps-3.3.2-unstable.tar.gz) = c31e1f5f39059eebad4b2412616bbdc89d6659f997dbfe0c7aec748ecc212056a00dd782e309eca2e4c0c489284b449e748383ec65ff85b34776a4135e9c5c17 SHA512 (flags_1.0.4.tar.xz) = 303e7a77fb3819c602f59727ea9c9a56486435c5331e7721cac205c1e840d6a2f609f5fdb6b8fa401b1e8b6a32ee3915ef06255ad86d7c3de88842787010e56c diff --git a/xapps.spec b/xapps.spec index 2187a56..ca49e9b 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,8 +1,8 @@ -%global upstream_version 3.3.1-unstable +%global upstream_version 3.3.2-unstable Name: xapps -Version: 3.3.1^unstable -Release: 2%{?dist} +Version: 3.3.2^unstable +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -84,9 +84,6 @@ rm %{buildroot}%{_datadir}/format %find_lang xapp -%ldconfig_scriptlets - - %files -f xapp.lang %license COPYING %doc README.md @@ -125,6 +122,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Tue Jun 16 2026 Leigh Scott - 3.3.2^unstable-1 +- Update to 3.3.2-unstable + * Wed Jun 03 2026 Python Maint - 3.3.1^unstable-2 - Rebuilt for Python 3.15 @@ -145,390 +145,3 @@ rm %{buildroot}%{_datadir}/format * Wed Nov 12 2025 Leigh Scott - 3.2.0-1 - Update to 3.2.0 - -* Fri Sep 19 2025 Python Maint - 2.8.8-6 -- Rebuilt for Python 3.14.0rc3 bytecode - -* Fri Aug 15 2025 Python Maint - 2.8.8-5 -- Rebuilt for Python 3.14.0rc2 bytecode - -* Fri Jul 25 2025 Fedora Release Engineering - 2.8.8-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Tue Jun 03 2025 Python Maint - 2.8.8-3 -- Rebuilt for Python 3.14 - -* Sun Jan 19 2025 Fedora Release Engineering - 2.8.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Mon Jan 06 2025 Leigh Scott - 2.8.8-1 -- Update to 2.8.8 - -* Fri Dec 06 2024 Leigh Scott - 2.8.7-1 -- Update to 2.8.7 - -* Mon Nov 25 2024 Leigh Scott - 2.8.6-1 -- Update to 2.8.6 - -* Mon Jul 22 2024 Leigh Scott - 2.8.5-1 -- Update to 2.8.5 - -* Mon Jul 22 2024 Miro Hrončok - 2.8.4-4 -- Ensure python3-xapps-overrides Requires correct python(abi) - -* Sat Jul 20 2024 Fedora Release Engineering - 2.8.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Sun Jul 07 2024 Leigh Scott - 2.8.4-2 -- Fix build requires - -* Tue Jun 18 2024 Leigh Scott - 2.8.4-1 -- Update to 2.8.4 - -* Fri Jun 07 2024 Python Maint - 2.8.3-2 -- Rebuilt for Python 3.13 - -* Tue Jun 04 2024 Leigh Scott - 2.8.3-1 -- Update to 2.8.3 - -* Tue Mar 26 2024 Leigh Scott - 2.8.2-3 -- Fix buildrequires - -* Sat Jan 27 2024 Fedora Release Engineering - 2.8.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Thu Jan 04 2024 Leigh Scott - 2.8.2-1 -- Update to 2.8.2 release - -* Tue Dec 05 2023 Leigh Scott - 2.8.1-1 -- Update to 2.8.1 release - -* Sat Nov 25 2023 Leigh Scott - 2.8.0-1 -- Update to 2.8.0 release - -* Tue Jul 25 2023 Leigh Scott - 2.6.1-4 -- Fix meld issue - -* Sat Jul 22 2023 Fedora Release Engineering - 2.6.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Thu Jun 15 2023 Python Maint - 2.6.1-2 -- Rebuilt for Python 3.12 - -* Thu Jun 08 2023 Leigh Scott - 2.6.1-1 -- Update to 2.6.1 release - -* Fri Jun 02 2023 Leigh Scott - 2.6.0-2 -- Use recommends switcheroo-control - -* Thu Jun 01 2023 Leigh Scott - 2.6.0-1 -- Update to 2.6.0 release - -* Wed Mar 29 2023 Leigh Scott - 2.4.3-1 -- Update to 2.4.3 release - -* Sat Jan 21 2023 Fedora Release Engineering - 2.4.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Fri Nov 18 2022 Leigh Scott - 2.4.1-1 -- Update to 2.4.1 release - -* Sun Jul 24 2022 Leigh Scott - 2.2.14-1 -- Update to 2.2.14 release - -* Sat Jul 23 2022 Fedora Release Engineering - 2.2.13-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sun Jul 17 2022 Leigh Scott - 2.2.13-1 -- Update to 2.2.13 release - -* Mon Jun 13 2022 Python Maint - 2.2.10-2 -- Rebuilt for Python 3.11 - -* Sat Jun 11 2022 Leigh Scott - 2.2.10-1 -- Update to 2.2.10 release - -* Sat Jan 22 2022 Fedora Release Engineering - 2.2.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Sat Jan 01 2022 Leigh Scott - 2.2.8-1 -- Update to 2.2.8 release - -* Mon Dec 06 2021 Leigh Scott - 2.2.6-1 -- Update to 2.2.6 release - -* Wed Nov 24 2021 Leigh Scott - 2.2.5-1 -- Update to 2.2.5 release - -* Thu Nov 04 2021 Leigh Scott - 2.2.4-1 -- Update to 2.2.4 release - -* Fri Jul 23 2021 Fedora Release Engineering - 2.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Fri Jun 25 2021 Leigh Scott - 2.2.2-1 -- Update to 2.2.2 release - -* Thu Jun 10 2021 Leigh Scott - 2.2.1-1 -- Update to 2.2.1 release - -* Fri Jun 04 2021 Python Maint - 2.2.0-2 -- Rebuilt for Python 3.10 - -* Fri May 28 2021 Leigh Scott - 2.2.0-1 -- Update to 2.2.0 release - -* Mon Apr 26 2021 Leigh Scott - 2.0.7-1 -- Update to 2.0.7 release - -* Wed Jan 27 2021 Fedora Release Engineering - 2.0.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Jan 13 2021 Leigh Scott - 2.0.6-1 -- Update to 2.0.6 release - -* Sat Jan 2 2021 Leigh Scott - 2.0.5-1 -- Update to 2.0.5 release - -* Sun Dec 13 2020 Leigh Scott - 2.0.4-1 -- Update to 2.0.4 release - -* Thu Dec 10 2020 Leigh Scott - 2.0.3-1 -- Update to 2.0.3 release - -* Tue Dec 8 2020 Leigh Scott - 2.0.1-2 -- Add patch to fix perms - -* Tue Dec 8 2020 Leigh Scott - 2.0.1-1 -- Update to 2.0.1 release - -* Wed Nov 25 2020 Leigh Scott - 2.0.0-1 -- Update to 2.0.0 release - -* Wed Sep 9 2020 Leigh Scott - 1.8.10-1 -- Update to 1.8.10 release - -* Sat Aug 15 2020 Leigh Scott - 1.8.9-1 -- Update to 1.8.9 release - -* Wed Jul 29 2020 Fedora Release Engineering - 1.8.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jul 14 2020 Leigh Scott - 1.8.8-1 -- Update to 1.8.8 release - -* Sat Jun 06 2020 Leigh Scott - 1.8.7-1 -- Update to 1.8.7 release - -* Tue May 26 2020 Miro Hrončok - 1.8.6-2 -- Rebuilt for Python 3.9 - -* Sat May 23 2020 Leigh Scott - 1.8.6-1 -- Update to 1.8.6 release - -* Thu May 21 2020 Leigh Scott - 1.8.5-1 -- Update to 1.8.5 release - -* Wed May 13 2020 Leigh Scott - 1.8.4-2 -- Fix sn-watcher issue - -* Tue May 12 2020 Leigh Scott - 1.8.4-1 -- Update to 1.8.4 release - -* Fri Jan 31 2020 Fedora Release Engineering - 1.6.10-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Jan 09 2020 Leigh Scott - 1.6.10-1 -- Update to 1.6.10 release - -* Thu Jan 09 2020 Leigh Scott - 1.6.9-1 -- Update to 1.6.9 release - -* Wed Dec 11 2019 Leigh Scott - 1.6.8-1 -- Update to 1.6.8 release - -* Tue Dec 10 2019 Leigh Scott - 1.6.7-1 -- Update to 1.6.7 release - -* Sat Dec 07 2019 Leigh Scott - 1.6.6-1 -- Update to 1.6.6 release - -* Fri Nov 29 2019 Leigh Scott - 1.6.5-1 -- Update to 1.6.5 release - -* Thu Nov 28 2019 Leigh Scott - 1.6.4-1 -- Update to 1.6.4 release - -* Tue Nov 26 2019 Leigh Scott - 1.6.3-1 -- Update to 1.6.3 release - -* Fri Nov 22 2019 Leigh Scott - 1.6.2-1 -- Update to 1.6.2 release - -* Tue Nov 19 2019 Leigh Scott - 1.6.1-2 -- Add Mate status applet - -* Sat Nov 16 2019 Leigh Scott - 1.6.1-1 -- Update to 1.6.1 release - -* Thu Oct 03 2019 Miro Hrončok - 1.4.9-2 -- Rebuilt for Python 3.8.0rc1 (#1748018) - -* Tue Aug 20 2019 Leigh Scott - 1.4.9-1 -- Update to 1.4.9 release - -* Mon Aug 19 2019 Miro Hrončok - 1.4.8-3 -- Rebuilt for Python 3.8 - -* Sat Jul 27 2019 Fedora Release Engineering - 1.4.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jul 11 2019 Leigh Scott - 1.4.8-1 -- Update to 1.4.8 release - -* Sun Jun 23 2019 Leigh Scott - 1.4.7-1 -- Update to 1.4.7 release - -* Fri Jun 14 2019 Leigh Scott - 1.4.6-1 -- Update to 1.4.6 release - -* Sun Feb 03 2019 Fedora Release Engineering - 1.4.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sun Dec 16 2018 Leigh Scott - 1.4.5-1 -- Update to 1.4.5 release - -* Tue Nov 27 2018 Leigh Scott - 1.4.4-1 -- Update to 1.4.4 release - -* Tue Nov 20 2018 Leigh Scott - 1.4.2-1 -- Update to 1.4.2 release - -* Mon Nov 12 2018 Leigh Scott - 1.4.1-1 -- Update to 1.4.1 release - -* Mon Nov 05 2018 Leigh Scott - 1.4.0-2 -- Add Obsoletes python2-xapps-overrides to main package - -* Tue Oct 30 2018 Leigh Scott - 1.4.0-1 -- Update to 1.4.0 release - -* Sun Oct 07 2018 Leigh Scott - 1.2.2-2 -- Drop EPEL/RHEL support -- Drop python2 support - -* Wed Aug 15 2018 Leigh Scott - 1.2.2-1 -- Update to 1.2.2 release - -* Sat Jul 14 2018 Fedora Release Engineering - 1.2.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Tue Jun 19 2018 Miro Hrončok - 1.2.1-3 -- Rebuilt for Python 3.7 - -* Sun Jun 10 2018 Leigh Scott - 1.2.1-2 -- Fix rhbz#1589423 - -* Sun May 06 2018 Leigh Scott - 1.2.1-1 -- Update to 1.2.1 release - -* Mon Apr 16 2018 Leigh Scott - 1.2.0-1 -- Update to 1.2.0 release - -* Mon Apr 02 2018 Leigh Scott - 1.1.0-0.2.20180311gite5ca157 -- Update to latest git - -* Fri Mar 09 2018 Leigh Scott - 1.1.0-0.1.20180309gitfea3ca8 -- Fix version - -* Fri Mar 09 2018 Leigh Scott - 1.0.5-0.3.20180309gitfea3ca8 -- Update to latest git - -* Fri Feb 09 2018 Fedora Release Engineering - 1.0.5-0.2.20180203git83d0f77 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Mon Feb 05 2018 Leigh Scott - 1.0.5-0.1.20180203git83d0f77 -- Update to latest git - -* Sat Nov 25 2017 Leigh Scott - 1.0.4-13 -- Add a base preferences dialog - -* Mon Nov 20 2017 Leigh Scott - 1.0.4-12 -- Fix Requires for F26 - -* Thu Nov 16 2017 Björn Esser - 1.0.4-11 -- Fix Requires for EPEL7 - -* Thu Nov 16 2017 Björn Esser - 1.0.4-10 -- Fix globbing of __pycache__ - -* Thu Nov 16 2017 Björn Esser - 1.0.4-9 -- Fix Python3 macro again - -* Thu Nov 16 2017 Björn Esser - 1.0.4-8 -- Fix archful Requires - -* Thu Nov 16 2017 Björn Esser - 1.0.4-7 -- Fix Python3 macro - -* Thu Nov 16 2017 Björn Esser - 1.0.4-6 -- Fix build - -* Thu Nov 16 2017 Björn Esser - 1.0.4-5 -- Adaptions for EPEL7 - -* Mon Nov 13 2017 Troy Curtis, Jr - 1.0.4-4 -- Have python2-xapps-overrides require xapps instead of the other way around. -- Use python macros - -* Sat Nov 11 2017 Leigh Scott - 1.0.4-3 -- Add requires python2-gobject-base - -* Thu Oct 26 2017 Leigh Scott - 1.0.4-2 -- build python XApp overrides - -* Tue Oct 24 2017 Leigh Scott - 1.0.4-1 -- update to 1.0.4 release - -* Thu Aug 31 2017 Björn Esser - 1.0.3-6 -- Preserve mode of files when changing hashbang - -* Tue Aug 29 2017 Björn Esser - 1.0.3-5 -- Use Python2 on epel - -* Mon Aug 28 2017 Leigh Scott - 1.0.3-4 -- Fix requires for epel - -* Thu Aug 03 2017 Fedora Release Engineering - 1.0.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed May 03 2017 Leigh Scott - 1.0.3-1 -- update to 1.0.3 release -- add build requires gtk-doc - -* Thu Feb 23 2017 Leigh Scott - 1.0.2-5 -- Add python3-gobject-base instead of python-gobject-base - -* Thu Feb 23 2017 Leigh Scott - 1.0.2-4 -- Add some upstream fixes - -* Sat Feb 11 2017 Fedora Release Engineering - 1.0.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Dec 19 2016 Miro Hrončok - 1.0.2-2 -- Rebuild for Python 3.6 - -* Mon Nov 07 2016 Leigh Scott - 1.0.2-1 -- update to 1.0.2 release - -* Sat Nov 05 2016 Leigh Scott - 1.0.0-0.3.gita8d5277 -- update to latest git - -* Tue Oct 11 2016 Leigh Scott - 1.0.0-0.2.git0f28d18 -- fix review issues - -* Sat Oct 08 2016 Leigh Scott - 1.0.0-0.1.git7e7567a -- first build From 6a0135c4a61b7ad1423f6403b42efeb40a3a158d Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 20 Jun 2026 20:31:32 +0100 Subject: [PATCH 36/39] Update to 3.3.3-unstable --- sources | 2 +- xapps.spec | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sources b/sources index b15a9cb..2db34fe 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-3.3.2-unstable.tar.gz) = c31e1f5f39059eebad4b2412616bbdc89d6659f997dbfe0c7aec748ecc212056a00dd782e309eca2e4c0c489284b449e748383ec65ff85b34776a4135e9c5c17 +SHA512 (xapps-3.3.3-unstable.tar.gz) = 464f6f56b6f6d5124388dde9965994b3d3522b43b6912ff35975091850aeddf871237196c1076e291c247fef5fe4bdeebc2e6eb5acce025994a5b096683143e7 SHA512 (flags_1.0.4.tar.xz) = 303e7a77fb3819c602f59727ea9c9a56486435c5331e7721cac205c1e840d6a2f609f5fdb6b8fa401b1e8b6a32ee3915ef06255ad86d7c3de88842787010e56c diff --git a/xapps.spec b/xapps.spec index ca49e9b..6aae6c4 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,7 +1,7 @@ -%global upstream_version 3.3.2-unstable +%global upstream_version 3.3.3-unstable Name: xapps -Version: 3.3.2^unstable +Version: 3.3.3^unstable Release: 1%{?dist} Summary: Common files for XApp desktop apps @@ -122,6 +122,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Jun 20 2026 Leigh Scott - 3.3.3^unstable-1 +- Update to 3.3.3-unstable + * Tue Jun 16 2026 Leigh Scott - 3.3.2^unstable-1 - Update to 3.3.2-unstable From c4b2e4d4352452def4baef48fea0413b1cd71c8c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:00:27 +0000 Subject: [PATCH 37/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index 6aae6c4..8b7a40e 100644 --- a/xapps.spec +++ b/xapps.spec @@ -2,7 +2,7 @@ Name: xapps Version: 3.3.3^unstable -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -122,6 +122,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 3.3.3^unstable-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jun 20 2026 Leigh Scott - 3.3.3^unstable-1 - Update to 3.3.3-unstable From 3a6aa1051294ee4fa5156d81bec124bb5e1cf407 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 22 Jul 2026 10:16:15 +0200 Subject: [PATCH 38/39] Rebuilt for Python 3.15.0b4 ABI change --- xapps.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xapps.spec b/xapps.spec index 8b7a40e..fe876d5 100644 --- a/xapps.spec +++ b/xapps.spec @@ -2,7 +2,7 @@ Name: xapps Version: 3.3.3^unstable -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -122,6 +122,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Wed Jul 22 2026 Python Maint - 3.3.3^unstable-3 +- Rebuilt for Python 3.15.0b4 ABI change + * Fri Jul 17 2026 Fedora Release Engineering - 3.3.3^unstable-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild From ed9d9487f9d4a9d53d7c5a4da36d670202de6c50 Mon Sep 17 00:00:00 2001 From: Leigh Scott Date: Sat, 15 Aug 2026 13:55:11 +0100 Subject: [PATCH 39/39] Update to 3.3.4-unstable --- sources | 2 +- xapps.spec | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/sources b/sources index 2db34fe..eabb1d5 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (xapps-3.3.3-unstable.tar.gz) = 464f6f56b6f6d5124388dde9965994b3d3522b43b6912ff35975091850aeddf871237196c1076e291c247fef5fe4bdeebc2e6eb5acce025994a5b096683143e7 +SHA512 (xapps-3.3.4-unstable.tar.gz) = 8a69e549413902f75eb60c1089c86a2d3eb25f6ef016c605e8e8bf623531daf8d47b48720b189010e6dbd595d5250072c77e11c4ab79247dedcf0220e60ff466 SHA512 (flags_1.0.4.tar.xz) = 303e7a77fb3819c602f59727ea9c9a56486435c5331e7721cac205c1e840d6a2f609f5fdb6b8fa401b1e8b6a32ee3915ef06255ad86d7c3de88842787010e56c diff --git a/xapps.spec b/xapps.spec index fe876d5..9765423 100644 --- a/xapps.spec +++ b/xapps.spec @@ -1,8 +1,8 @@ -%global upstream_version 3.3.3-unstable +%global upstream_version 3.3.4-unstable Name: xapps -Version: 3.3.3^unstable -Release: 3%{?dist} +Version: 3.3.4^unstable +Release: 1%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only @@ -122,6 +122,9 @@ rm %{buildroot}%{_datadir}/format %{python3_sitearch}/gi/overrides/__pycache__/XApp.cpython-%{python3_version_nodots}*.py* %changelog +* Sat Aug 15 2026 Leigh Scott - 3.3.4^unstable-1 +- Update to 3.3.4-unstable + * Wed Jul 22 2026 Python Maint - 3.3.3^unstable-3 - Rebuilt for Python 3.15.0b4 ABI change