public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Leigh Scott <leigh123linux@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/muffin] rawhide: Update to 6.7.3-unstable
Date: Sat, 20 Jun 2026 19:37:55 GMT	[thread overview]
Message-ID: <178198427541.1.5103823072810360974.rpms-muffin-a335149144e7@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/muffin
Branch : rawhide
Commit : a335149144e702ff9b82c1d1f95a41315dcc3527
Author : Leigh Scott <leigh123linux@gmail.com>
Date   : 2026-06-20T20:37:35+01:00
Stats  : +6/-286 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/muffin/c/a335149144e702ff9b82c1d1f95a41315dcc3527?branch=rawhide

Log:
Update to 6.7.3-unstable

---
diff --git a/0001-Wayland-Fix-nvidia-refresh-rate-when-running-nvidia-.patch b/0001-Wayland-Fix-nvidia-refresh-rate-when-running-nvidia-.patch
deleted file mode 100644
index b88032a..0000000
--- a/0001-Wayland-Fix-nvidia-refresh-rate-when-running-nvidia-.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From c254aca93965103f273058f1433e811d1a5460ee Mon Sep 17 00:00:00 2001
-From: Leigh Scott <leigh123linux@gmail.com>
-Date: Fri, 19 Dec 2025 08:17:43 +0000
-Subject: [PATCH] Wayland: Fix nvidia refresh rate when running nvidia driver
-
----
- src/backends/native/meta-renderer-native.c | 30 +++++++++++-----------
- 1 file changed, 15 insertions(+), 15 deletions(-)
-
-diff --git a/src/backends/native/meta-renderer-native.c b/src/backends/native/meta-renderer-native.c
-index 7e75ab9f..f724a3dd 100644
---- a/src/backends/native/meta-renderer-native.c
-+++ b/src/backends/native/meta-renderer-native.c
-@@ -3698,29 +3698,29 @@ meta_renderer_native_create_renderer_gpu_data (MetaRendererNative  *renderer_nat
-   GError *egl_device_error = NULL;
- #endif
- 
--#ifdef HAVE_EGL_DEVICE
--  /* Try to initialize the EGLDevice backend first. Whenever we use a
--   * non-NVIDIA GPU, the EGLDevice enumeration function won't find a match, and
--   * we'll fall back to GBM (which will always succeed as it has a software
--   * rendering fallback)
-+  /* Try to initialize the GBM backend first. GBM provides better compatibility
-+   * across different GPU vendors and has robust fallback mechanisms including
-+   * software rendering when needed.
-    */
--  renderer_gpu_data = create_renderer_gpu_data_egl_device (renderer_native,
--                                                           gpu_kms,
--                                                           &egl_device_error);
--  if (renderer_gpu_data)
--    return renderer_gpu_data;
--#endif
--
-   renderer_gpu_data = create_renderer_gpu_data_gbm (renderer_native,
-                                                     gpu_kms,
-                                                     &gbm_error);
-   if (renderer_gpu_data)
--    {
-+    return renderer_gpu_data;
-+
- #ifdef HAVE_EGL_DEVICE
--      g_error_free (egl_device_error);
--#endif
-+  /* Fall back to EGLDevice backend (primarily for NVIDIA proprietary drivers
-+   * where it may provide better performance or features)
-+    */
-+  renderer_gpu_data = create_renderer_gpu_data_egl_device (renderer_native,
-+                                                           gpu_kms,
-+                                                           &egl_device_error);
-+  if (renderer_gpu_data)
-+    {
-+      g_error_free (gbm_error);
-       return renderer_gpu_data;
-     }
-+#endif
- 
-   g_set_error (error, G_IO_ERROR,
-                G_IO_ERROR_FAILED,
--- 
-2.53.0
-

diff --git a/muffin.spec b/muffin.spec
index 42a4416..59bc38e 100644
--- a/muffin.spec
+++ b/muffin.spec
@@ -1,15 +1,13 @@
-%global upstream_version 6.7.2-unstable
+%global upstream_version 6.7.3-unstable
 
 Name:          muffin
-Version:       6.7.2^unstable
+Version:       6.7.3^unstable
 Release:       1%{?dist}
 Summary:       Window and compositing manager based on Clutter
 
-# Automatically converted from old format: GPLv2+ - review is highly recommended.
 License:       GPL-2.0-or-later
 URL:           https://github.com/linuxmint/%{name}
 Source0:       %url/archive/%{upstream_version}/%{name}-%{upstream_version}.tar.gz
-Patch0:        0001-Wayland-Fix-nvidia-refresh-rate-when-running-nvidia-.patch
 
 ExcludeArch:   %{ix86}
 
@@ -132,6 +130,9 @@ rm -rf %{buildroot}%{_datadir}/applications/
 %{_libdir}/pkgconfig/*
 
 %changelog
+* Sat Jun 20 2026 Leigh Scott <leigh123linux@gmail.com> - 6.7.3^unstable-1
+- Update to 6.7.3-unstable
+
 * Wed Jun 17 2026 Leigh Scott <leigh123linux@gmail.com> - 6.7.2^unstable-1
 - Update to 6.7.2-unstable
 
@@ -197,223 +198,3 @@ rm -rf %{buildroot}%{_datadir}/applications/
 
 * Sun Nov 19 2023 Leigh Scott <leigh123linux@gmail.com> - 6.0.0-1
 - Update to 6.0.0 release
-
-* Wed Nov 08 2023 Leigh Scott <leigh123linux@gmail.com> - 5.9.0-1.20231107git4b87bf9
-- Update to git snapshot
-
-* Mon Jul 24 2023 Leigh Scott <leigh123linux@gmail.com> - 5.8.1-1
-- Update to 5.8.1 release
-
-* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.8.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Fri Jun 02 2023 Leigh Scott <leigh123linux@gmail.com> - 5.8.0-1
-- Update to 5.8.0 release
-
-* Thu May 18 2023 Leigh Scott <leigh123linux@gmail.com> - 5.6.4-4
-- Fix the last commit
-
-* Thu May 18 2023 Leigh Scott <leigh123linux@gmail.com> - 5.6.4-3
-- Patch to fix issue with new libinput on f38+
-
-* Sat May 06 2023 Leigh Scott <leigh123linux@gmail.com> - 5.6.4-2
-- Patch to fix issue with new zenity on f38+
-
-* Fri Mar 17 2023 Leigh Scott <leigh123linux@gmail.com> - 5.6.4-1
-- Update to 5.6.4 release
-
-* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sun Jan 08 2023 Leigh Scott <leigh123linux@gmail.com> - 5.6.3-1
-- Update to 5.6.3 release
-
-* Tue Dec 13 2022 Leigh Scott <leigh123linux@gmail.com> - 5.6.2-1
-- Update to 5.6.2 release
-
-* Wed Nov 30 2022 Leigh Scott <leigh123linux@gmail.com> - 5.6.1-1
-- Update to 5.6.1 release
-
-* Mon Nov 28 2022 Leigh Scott <leigh123linux@gmail.com> - 5.6.0-2
-- Readd lost window placement modes
-
-* Fri Nov 18 2022 Leigh Scott <leigh123linux@gmail.com> - 5.6.0-1
-- Update to 5.6.0 release
-
-* Tue Sep 06 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.7-1
-- Update to 5.4.7 release
-
-* Thu Sep 01 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.6-2
-- Remove muffin binary
-
-* Sun Aug 21 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.6-1
-- Update to 5.4.6 release
-
-* Tue Aug 02 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.5-1
-- Update to 5.4.5 release
-
-* Mon Jul 25 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.4-1
-- Update to 5.4.4 release
-
-* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Wed Jul 20 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.3-1
-- Update to 5.4.3 release
-
-* Sun Jul 17 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.2-1
-- Update to 5.4.2 release
-
-* Mon Jun 20 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.1-1
-- Update to 5.4.1 release
-
-* Sat Jun 11 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.0-3
-- Clean up
-
-* Sat Jun 11 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.0-2
-- Add requires mesa-libEGL-devel to devel sub-package
-
-* Fri Jun 10 2022 Leigh Scott <leigh123linux@gmail.com> - 5.4.0-1
-- Update to 5.4.0 release
-
-* Sat May 28 2022 Leigh Scott <leigh123linux@gmail.com> - 5.2.1-1
-- Update to 5.2.1 release
-
-* Sun Feb 13 2022 Jeff Law <jeffreyalaw@gmail.com> - 5.2.0-3
-- Re-enable LTO
-
-* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Nov 19 2021 Leigh Scott <leigh123linux@gmail.com> - 5.2.0-1
-- Update to 5.2.0 release
-
-* Thu Nov 04 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.2-1
-- Update to 5.0.2 release
-
-* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Sat Jun 12 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.1-1
-- Update to 5.0.1 release
-
-* Fri May 28 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.0-1
-- Update to 5.0.0 release
-
-* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Thu Jan 14 2021 Leigh Scott <leigh123linux@gmail.com> - 4.8.1-1
-- Update to 4.8.1 release
-
-* Thu Nov 26 2020 Leigh Scott <leigh123linux@gmail.com> - 4.8.0-1
-- Update to 4.8.0 release
-
-* Tue Aug 11 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.3-1
-- Update to 4.6.3 release
-
-* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Tue Jun 30 2020 Jeff Law <law@redhat.com> - 4.6.2-2
-- Disable LTO
-
-* Sat Jun 06 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.2-1
-- Update to 4.6.2 release
-
-* Wed May 27 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.1-1
-- Update to 4.6.1 release
-
-* Wed May 13 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.0-1
-- Update to 4.6.0 release
-
-* Mon May 11 2020 Leigh Scott <leigh123linux@gmail.com> - 4.4.3-1
-- New upstream release 4.4.3
-
-* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Mon Dec 30 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.2-1
-- Update to 4.4.2 release
-
-* Fri Nov 22 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.1-1
-- Update to 4.4.1 release
-
-* Thu Nov 21 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-4
-- Add upstream fixes for reverted commits
-
-* Thu Nov 21 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-3
-- Revert another bad commit
-
-* Thu Nov 21 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-2
-- Revert bad commit
-
-* Wed Nov 20 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-1
-- Update to 4.4.0 release
-
-* Tue Oct 01 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.2-2
-- Remove --warn-error from gir scannerflags
-
-* Wed Jul 31 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.2-1
-- Update to 4.2.2 release
-
-* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Sun Jul 14 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.1-1
-- Update to 4.2.1 release
-
-* Sat Jul 06 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.0-3
-- Revert last commit
-
-* Sat Jul 06 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.0-2
-- Add upstream pull request
-
-* Fri Jun 14 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.0-1
-- Update to 4.2.0 release
-
-* Wed Jun 12 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.6.20190611git6b11adb
-- Update snapshot
-
-* Wed Jun 05 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.5.20190604git5774eb2
-- Add upstream pull request #514
-
-* Wed Jun 05 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.4.20190604git5774eb2
-- Update snapshot
-
-* Wed Apr 17 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.3.20190417gitc72054b
-- Update snapshot
-
-* Tue Apr 16 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.2.20190416gitb625cfb
-- Update snapshot
-
-* Fri Apr 05 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.8-0.1.20190405git462a534
-- Update to git master snapshot
-
-* Wed Apr 03 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.7-1
-- Update to 4.0.7 release
-
-* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.6-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Thu Jan 10 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.0.6-1
-- Update to 4.0.6 release
-
-* Sun Dec 16 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.5-1
-- Update to 4.0.5 release
-
-* Thu Dec 06 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.4-1
-- Update to 4.0.4 release
-
-* Wed Nov 28 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.3-1
-- Update to 4.0.3 release
-
-* Tue Nov 20 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.2-1
-- Update to 4.0.2 release
-
-* Mon Nov 12 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.1-1
-- Update to 4.0.1 release
-
-* Sat Nov 03 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.0-1
-- Update to 4.0.0 release
-- Readd muffin binary, useful for debug only

diff --git a/sources b/sources
index de1b6da..3a39021 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (muffin-6.7.2-unstable.tar.gz) = 6958d20d23639fc86355d570231f5cc91c5fd9346d78db75af064f878b41527dc2d4a5e0ee7290a61d4a05e760c253ddb25bc706b05384155eaa82d9c8e9f44d
+SHA512 (muffin-6.7.3-unstable.tar.gz) = 00abc3b23de7a8a4772a82467892aa9de717d9464ba24590b0e43ff05a7b3f64cdf4649463b33124464aa0a14a58c5e5b8e612b7da3cba73212b4d416ec12ee3

                 reply	other threads:[~2026-06-20 19:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178198427541.1.5103823072810360974.rpms-muffin-a335149144e7@fedoraproject.org \
    --to=leigh123linux@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox