public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Filipe Rosset <rosset.filipe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/xfce4-settings] rawhide: Update to 4.20.5 + spec cleanup and modernization
Date: Fri, 31 Jul 2026 01:05:32 GMT	[thread overview]
Message-ID: <178545993260.1.16372935878452301399.rpms-xfce4-settings-af9d041c5341@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/xfce4-settings
            Branch : rawhide
            Commit : af9d041c53410a35a953196c8f314e1b11d8a310
            Author : Filipe Rosset <rosset.filipe@gmail.com>
            Date   : 2026-07-29T15:16:29-03:00
            Stats  : +19/-16 in 3 file(s)
            URL    : https://src.fedoraproject.org/rpms/xfce4-settings/c/af9d041c53410a35a953196c8f314e1b11d8a310?branch=rawhide

            Log:
            Update to 4.20.5 + spec cleanup and modernization

Removed deprecated build flags

Added gtk-layer-shell-devel to BR to enable modern Wayland layer shell support

Signed-off-by: Filipe Rosset <rosset.filipe@gmail.com>

---
diff --git a/.gitignore b/.gitignore
index 16f9e4b..5759e54 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,4 @@ xfce4-settings-4.6.5.tar.bz2
 /xfce4-settings-4.20.0.tar.bz2
 /xfce4-settings-4.20.1.tar.bz2
 /xfce4-settings-4.20.2.tar.bz2
+/xfce4-settings-4.20.5.tar.bz2

diff --git a/sources b/sources
index e029909..9cdf312 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (xfce4-settings-4.20.2.tar.bz2) = d765eee47617d11f286e35679bf3c6596328ddbe8e5cfef7d55dc55d78f1ef4b7d3d10f22de9f2b79a2acce8193bb90a35259a8b577f2825715ce8b69e98e257
+SHA512 (xfce4-settings-4.20.5.tar.bz2) = 99ec7f585029f10d90d462b7dc57376786952b6c92ff80a174195cbc4b89989191c8363fd4f359a99eb5bfc2e10dc411961ab331f1f8c6911c6b3e32d7ab448e

diff --git a/xfce4-settings.spec b/xfce4-settings.spec
index 765b798..aee34d0 100644
--- a/xfce4-settings.spec
+++ b/xfce4-settings.spec
@@ -1,7 +1,7 @@
 %global xfceversion 4.20
 
 Name:           xfce4-settings
-Version:        4.20.2
+Version:        4.20.5
 Release:        %autorelease
 Summary:        Settings Manager for Xfce
 
@@ -13,24 +13,26 @@ Source0:        http://archive.xfce.org/src/xfce/%{name}/%{xfceversion}/%{name}-
 # Use Fedora theme and font settings
 Patch10:        xfce4-settings-%{xfceversion}-fedora.patch
 
-BuildRequires:  make
+BuildRequires:  colord-devel
+BuildRequires:  desktop-file-utils >= 0.7
+BuildRequires:  exo-devel >= 0.5.0
+BuildRequires:  garcon-devel >= %{xfceversion}
 BuildRequires:  gcc-c++
 BuildRequires:  gettext
+BuildRequires:  gtk-layer-shell-devel
 BuildRequires:  intltool
-BuildRequires:  exo-devel >= 0.5.0
+BuildRequires:  libXrandr-devel
+BuildRequires:  libcanberra-devel
+BuildRequires:  libnotify-devel
 BuildRequires:  libxfce4ui-devel >= %{xfceversion}
 BuildRequires:  libxfce4util-devel >= %{xfceversion}
-BuildRequires:  xfconf-devel >= %{xfceversion}
-BuildRequires:  desktop-file-utils >= 0.7
-BuildRequires:  libnotify-devel
-BuildRequires:  colord-devel
-BuildRequires:  libcanberra-devel
 BuildRequires:  libxklavier-devel
+BuildRequires:  make
+BuildRequires:  xfconf-devel >= %{xfceversion}
 %ifnarch s390 s390x
 BuildRequires:  xorg-x11-drv-libinput-devel
 %endif
-BuildRequires:  libXrandr-devel
-BuildRequires:  garcon-devel >= %{xfceversion}
+
 Requires:       xfconf
 %if 0%{?rhel} <= 7
 Requires:       gnome-icon-theme
@@ -40,17 +42,18 @@ Requires:       gnome-icon-theme
 This package includes the settings manager applications for the Xfce desktop. 
 
 %prep
-%setup -q
-%patch 10
-
+%autosetup -p0
 
 %build
-%configure --enable-sound-settings --enable-pluggable-dialogs --enable-maintainer-mode --enable-xorg-libinput
+%configure --enable-sound-settings --enable-xorg-libinput
 %make_build
 
 %install
 %make_install
 
+# Remove invalid locale directory to silence rpmlint
+rm -rf %{buildroot}%{_datadir}/locale/hye
+
 for file in %{buildroot}%{_datadir}/applications/*.desktop ; do
     desktop-file-install \
         --add-category="X-XFCE" \
@@ -60,7 +63,6 @@ for file in %{buildroot}%{_datadir}/applications/*.desktop ; do
         $file
 done
 
-
 %find_lang %{name}
 
 %files -f %{name}.lang

                 reply	other threads:[~2026-07-31  1:05 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=178545993260.1.16372935878452301399.rpms-xfce4-settings-af9d041c5341@fedoraproject.org \
    --to=rosset.filipe@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