Compare commits
38 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0149bbdd5f | |||
| 06a6cb1dc9 | |||
| c37369728a | |||
| c38cb01745 | |||
| 34a76d3ea5 | |||
| 206bdff6d4 | |||
| a0c1dd3e52 | |||
| 6acb7ea10f | |||
| 8ea4b127d7 | |||
| 1c689251d3 | |||
| 3b971a8a07 | |||
| 6c3d92642e | |||
| 4c01ef1b9f | |||
| 36ef100836 | |||
| ea2a9b2d96 | |||
| a55dbbd764 | |||
| db62c6ca62 | |||
| f11a33cad0 | |||
| 05dc5dfe72 | |||
| 80b2b48515 | |||
| 020a56822f | |||
| 7cbd8b6f3d | |||
| 1e507a71fa | |||
| f8372d9df4 | |||
| 8d06d0d2e8 | |||
| 7ba22c2249 | |||
| 7c3341d729 | |||
| d357aae360 | |||
| b868b75011 | |||
| de70b9ccc0 | |||
| 5820feee12 | |||
| abae2a5400 | |||
| 17dcd83976 | |||
| 20a249a768 | |||
| 02e484411c | |||
| 71458745d9 | |||
| f7e5b1e324 | |||
| 7910fb076b |
49 changed files with 26593 additions and 619 deletions
|
|
@ -8,7 +8,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: almalinux10
|
runs-on: almalinux-10
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
@ -26,33 +26,64 @@ jobs:
|
||||||
dnf install -y \
|
dnf install -y \
|
||||||
rpm-build \
|
rpm-build \
|
||||||
rpmdevtools \
|
rpmdevtools \
|
||||||
dnf-plugins-core \
|
mock \
|
||||||
curl
|
curl
|
||||||
|
|
||||||
|
- name: Add runner user to mock group
|
||||||
|
run: usermod -aG mock $(whoami) || true
|
||||||
|
|
||||||
- name: Setup RPM build tree
|
- name: Setup RPM build tree
|
||||||
run: rpmdev-setuptree
|
run: rpmdev-setuptree
|
||||||
|
|
||||||
- name: Install build dependencies for ${{ matrix.spec }}
|
|
||||||
run: |
|
|
||||||
dnf builddep -y ${{ matrix.spec }}
|
|
||||||
|
|
||||||
- name: Download sources for ${{ matrix.spec }}
|
- name: Download sources for ${{ matrix.spec }}
|
||||||
run: |
|
run: |
|
||||||
spectool -g -R ${{ matrix.spec }}
|
spectool -g -C ~/rpmbuild/SOURCES/ ${{ matrix.spec }}
|
||||||
|
|
||||||
- name: Build RPM from ${{ matrix.spec }}
|
- name: Build SRPM from ${{ matrix.spec }}
|
||||||
run: |
|
run: |
|
||||||
rpmbuild -ba \
|
rpmbuild -bs \
|
||||||
--define "_topdir ${HOME}/rpmbuild" \
|
--define "_topdir ${HOME}/rpmbuild" \
|
||||||
|
--define "_disable_source_fetch 0" \
|
||||||
${{ matrix.spec }}
|
${{ matrix.spec }}
|
||||||
|
PKGNAME=$(rpmspec -q --srpm --queryformat "%{NAME}-%{VERSION}-%{RELEASE}.src.rpm" ${{ matrix.spec }})
|
||||||
|
echo "SRPM_PATH=${HOME}/rpmbuild/SRPMS/${PKGNAME}" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
- name: Build RPM with mock
|
||||||
|
run: |
|
||||||
|
cat > /etc/mock/custom.cfg <<'MOCKEOF'
|
||||||
|
include('/etc/mock/alma+epel-10-x86_64.cfg')
|
||||||
|
config_opts['root'] = 'custom'
|
||||||
|
config_opts['yum.conf'] += """
|
||||||
|
[sonicde-rpm]
|
||||||
|
name=SonicDE RPM
|
||||||
|
baseurl=https://pc-rytteren.dk/forge/api/packages/anders/rpm
|
||||||
|
enabled=1
|
||||||
|
gpgcheck=0
|
||||||
|
|
||||||
|
[xlibre-xserver]
|
||||||
|
name=Copr xlibre-xserver
|
||||||
|
baseurl=https://download.copr.fedorainfracloud.org/results/@xlibre/xlibre-xserver/rhel+epel-10-$basearch/
|
||||||
|
type=rpm-md
|
||||||
|
skip_if_unavailable=True
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=https://download.copr.fedorainfracloud.org/results/@xlibre/xlibre-xserver/pubkey.gpg
|
||||||
|
repo_gpgcheck=0
|
||||||
|
enabled=1
|
||||||
|
"""
|
||||||
|
MOCKEOF
|
||||||
|
|
||||||
|
mock --root custom --scrub=all || true
|
||||||
|
mock --root custom --init
|
||||||
|
mock --root custom --chroot 'groupadd -g 135 mock 2>/dev/null || true; useradd -u 135 -g 135 -d /builddir -s /bin/bash mockbuild 2>/dev/null || true'
|
||||||
|
mock --root custom --resultdir "${HOME}/mock-results" --no-clean --rebuild "${{ env.SRPM_PATH }}"
|
||||||
|
|
||||||
- name: Upload RPMs to Forgejo Package Registry
|
- name: Upload RPMs to Forgejo Package Registry
|
||||||
run: |
|
run: |
|
||||||
FORGEJO_URL="${{ env.GITHUB_SERVER_URL }}"
|
FORGEJO_URL="${{ github.server_url }}"
|
||||||
OWNER="${{ github.repository_owner }}"
|
OWNER="${{ github.repository_owner }}"
|
||||||
TOKEN="${{ secrets.PACKAGE_TOKEN }}"
|
TOKEN="${{ secrets.PACKAGE_TOKEN }}"
|
||||||
|
|
||||||
find "${HOME}/rpmbuild/RPMS" -name "*.rpm" | while read rpm; do
|
find "${HOME}/mock-results" -name "*.rpm" ! -name "*.src.rpm" | while read rpm; do
|
||||||
FILENAME=$(basename "$rpm")
|
FILENAME=$(basename "$rpm")
|
||||||
echo "Uploading $FILENAME ..."
|
echo "Uploading $FILENAME ..."
|
||||||
curl --fail-with-body \
|
curl --fail-with-body \
|
||||||
|
|
@ -60,3 +91,9 @@ jobs:
|
||||||
--upload-file "$rpm" \
|
--upload-file "$rpm" \
|
||||||
"${FORGEJO_URL}/api/packages/${OWNER}/rpm/upload"
|
"${FORGEJO_URL}/api/packages/${OWNER}/rpm/upload"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
- name: Clean up build artifacts
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
rm -rf "${HOME}/mock-results"
|
||||||
|
rm -rf "${HOME}/rpmbuild/SRPMS"
|
||||||
|
|
|
||||||
81
SDL2/SDL2-2.0.22-prefer-wayland.patch
Normal file
81
SDL2/SDL2-2.0.22-prefer-wayland.patch
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
From 68d8a2c6b4f732920df40bd79dc3c18b71a4a349 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Neal Gompa <ngompa@fedoraproject.org>
|
||||||
|
Date: Fri, 29 Apr 2022 23:39:39 -0400
|
||||||
|
Subject: [PATCH] Revert "Revert "video: Prefer Wayland over X11""
|
||||||
|
|
||||||
|
For Fedora/RHEL, we want to continue using Wayland by default.
|
||||||
|
|
||||||
|
The majority of issues around Wayland by default seem to center
|
||||||
|
around cases that are issues for the Steam Runtime's bundled
|
||||||
|
copy of SDL and proprietary games that depend on that runtime.
|
||||||
|
|
||||||
|
These issues do not apply to us.
|
||||||
|
|
||||||
|
This reverts commit 254fcc90eb22bb159ab365ad956222a9c5632841.
|
||||||
|
---
|
||||||
|
src/video/SDL_video.c | 24 ++++++++++++------------
|
||||||
|
1 file changed, 12 insertions(+), 12 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c
|
||||||
|
index 2b896c44b..6f31f4c9e 100644
|
||||||
|
--- a/src/video/SDL_video.c
|
||||||
|
+++ b/src/video/SDL_video.c
|
||||||
|
@@ -61,12 +61,12 @@ static VideoBootStrap *bootstrap[] = {
|
||||||
|
#if SDL_VIDEO_DRIVER_COCOA
|
||||||
|
&COCOA_bootstrap,
|
||||||
|
#endif
|
||||||
|
-#if SDL_VIDEO_DRIVER_X11
|
||||||
|
- &X11_bootstrap,
|
||||||
|
-#endif
|
||||||
|
#if SDL_VIDEO_DRIVER_WAYLAND
|
||||||
|
&Wayland_bootstrap,
|
||||||
|
#endif
|
||||||
|
+#if SDL_VIDEO_DRIVER_X11
|
||||||
|
+ &X11_bootstrap,
|
||||||
|
+#endif
|
||||||
|
#if SDL_VIDEO_DRIVER_VIVANTE
|
||||||
|
&VIVANTE_bootstrap,
|
||||||
|
#endif
|
||||||
|
@@ -4275,12 +4275,12 @@ SDL_IsScreenKeyboardShown(SDL_Window *window)
|
||||||
|
#if SDL_VIDEO_DRIVER_UIKIT
|
||||||
|
#include "uikit/SDL_uikitmessagebox.h"
|
||||||
|
#endif
|
||||||
|
-#if SDL_VIDEO_DRIVER_X11
|
||||||
|
-#include "x11/SDL_x11messagebox.h"
|
||||||
|
-#endif
|
||||||
|
#if SDL_VIDEO_DRIVER_WAYLAND
|
||||||
|
#include "wayland/SDL_waylandmessagebox.h"
|
||||||
|
#endif
|
||||||
|
+#if SDL_VIDEO_DRIVER_X11
|
||||||
|
+#include "x11/SDL_x11messagebox.h"
|
||||||
|
+#endif
|
||||||
|
#if SDL_VIDEO_DRIVER_HAIKU
|
||||||
|
#include "haiku/SDL_bmessagebox.h"
|
||||||
|
#endif
|
||||||
|
@@ -4388,17 +4388,17 @@ SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid)
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
-#if SDL_VIDEO_DRIVER_X11
|
||||||
|
+#if SDL_VIDEO_DRIVER_WAYLAND
|
||||||
|
if (retval == -1 &&
|
||||||
|
- SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_X11) &&
|
||||||
|
- X11_ShowMessageBox(messageboxdata, buttonid) == 0) {
|
||||||
|
+ SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_WAYLAND) &&
|
||||||
|
+ Wayland_ShowMessageBox(messageboxdata, buttonid) == 0) {
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
-#if SDL_VIDEO_DRIVER_WAYLAND
|
||||||
|
+#if SDL_VIDEO_DRIVER_X11
|
||||||
|
if (retval == -1 &&
|
||||||
|
- SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_WAYLAND) &&
|
||||||
|
- Wayland_ShowMessageBox(messageboxdata, buttonid) == 0) {
|
||||||
|
+ SDL_MessageboxValidForDriver(messageboxdata, SDL_SYSWM_X11) &&
|
||||||
|
+ X11_ShowMessageBox(messageboxdata, buttonid) == 0) {
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
478
SDL2/SDL2.spec
Normal file
478
SDL2/SDL2.spec
Normal file
|
|
@ -0,0 +1,478 @@
|
||||||
|
# For the generated library symbol suffix
|
||||||
|
%if 0%{?__isa_bits} == 32
|
||||||
|
%global libsymbolsuffix %{nil}
|
||||||
|
%else
|
||||||
|
%global libsymbolsuffix ()(%{__isa_bits}bit)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# For declaring rich dependency on libdecor
|
||||||
|
%global libdecor_majver 0
|
||||||
|
|
||||||
|
Name: SDL2
|
||||||
|
Version: 2.28.5
|
||||||
|
Release: 6%{?dist}
|
||||||
|
Summary: Cross-platform multimedia library
|
||||||
|
License: Zlib AND MIT AND Apache-2.0 AND (Apache-2.0 OR MIT)
|
||||||
|
URL: https://www.libsdl.org/
|
||||||
|
Source0: https://www.libsdl.org/release/%{name}-%{version}.tar.gz
|
||||||
|
Source1: SDL_config.h
|
||||||
|
Source2: SDL_revision.h
|
||||||
|
|
||||||
|
Patch0: multilib.patch
|
||||||
|
# Prefer Wayland by default
|
||||||
|
Patch1: SDL2-2.0.22-prefer-wayland.patch
|
||||||
|
|
||||||
|
BuildRequires: git-core
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: alsa-lib-devel
|
||||||
|
BuildRequires: mesa-libGL-devel
|
||||||
|
BuildRequires: mesa-libGLU-devel
|
||||||
|
BuildRequires: mesa-libEGL-devel
|
||||||
|
BuildRequires: mesa-libGLES-devel
|
||||||
|
BuildRequires: libXext-devel
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: libXi-devel
|
||||||
|
BuildRequires: libXrandr-devel
|
||||||
|
BuildRequires: libXrender-devel
|
||||||
|
BuildRequires: libXinerama-devel
|
||||||
|
BuildRequires: libXcursor-devel
|
||||||
|
BuildRequires: systemd-devel
|
||||||
|
BuildRequires: pkgconfig(libusb-1.0)
|
||||||
|
# PulseAudio
|
||||||
|
BuildRequires: pkgconfig(libpulse-simple)
|
||||||
|
# Jack
|
||||||
|
BuildRequires: pkgconfig(jack)
|
||||||
|
# PipeWire
|
||||||
|
BuildRequires: pkgconfig(libpipewire-0.3)
|
||||||
|
# D-Bus
|
||||||
|
BuildRequires: pkgconfig(dbus-1)
|
||||||
|
# IBus
|
||||||
|
BuildRequires: pkgconfig(ibus-1.0)
|
||||||
|
# Wayland
|
||||||
|
BuildRequires: pkgconfig(libdecor-%{libdecor_majver})
|
||||||
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
|
BuildRequires: pkgconfig(wayland-egl)
|
||||||
|
BuildRequires: pkgconfig(wayland-cursor)
|
||||||
|
BuildRequires: pkgconfig(wayland-protocols)
|
||||||
|
BuildRequires: pkgconfig(wayland-scanner)
|
||||||
|
BuildRequires: pkgconfig(xkbcommon)
|
||||||
|
# Vulkan
|
||||||
|
BuildRequires: vulkan-devel
|
||||||
|
# KMS
|
||||||
|
BuildRequires: mesa-libgbm-devel
|
||||||
|
BuildRequires: libdrm-devel
|
||||||
|
|
||||||
|
# Ensure libdecor is pulled in when libwayland-client is (rhbz#1992804)
|
||||||
|
Requires: (libdecor-%{libdecor_majver}.so.%{libdecor_majver}%{libsymbolsuffix} if libwayland-client)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
|
||||||
|
to provide fast access to the graphics frame buffer and audio device.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Files needed to develop Simple DirectMedia Layer applications
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: mesa-libEGL-devel%{?_isa}
|
||||||
|
Requires: mesa-libGLES-devel%{?_isa}
|
||||||
|
Requires: libX11-devel%{?_isa}
|
||||||
|
# Conflict with versions before libSDLmain moved here
|
||||||
|
Conflicts: %{name}-static < 2.0.18-4
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
|
||||||
|
to provide fast access to the graphics frame buffer and audio device. This
|
||||||
|
package provides the libraries, include files, and other resources needed for
|
||||||
|
developing SDL applications.
|
||||||
|
|
||||||
|
%package static
|
||||||
|
Summary: Static libraries for SDL2
|
||||||
|
# Needed to keep CMake happy
|
||||||
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||||
|
# Conflict with versions before libSDLmain moved to -devel
|
||||||
|
Conflicts: %{name}-devel < 2.0.18-4
|
||||||
|
|
||||||
|
%description static
|
||||||
|
Static libraries for SDL2.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -S git
|
||||||
|
sed -i -e 's/\r//g' TODO.txt README.md WhatsNew.txt BUGS.txt LICENSE.txt CREDITS.txt README-SDL.txt
|
||||||
|
|
||||||
|
%build
|
||||||
|
# Deal with new CMake policy around whitespace in LDFLAGS...
|
||||||
|
export LDFLAGS="%{shrink:%{build_ldflags}}"
|
||||||
|
|
||||||
|
%cmake \
|
||||||
|
-DSDL_DLOPEN=ON \
|
||||||
|
-DSDL_VIDEO_KMSDRM=ON \
|
||||||
|
-DSDL_ARTS=OFF \
|
||||||
|
-DSDL_ESD=OFF \
|
||||||
|
-DSDL_NAS=OFF \
|
||||||
|
-DSDL_PULSEAUDIO_SHARED=ON \
|
||||||
|
-DSDL_JACK_SHARED=ON \
|
||||||
|
-DSDL_PIPEWIRE=OFF \
|
||||||
|
-DSDL_ALSA=ON \
|
||||||
|
-DSDL_VIDEO_WAYLAND=ON \
|
||||||
|
-DSDL_LIBDECOR_SHARED=ON \
|
||||||
|
-DSDL_VIDEO_VULKAN=ON \
|
||||||
|
-DSDL_SSE3=OFF \
|
||||||
|
-DSDL_RPATH=OFF \
|
||||||
|
-DSDL_STATIC=ON \
|
||||||
|
-DSDL_STATIC_PIC=ON \
|
||||||
|
%ifarch ppc64le
|
||||||
|
-DSDL_ALTIVEC=OFF \
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
# Rename SDL_config.h to SDL_config-<arch>.h to avoid file conflicts on
|
||||||
|
# multilib systems and install SDL_config.h wrapper
|
||||||
|
mv %{buildroot}%{_includedir}/SDL2/SDL_config.h %{buildroot}%{_includedir}/SDL2/SDL_config-%{_arch}.h
|
||||||
|
install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/SDL2/SDL_config.h
|
||||||
|
|
||||||
|
# Rename SDL_revision.h to SDL_revision-<arch>.h to avoid file conflicts on
|
||||||
|
# multilib systems and install SDL_revision.h wrapper
|
||||||
|
# TODO: Figure out how in the hell the SDL_REVISION changes between architectures on the same SRPM.
|
||||||
|
mv %{buildroot}%{_includedir}/SDL2/SDL_revision.h %{buildroot}%{_includedir}/SDL2/SDL_revision-%{_arch}.h
|
||||||
|
install -p -m 644 %{SOURCE2} %{buildroot}%{_includedir}/SDL2/SDL_revision.h
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE.txt
|
||||||
|
%doc BUGS.txt CREDITS.txt README-SDL.txt
|
||||||
|
%{_libdir}/libSDL2-2.0.so.0*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%doc README.md TODO.txt WhatsNew.txt
|
||||||
|
%{_bindir}/*-config
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
%{_libdir}/libSDL2main.a
|
||||||
|
%{_libdir}/pkgconfig/sdl2.pc
|
||||||
|
%dir %{_libdir}/cmake/SDL2
|
||||||
|
%{_libdir}/cmake/SDL2/SDL2Config*.cmake
|
||||||
|
%{_libdir}/cmake/SDL2/SDL2Targets*.cmake
|
||||||
|
%{_libdir}/cmake/SDL2/SDL2mainTargets*.cmake
|
||||||
|
%{_libdir}/cmake/SDL2/sdlfind.cmake
|
||||||
|
%{_includedir}/SDL2
|
||||||
|
%{_datadir}/aclocal/*
|
||||||
|
%{_libdir}/libSDL2_test.a
|
||||||
|
%{_libdir}/cmake/SDL2/SDL2testTargets*.cmake
|
||||||
|
|
||||||
|
%files static
|
||||||
|
%license LICENSE.txt
|
||||||
|
%{_libdir}/libSDL2.a
|
||||||
|
%{_libdir}/cmake/SDL2/SDL2staticTargets*.cmake
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2.28.5-6
|
||||||
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2.28.5-5
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Tue Jun 04 2024 Wim Taymans <wtaymans@redhat.com> - 2.28.5-4
|
||||||
|
- Bump version after removing BR: libXScrnSaver-devel
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.28.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.28.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Nov 5 2023 Tom Callaway <spot@fedoraproject.org> - 2.28.5-1
|
||||||
|
- update to 2.28.5
|
||||||
|
|
||||||
|
* Mon Oct 2 2023 Tom Callaway <spot@fedoraproject.org> - 2.28.4-1
|
||||||
|
- update to 2.28.4
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.26.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 1 2023 Tom Callaway <spot@fedoraproject.org> - 2.26.5-1
|
||||||
|
- update to 2.26.5
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Tom Callaway <spot@fedoraproject.org> - 2.26.4-1
|
||||||
|
- update to 2.26.4
|
||||||
|
|
||||||
|
* Wed Feb 8 2023 Tom Callaway <spot@fedoraproject.org> - 2.26.3-1
|
||||||
|
- update to 2.26.3
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Tom Callaway <spot@fedoraproject.org> - 2.26.2-1
|
||||||
|
- update to 2.26.2
|
||||||
|
|
||||||
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.26.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 22 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.26.0-1
|
||||||
|
- Update to 2.26.0
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.24.0-1
|
||||||
|
- Update to 2.24.0
|
||||||
|
- Drop backported patches included in this release
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 07 2022 Ian Mullins <imullins@redhat.com> - 2.0.22-3
|
||||||
|
- Fix assumption that DRI_DEVNAME begins at 0 patch
|
||||||
|
|
||||||
|
* Sat Apr 30 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.22-2
|
||||||
|
- Use the correct BR for libusb
|
||||||
|
|
||||||
|
* Sat Apr 30 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.22-1
|
||||||
|
- Update to 2.0.22
|
||||||
|
- Drop backported patches included in this release
|
||||||
|
|
||||||
|
* Tue Feb 08 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.20-3
|
||||||
|
- Backport Wayland and PipeWire fixes from upstream
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 11 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.20-1
|
||||||
|
- Update to 2.0.20
|
||||||
|
- Drop backported patches included in this release
|
||||||
|
|
||||||
|
* Fri Jan 07 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.18-5
|
||||||
|
- Refresh SDL target split patch to include targets correctly
|
||||||
|
|
||||||
|
* Fri Jan 07 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.18-4
|
||||||
|
- Move libSDLmain from -static to -devel
|
||||||
|
|
||||||
|
* Tue Jan 04 2022 Neal Gompa <ngompa@fedoraproject.org> - 2.0.18-3
|
||||||
|
- Backport fix for building against wayland-1.20+
|
||||||
|
- Add patch to split SDL2 CMake targets for static libraries
|
||||||
|
|
||||||
|
* Wed Dec 01 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.18-2
|
||||||
|
- Use correct build options
|
||||||
|
|
||||||
|
* Wed Dec 01 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.18-1
|
||||||
|
- Update to 2.0.18
|
||||||
|
|
||||||
|
* Wed Oct 6 2021 Tom Callaway <spot@fedoraproject.org> - 2.0.16-4
|
||||||
|
- fix multilib conflict with SDL_revision.h (bz 2008838)
|
||||||
|
|
||||||
|
* Sun Sep 26 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.16-3
|
||||||
|
- Backport select fixes from upstream
|
||||||
|
+ Support legacy 'pulse' alias for PulseAudio driver
|
||||||
|
+ Fix handling of Ctrl key on Wayland
|
||||||
|
+ Add support for HiDPI cursors on Wayland
|
||||||
|
+ Fix keymap support on Wayland (rhbz#2007969)
|
||||||
|
+ Use EGL_EXT_present_opaque when available on Wayland
|
||||||
|
+ Expose xdg_toplevel to SysWM on Wayland
|
||||||
|
|
||||||
|
* Sun Aug 22 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.16-2
|
||||||
|
- Ensure libdecor is pulled in when libwayland-client is (rhbz#1992804)
|
||||||
|
|
||||||
|
* Tue Aug 10 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.16-1
|
||||||
|
- Update to 2.0.16
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.14-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 3 2021 Tom Callaway <spot@fedoraproject.org> - 2.0.14-5
|
||||||
|
- add -static Requires to -devel to make CMake stop failing on missing files (bz1965359)
|
||||||
|
|
||||||
|
* Mon May 17 2021 Neal Gompa <ngompa13@gmail.com> - 2.0.14-4
|
||||||
|
- Switch to CMake to build SDL2
|
||||||
|
- Build JACK support unconditionally since PipeWire-JACK exists in RHEL 9
|
||||||
|
|
||||||
|
* Mon Feb 22 2021 Hans de Goede <hdegoede@redhat.com> - 2.0.14-3
|
||||||
|
- SDL2 no longer uses audiofile, drop the audiofile-devel BuildRequires
|
||||||
|
|
||||||
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.14-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2021 Pete Walter <pwalter@fedoraproject.org> - 2.0.14-1
|
||||||
|
- Update to 2.0.14
|
||||||
|
- Rebase multilib.patch
|
||||||
|
- Don't use globs in the form of libFOO.so.* for listing files
|
||||||
|
|
||||||
|
* Tue Jan 12 2021 Wim Taymans <wtaymans@redhat.com> - 2.0.12-5
|
||||||
|
- Disable JACK on rhel >= 8
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.12-4
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.12-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 2.0.12-2
|
||||||
|
- Use make macros
|
||||||
|
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||||
|
|
||||||
|
* Wed Mar 11 2020 Pete Walter <pwalter@fedoraproject.org> - 2.0.12-1
|
||||||
|
- Update to 2.0.12
|
||||||
|
|
||||||
|
* Tue Feb 11 2020 Tom Callaway <spot@fedoraproject.org> - 2.0.10-3
|
||||||
|
- apply upstream fix for FTBFS
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Pete Walter <pwalter@fedoraproject.org> - 2.0.10-1
|
||||||
|
- Update to 2.0.10
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.9-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 15 2019 Tom Callaway <spot@fedoraproject.org> - 2.0.9-3
|
||||||
|
- use khrplatform defines, not ptrdiff_t
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.9-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 2 2018 Tom Callaway <spot@fedoraproject.org> - 2.0.9-1
|
||||||
|
- update to 2.0.9
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 21 2018 Adam Jackson <ajax@redhat.com> - 2.0.8-5
|
||||||
|
- Backport a crash/hang fix from 2.0.9 (#1580541)
|
||||||
|
|
||||||
|
* Wed Apr 11 2018 Tom Callaway <spot@fedoraproject.org> - 2.0.8-4
|
||||||
|
- enable video-kmsdrm
|
||||||
|
|
||||||
|
* Fri Mar 30 2018 David Abdurachmanov <david.abdurachmanov@gmail.com> - 2.0.8-3
|
||||||
|
- Add riscv64 to SDL_config.h
|
||||||
|
|
||||||
|
* Sun Mar 04 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.8-2
|
||||||
|
- Disable altivec on ppc64le (RHBZ #1551338)
|
||||||
|
|
||||||
|
* Sun Mar 4 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.0.8-1
|
||||||
|
- Update to 2.0.8
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-3
|
||||||
|
- Switch to %%ldconfig_scriptlets
|
||||||
|
|
||||||
|
* Sun Nov 05 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-2
|
||||||
|
- Fix IBus
|
||||||
|
|
||||||
|
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-1
|
||||||
|
- Update to 2.0.7
|
||||||
|
|
||||||
|
* Thu Oct 19 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-4
|
||||||
|
- Fully fix last overflow
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-3
|
||||||
|
- Fix potential overflow in surface allocation
|
||||||
|
|
||||||
|
* Thu Oct 05 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-2
|
||||||
|
- Fix invalid dbus arguments
|
||||||
|
|
||||||
|
* Sat Sep 23 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-1
|
||||||
|
- Update to 2.0.6
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 27 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.0.5-3
|
||||||
|
- Fix NULL dereference (RHBZ #1416945)
|
||||||
|
|
||||||
|
* Wed Oct 26 2016 Dan Horák <dan[at]danny.cz> - 2.0.5-2
|
||||||
|
- fix FTBFS on ppc64/ppc64le
|
||||||
|
|
||||||
|
* Thu Oct 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.5-1
|
||||||
|
- Update to 2.0.5 (RHBZ #1387238)
|
||||||
|
|
||||||
|
* Mon Sep 05 2016 Kalev Lember <klember@redhat.com> - 2.0.4-9
|
||||||
|
- Backport Wayland fixes from upstream
|
||||||
|
|
||||||
|
* Sun Aug 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.0.4-8
|
||||||
|
- Fix whitespaces in CMake file (RHBZ #1366868)
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.4-7
|
||||||
|
- Remove useless Requirements from -devel subpkg
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.4-6
|
||||||
|
- Add ibus support
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Joseph Mullally <jwmullally@gmail.com> - 2.0.4-5
|
||||||
|
- fix Wayland dynamic symbol loading (bz1354155)
|
||||||
|
|
||||||
|
* Thu Feb 25 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-4
|
||||||
|
- enable static subpackage (bz1253930)
|
||||||
|
|
||||||
|
* Fri Feb 5 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-3
|
||||||
|
- fix compile against latest wayland
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 04 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-1
|
||||||
|
- update to 2.0.4
|
||||||
|
|
||||||
|
* Fri Sep 04 2015 Michal Toman <mtoman@fedoraproject.org> - 2.0.3-7
|
||||||
|
- Add support for MIPS architecture to SDL_config.h
|
||||||
|
|
||||||
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 2 2015 Tom Callaway <spot@fedoraproject.org> - 2.0.3-5
|
||||||
|
- remove code preventing builds with ancient gcc
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 11 2014 Karsten Hopp <karsten@redhat.com> 2.0.3-3
|
||||||
|
- fix filename of SDL_config.h for ppc64le
|
||||||
|
|
||||||
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.3-1
|
||||||
|
- 2.0.3 upstream release
|
||||||
|
|
||||||
|
* Sat Mar 08 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.2-1
|
||||||
|
- 2.0.2 upstream release
|
||||||
|
- Enable wayland backend
|
||||||
|
|
||||||
|
* Tue Dec 10 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.1-2
|
||||||
|
- Add libXinerama, libudev, libXcursor support (RHBZ #1039702)
|
||||||
|
|
||||||
|
* Thu Oct 24 2013 Tom Callaway <spot@fedoraproject.org> - 2.0.1-1
|
||||||
|
- update to 2.0.1
|
||||||
|
|
||||||
|
* Sat Aug 24 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-3
|
||||||
|
- Fix multilib issues
|
||||||
|
|
||||||
|
* Tue Aug 13 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-2
|
||||||
|
- SDL2 is released. Announce:
|
||||||
|
- http://lists.libsdl.org/pipermail/sdl-libsdl.org/2013-August/089854.html
|
||||||
|
|
||||||
|
* Sat Aug 10 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc4
|
||||||
|
- Update to latest SDL2 (08.08.2013)
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc3
|
||||||
|
- Fix Licenses
|
||||||
|
- some cleanups in spec
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc2
|
||||||
|
- Delete -static package
|
||||||
|
- Fix License tag
|
||||||
|
- Fix end-of-line in documents
|
||||||
|
- Remove all spike-nails EL-specify (if someone will want to do - 'patches are welcome')
|
||||||
|
- Change Release tag to .rcX%%{?dist} (maintainer has changed released tarballs)
|
||||||
|
|
||||||
|
* Mon Jul 29 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc1
|
||||||
|
- Some fixes in spec and cleanup
|
||||||
|
|
||||||
|
* Mon Jul 29 2013 Jon Ciesla <limburgher@gmail.com> - 2.0.0-1
|
||||||
|
- Ported from SDL 1.2.15-10
|
||||||
83
SDL2/SDL_config.h
Normal file
83
SDL2/SDL_config.h
Normal file
|
|
@ -0,0 +1,83 @@
|
||||||
|
/*
|
||||||
|
Simple DirectMedia Layer
|
||||||
|
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would be
|
||||||
|
appreciated but is not required.
|
||||||
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
misrepresented as being the original software.
|
||||||
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This SDL_config.h is a wrapper include file for the original SDL_config.h,
|
||||||
|
* which has been renamed to SDL_config-<arch>.h. There are conflicts for the
|
||||||
|
* original SDL_config.h on multilib systems, which result from arch-specific
|
||||||
|
* configuration options. Please do not use the arch-specific file directly.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2013 Igor Gnatenko
|
||||||
|
* Igor Gnatenko <i.gnatenko.brain@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file SDL_config.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef SDL_config_wrapper_h
|
||||||
|
#error "SDL_config_wrapper_h should not be defined!"
|
||||||
|
#endif
|
||||||
|
#define SDL_config_wrapper_h
|
||||||
|
|
||||||
|
#if defined(__i386__)
|
||||||
|
#include "SDL_config-i386.h"
|
||||||
|
#elif defined(__ia64__)
|
||||||
|
#include "SDL_config-ia64.h"
|
||||||
|
#elif defined(__powerpc64__)
|
||||||
|
# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
#include "SDL_config-ppc64.h"
|
||||||
|
# else
|
||||||
|
#include "SDL_config-ppc64le.h"
|
||||||
|
# endif
|
||||||
|
#elif defined(__powerpc__)
|
||||||
|
#include "SDL_config-ppc.h"
|
||||||
|
#elif defined(__s390x__)
|
||||||
|
#include "SDL_config-s390x.h"
|
||||||
|
#elif defined(__s390__)
|
||||||
|
#include "SDL_config-s390.h"
|
||||||
|
#elif defined(__x86_64__)
|
||||||
|
#include "SDL_config-x86_64.h"
|
||||||
|
#elif defined(__arm__)
|
||||||
|
#include "SDL_config-arm.h"
|
||||||
|
#elif defined(__alpha__)
|
||||||
|
#include "SDL_config-alpha.h"
|
||||||
|
#elif defined(__sparc__) && defined (__arch64__)
|
||||||
|
#include "SDL_config-sparc64.h"
|
||||||
|
#elif defined(__sparc__)
|
||||||
|
#include "SDL_config-sparc.h"
|
||||||
|
#elif defined(__aarch64__)
|
||||||
|
#include "SDL_config-aarch64.h"
|
||||||
|
#elif defined(__mips64) && defined(__MIPSEL__)
|
||||||
|
#include "SDL_config-mips64el.h"
|
||||||
|
#elif defined(__mips64)
|
||||||
|
#include "SDL_config-mips64.h"
|
||||||
|
#elif defined(__mips) && defined(__MIPSEL__)
|
||||||
|
#include "SDL_config-mipsel.h"
|
||||||
|
#elif defined(__mips)
|
||||||
|
#include "SDL_config-mips.h"
|
||||||
|
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
|
||||||
|
#include "SDL_config-riscv64.h"
|
||||||
|
#else
|
||||||
|
#error "The SDL2-devel package is not usable with the architecture."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#undef SDL_config_wrapper_h
|
||||||
83
SDL2/SDL_revision.h
Normal file
83
SDL2/SDL_revision.h
Normal file
|
|
@ -0,0 +1,83 @@
|
||||||
|
/*
|
||||||
|
Simple DirectMedia Layer
|
||||||
|
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would be
|
||||||
|
appreciated but is not required.
|
||||||
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
misrepresented as being the original software.
|
||||||
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This SDL_revision.h is a wrapper include file for the original SDL_revision.h,
|
||||||
|
* which has been renamed to SDL_revision-<arch>.h. There are conflicts for the
|
||||||
|
* original SDL_revision.h on multilib systems, which result from REVISION
|
||||||
|
* inconsistency between architecture builds, though, I'm not sure why.
|
||||||
|
* Computers are weird.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2021 Tom Callaway <spotrh@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file SDL_revision.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef SDL_revision_wrapper_h
|
||||||
|
#error "SDL_revision_wrapper_h should not be defined!"
|
||||||
|
#endif
|
||||||
|
#define SDL_revision_wrapper_h
|
||||||
|
|
||||||
|
#if defined(__i386__)
|
||||||
|
#include "SDL_revision-i386.h"
|
||||||
|
#elif defined(__ia64__)
|
||||||
|
#include "SDL_revision-ia64.h"
|
||||||
|
#elif defined(__powerpc64__)
|
||||||
|
# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
#include "SDL_revision-ppc64.h"
|
||||||
|
# else
|
||||||
|
#include "SDL_revision-ppc64le.h"
|
||||||
|
# endif
|
||||||
|
#elif defined(__powerpc__)
|
||||||
|
#include "SDL_revision-ppc.h"
|
||||||
|
#elif defined(__s390x__)
|
||||||
|
#include "SDL_revision-s390x.h"
|
||||||
|
#elif defined(__s390__)
|
||||||
|
#include "SDL_revision-s390.h"
|
||||||
|
#elif defined(__x86_64__)
|
||||||
|
#include "SDL_revision-x86_64.h"
|
||||||
|
#elif defined(__arm__)
|
||||||
|
#include "SDL_revision-arm.h"
|
||||||
|
#elif defined(__alpha__)
|
||||||
|
#include "SDL_revision-alpha.h"
|
||||||
|
#elif defined(__sparc__) && defined (__arch64__)
|
||||||
|
#include "SDL_revision-sparc64.h"
|
||||||
|
#elif defined(__sparc__)
|
||||||
|
#include "SDL_revision-sparc.h"
|
||||||
|
#elif defined(__aarch64__)
|
||||||
|
#include "SDL_revision-aarch64.h"
|
||||||
|
#elif defined(__mips64) && defined(__MIPSEL__)
|
||||||
|
#include "SDL_revision-mips64el.h"
|
||||||
|
#elif defined(__mips64)
|
||||||
|
#include "SDL_revision-mips64.h"
|
||||||
|
#elif defined(__mips) && defined(__MIPSEL__)
|
||||||
|
#include "SDL_revision-mipsel.h"
|
||||||
|
#elif defined(__mips)
|
||||||
|
#include "SDL_revision-mips.h"
|
||||||
|
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
|
||||||
|
#include "SDL_revision-riscv64.h"
|
||||||
|
#else
|
||||||
|
#error "The SDL2-devel package is not usable with the architecture."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#undef SDL_revision_wrapper_h
|
||||||
27
SDL2/multilib.patch
Normal file
27
SDL2/multilib.patch
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
diff --git a/sdl2-config.in b/sdl2-config.in
|
||||||
|
index f6eca7668..93460f7ae 100644
|
||||||
|
--- a/sdl2-config.in
|
||||||
|
+++ b/sdl2-config.in
|
||||||
|
@@ -7,7 +7,6 @@ bindir=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)")
|
||||||
|
prefix=$(cd -P -- "$bindir/@bin_prefix_relpath@" && printf '%s\n' "$(pwd -P)")
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
exec_prefix_set=no
|
||||||
|
-libdir=@libdir@
|
||||||
|
|
||||||
|
@ENABLE_STATIC_FALSE@usage="\
|
||||||
|
@ENABLE_STATIC_FALSE@Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
|
||||||
|
@@ -49,12 +48,11 @@ while test $# -gt 0; do
|
||||||
|
echo -I@includedir@/SDL2 @SDL_CFLAGS@
|
||||||
|
;;
|
||||||
|
@ENABLE_SHARED_TRUE@ --libs)
|
||||||
|
-@ENABLE_SHARED_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@
|
||||||
|
+@ENABLE_SHARED_TRUE@ echo @SDL_RLD_FLAGS@ @SDL_LIBS@
|
||||||
|
@ENABLE_SHARED_TRUE@ ;;
|
||||||
|
@ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs)
|
||||||
|
@ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs)
|
||||||
|
-@ENABLE_STATIC_TRUE@ sdl_static_libs=$(echo "@SDL_LIBS@ @SDL_STATIC_LIBS@" | sed -E "s#-lSDL2[ $]#$libdir/libSDL2.a #g")
|
||||||
|
-@ENABLE_STATIC_TRUE@ echo -L@libdir@ $sdl_static_libs
|
||||||
|
+@ENABLE_STATIC_TRUE@ echo @SDL_LIBS@ @SDL_STATIC_LIBS@
|
||||||
|
@ENABLE_STATIC_TRUE@ ;;
|
||||||
|
*)
|
||||||
|
echo "${usage}" 1>&2
|
||||||
BIN
SonicDE-package-mapping.xlsx
Normal file
BIN
SonicDE-package-mapping.xlsx
Normal file
Binary file not shown.
126
copr-build.sh
Executable file
126
copr-build.sh
Executable file
|
|
@ -0,0 +1,126 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
COPR="andersrh/sonicDE"
|
||||||
|
GIT_URL="https://pc-rytteren.dk/forge/anders/SonicDE-rpmspecs.git"
|
||||||
|
BRANCH="10_2"
|
||||||
|
METHOD="rpkg"
|
||||||
|
|
||||||
|
# Build order tiers (sequential within tier for dependency safety)
|
||||||
|
TIER1=(
|
||||||
|
sonic-silver-theme
|
||||||
|
sonic-frameworks-keybind
|
||||||
|
sonic-frameworks-windowsystem
|
||||||
|
sonic-keybind-daemon
|
||||||
|
sonic-sysguard-library
|
||||||
|
sonic-screen-library
|
||||||
|
sonic-interface-libraries
|
||||||
|
sonic-system-info
|
||||||
|
sonic-login-manager
|
||||||
|
)
|
||||||
|
|
||||||
|
TIER2=(
|
||||||
|
sonic-screen
|
||||||
|
sonic-screenlocker
|
||||||
|
)
|
||||||
|
|
||||||
|
TIER3=(
|
||||||
|
sonic-win
|
||||||
|
)
|
||||||
|
|
||||||
|
TIER4=(
|
||||||
|
sonic-workspace
|
||||||
|
)
|
||||||
|
|
||||||
|
TIER5=(
|
||||||
|
sonic-desktop-interface
|
||||||
|
)
|
||||||
|
|
||||||
|
# Submit SCM build to Copr (blocks until completion by default)
|
||||||
|
submit_scm() {
|
||||||
|
local pkg=$1
|
||||||
|
echo "=== Bygger $pkg i Copr (SCM) ==="
|
||||||
|
copr-cli buildscm "$COPR" \
|
||||||
|
--clone-url "$GIT_URL" \
|
||||||
|
--commit "$BRANCH" \
|
||||||
|
--subdir "$pkg" \
|
||||||
|
--spec "$pkg.spec" \
|
||||||
|
--method "$METHOD"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Submit tier in parallel
|
||||||
|
submit_tier() {
|
||||||
|
local -n tier=$1
|
||||||
|
local tier_name=$2
|
||||||
|
local pids=()
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "========================================"
|
||||||
|
echo " $tier_name"
|
||||||
|
echo "========================================"
|
||||||
|
|
||||||
|
for pkg in "${tier[@]}"; do
|
||||||
|
submit_scm "$pkg" &
|
||||||
|
pids+=($!)
|
||||||
|
done
|
||||||
|
|
||||||
|
# Wait for all builds in this tier
|
||||||
|
for pid in "${pids[@]}"; do
|
||||||
|
wait $pid || { echo "FEJL: Bygning fejlede i $tier_name"; exit 1; }
|
||||||
|
done
|
||||||
|
echo " $tier_name færdig"
|
||||||
|
}
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "Brug: $0 [tier1|tier2|tier3|tier4|tier5|all ...]"
|
||||||
|
echo " tier1 - Byg Tier 1 pakker (uden afhængigheder)"
|
||||||
|
echo " tier2 - Byg Tier 2 pakker"
|
||||||
|
echo " tier3 - Byg Tier 3 pakker"
|
||||||
|
echo " tier4 - Byg Tier 4 pakker"
|
||||||
|
echo " tier5 - Byg Tier 5 pakker"
|
||||||
|
echo " all - Byg alle tiers (default hvis intet angivet)"
|
||||||
|
echo ""
|
||||||
|
echo "Eksempler:"
|
||||||
|
echo " $0 tier2 # Kør kun Tier 2"
|
||||||
|
echo " $0 tier1 tier2 # Kør Tier 1 og 2"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Determine which tiers to run
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
set -- all
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Validate args
|
||||||
|
for arg; do
|
||||||
|
case "$arg" in
|
||||||
|
tier1|tier2|tier3|tier4|tier5|all) ;;
|
||||||
|
*) echo "Ukendt argument: $arg"; usage ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Bygger SonicDE pakker i Copr fra git repo"
|
||||||
|
echo "COPR: $COPR"
|
||||||
|
echo "GIT: $GIT_URL"
|
||||||
|
echo "Branch: $BRANCH"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
for arg; do
|
||||||
|
case "$arg" in
|
||||||
|
tier1) submit_tier TIER1 "Tier 1" ;;
|
||||||
|
tier2) submit_tier TIER2 "Tier 2" ;;
|
||||||
|
tier3) submit_tier TIER3 "Tier 3" ;;
|
||||||
|
tier4) submit_tier TIER4 "Tier 4" ;;
|
||||||
|
tier5) submit_tier TIER5 "Tier 5" ;;
|
||||||
|
all)
|
||||||
|
submit_tier TIER1 "Tier 1"
|
||||||
|
submit_tier TIER2 "Tier 2"
|
||||||
|
submit_tier TIER3 "Tier 3"
|
||||||
|
submit_tier TIER4 "Tier 4"
|
||||||
|
submit_tier TIER5 "Tier 5"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "Kørsel færdig."
|
||||||
16
kde-to-sonic.csv
Executable file
16
kde-to-sonic.csv
Executable file
|
|
@ -0,0 +1,16 @@
|
||||||
|
kf6-kglobalaccel,sonic-frameworks-keybind,ok
|
||||||
|
kf6-kwindowsystem,sonic-frameworks-windowsystem,ok
|
||||||
|
libksysguard,sonic-sysguard-library,ok
|
||||||
|
kinfocenter,sonic-system-info,maybe rebuild with lang oldname
|
||||||
|
libkscreen,sonic-screen-library,ok
|
||||||
|
kglobalacceld,sonic-keybind-daemon,ok
|
||||||
|
libplasma,sonic-interface-libraries,ok
|
||||||
|
kscreen,sonic-screen,maybe rebuild with lang oldname
|
||||||
|
kscreenlocker,sonic-screenlocker,! patch version number to 6.6.4
|
||||||
|
kwin,sonic-win,ok
|
||||||
|
plasma-workspace,sonic-workspace,ok
|
||||||
|
plasma-login-manager,sonic-login-manager,postponed
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
plasma-desktop,sonic-desktop-interface
|
||||||
|
Can't render this file because it has a wrong number of fields in line 14.
|
BIN
sonic-desktop-interface/breeze-fedora-0.3.tar.gz
Normal file
BIN
sonic-desktop-interface/breeze-fedora-0.3.tar.gz
Normal file
Binary file not shown.
|
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/sddm-theme/Main.qml b/sddm-theme/Main.qml
|
||||||
|
index 884165299..cb187da2f 100644
|
||||||
|
--- a/sddm-theme/Main.qml
|
||||||
|
+++ b/sddm-theme/Main.qml
|
||||||
|
@@ -452,7 +452,7 @@ Item {
|
||||||
|
userListComponent.mainPasswordBox.forceActiveFocus();
|
||||||
|
inputPanel.showHide()
|
||||||
|
}
|
||||||
|
- visible: inputPanel.status === Loader.Ready
|
||||||
|
+ visible: false
|
||||||
|
|
||||||
|
Layout.fillHeight: true
|
||||||
|
containmentMask: Item {
|
||||||
1573
sonic-desktop-interface/sonic-desktop-interface.spec
Normal file
1573
sonic-desktop-interface/sonic-desktop-interface.spec
Normal file
File diff suppressed because it is too large
Load diff
4712
sonic-desktop-interface/tree.txt
Normal file
4712
sonic-desktop-interface/tree.txt
Normal file
File diff suppressed because it is too large
Load diff
248
sonic-frameworks-keybind/sonic-frameworks-keybind.spec
Normal file
248
sonic-frameworks-keybind/sonic-frameworks-keybind.spec
Normal file
|
|
@ -0,0 +1,248 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
%global framework kglobalaccel
|
||||||
|
|
||||||
|
#Name: kf6-%{framework}
|
||||||
|
Name: sonic-frameworks-keybind
|
||||||
|
Version: 6.25.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: KDE Frameworks 6 Tier 3 integration module for global shortcuts
|
||||||
|
|
||||||
|
# The following are in the LICENSES folder but go unused: LGPL-2.1-only, LGPL-3.0-only, LicenseRef-KDE-Accepted-LGPL
|
||||||
|
License: CC0-1.0 AND LGPL-2.0-or-later
|
||||||
|
#URL: https://invent.kde.org/frameworks/%{framework}
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz.sig
|
||||||
|
|
||||||
|
URL: https://github.com/Sonic-DE/sonic-frameworks-keybind
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: extra-cmake-modules >= %{version}
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
# for systemd-related macros
|
||||||
|
BuildRequires: systemd
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6LinguistTools)
|
||||||
|
BuildRequires: pkgconfig(xkbcommon)
|
||||||
|
BuildRequires: xcb-util-keysyms-devel
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: libxcb-devel
|
||||||
|
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
Conflicts: kf6-kglobalaccel
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: qt6-qtbase-devel
|
||||||
|
Conflicts: kf6-kglobalaccel-devel
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: kf6-kglobalaccel-doc
|
||||||
|
%description doc
|
||||||
|
Developer Documentation files for %{name} for use with KDevelop or QtCreator.
|
||||||
|
|
||||||
|
%package html
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: kf6-kglobalaccel-html
|
||||||
|
%description html
|
||||||
|
Developer Documentation files for %{name} in HTML format
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build_kf6
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install_kf6
|
||||||
|
|
||||||
|
# unpackaged files
|
||||||
|
%if 0%{?flatpak:1}
|
||||||
|
rm -fv %{buildroot}%{_prefix}/lib/systemd/user/plasma-kglobalaccel.service
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%find_lang_kf6 kglobalaccel6_qt
|
||||||
|
|
||||||
|
%files -f kglobalaccel6_qt.lang
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSES/*.txt
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{framework}*
|
||||||
|
%{_kf6_libdir}/libKF6GlobalAccel.so.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_includedir}/KGlobalAccel/
|
||||||
|
%{_kf6_libdir}/libKF6GlobalAccel.so
|
||||||
|
%{_kf6_libdir}/cmake/KF6GlobalAccel/
|
||||||
|
%{_kf6_datadir}/dbus-1/interfaces/*
|
||||||
|
%{_qt6_docdir}/*/*.tags
|
||||||
|
%{_qt6_docdir}/*/*.index
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%{_qt6_docdir}/*.qch
|
||||||
|
|
||||||
|
%files html
|
||||||
|
%{_qt6_docdir}/*/*
|
||||||
|
%exclude %{_qt6_docdir}/*/*.tags
|
||||||
|
%exclude %{_qt6_docdir}/*/*.index
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Apr 09 2026 Steve Cossette <farchord@gmail.com> - 6.25.0-1
|
||||||
|
- 6.25.0
|
||||||
|
|
||||||
|
* Tue Mar 10 2026 Steve Cossette <farchord@gmail.com> - 6.24.0-1
|
||||||
|
- 6.24.0
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.23.0-1
|
||||||
|
- 6.23.0
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.22.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 02 2026 farchord@gmail.com - 6.22.0-1
|
||||||
|
- 6.22.0
|
||||||
|
|
||||||
|
* Fri Dec 05 2025 Steve Cossette <farchord@gmail.com> - 6.21.0-1
|
||||||
|
- 6.21.0
|
||||||
|
|
||||||
|
* Thu Nov 13 2025 Steve Cossette <farchord@gmail.com> - 6.20.0-1
|
||||||
|
- 6.20.0
|
||||||
|
|
||||||
|
* Wed Oct 29 2025 Steve Cossette <farchord@gmail.com> - 6.19.0-2
|
||||||
|
- Bump for Plasma/Qt6.10 rebuild
|
||||||
|
|
||||||
|
* Sun Oct 05 2025 Steve Cossette <farchord@gmail.com> - 6.19.0-1
|
||||||
|
- 6.19.0
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.18.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.18.0-1
|
||||||
|
- 6.18.0
|
||||||
|
|
||||||
|
* Fri Aug 01 2025 Steve Cossette <farchord@gmail.com> - 6.17.0-1
|
||||||
|
- 6.17.0
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.16.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 05 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.16.0-1
|
||||||
|
- 6.16.0
|
||||||
|
|
||||||
|
* Tue Jun 17 2025 Marie Loise Nolden <loise@kde.org> - 6.15.0-2
|
||||||
|
- 6.15 and plasma 3.4 compatibility rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2025 Steve Cossette <farchord@gmail.com> - 6.15.0-1
|
||||||
|
- 6.15.0
|
||||||
|
|
||||||
|
* Sat May 03 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.14.0-1
|
||||||
|
- 6.14.0
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.13.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sun Apr 06 2025 Steve Cossette <farchord@gmail.com> - 6.13.0-1
|
||||||
|
- 6.13.0
|
||||||
|
|
||||||
|
* Thu Mar 27 2025 Jan Grulich <jgrulich@redhat.com> - 6.12.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Mar 07 2025 Steve Cossette <farchord@gmail.com> - 6.12.0-1
|
||||||
|
- 6.12.0
|
||||||
|
|
||||||
|
* Fri Feb 07 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.11.0-1
|
||||||
|
- 6.11.0
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.10.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 03 2025 Steve Cossette <farchord@gmail.com> - 6.10.0-1
|
||||||
|
- 6.10.0
|
||||||
|
|
||||||
|
* Sat Dec 14 2024 Steve Cossette <farchord@gmail.com> - 6.9.0-1
|
||||||
|
- 6.9.0
|
||||||
|
|
||||||
|
* Sat Nov 02 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.8.0-1
|
||||||
|
- 6.8.0
|
||||||
|
|
||||||
|
* Fri Oct 04 2024 Steve Cossette <farchord@gmail.com> - 6.7.0-1
|
||||||
|
- 6.7.0
|
||||||
|
|
||||||
|
* Mon Sep 16 2024 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Sat Aug 10 2024 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat Jun 01 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Sat May 04 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Wed Apr 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Sat Mar 09 2024 Marie Loise Nolden <loise@kde.org> - 6.0.0-2
|
||||||
|
- add missing BuildArch: noarch to -doc package
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.249.0-1
|
||||||
|
- 5.249.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.248.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.248.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.248.0-1
|
||||||
|
- 5.248.0
|
||||||
|
|
||||||
|
* Tue Jan 09 2024 Marie Loise Nolden <loise@kde.org> - 5.247.0-2
|
||||||
|
- add doc package for KF6 API
|
||||||
|
|
||||||
|
* Wed Dec 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.247.0-1
|
||||||
|
- 5.247.0
|
||||||
|
|
||||||
|
* Sat Dec 02 2023 Justin Zobel <justin.zobel@gmail.com> - 5.246.0-1
|
||||||
|
- Update to 5.246.0
|
||||||
|
|
||||||
|
* Thu Nov 09 2023 Steve Cossette <farchord@gmail.com> - 5.245.0-1
|
||||||
|
- 5.245.0
|
||||||
|
|
||||||
|
* Tue Oct 17 2023 Jan Grulich <jgrulich@redhat.com> - 5.240.0^20231003.060644.9b93514-3
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Mon Oct 09 2023 Steve Cossette <farchord@gmail.com> - 5.240.0^20231003.060644.9b93514-2
|
||||||
|
- Removed -libs from the required installs at runtime (Unneeded)
|
||||||
|
|
||||||
|
* Tue Oct 03 2023 Steve Cossette <farchord@gmail.com> - 5.240.0^20231003.060644.9b93514-1
|
||||||
|
- Initial Release
|
||||||
274
sonic-frameworks-windowsystem/sonic-frameworks-windowsystem.spec
Normal file
274
sonic-frameworks-windowsystem/sonic-frameworks-windowsystem.spec
Normal file
|
|
@ -0,0 +1,274 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
%global framework kwindowsystem
|
||||||
|
|
||||||
|
#Name: kf6-%{framework}
|
||||||
|
Name: sonic-frameworks-windowsystem
|
||||||
|
Version: 6.25.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: KDE Frameworks 6 Tier 1 integration module with classes for windows management
|
||||||
|
License: CC0-1.0 AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND MIT
|
||||||
|
#URL: https://invent.kde.org/frameworks/%{framework}
|
||||||
|
URL: https://github.com/Sonic-DE/sonic-frameworks-windowsystem
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
# Upstream patches
|
||||||
|
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: extra-cmake-modules >= %{version}
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: qt6-qttools-devel
|
||||||
|
BuildRequires: cmake(Qt6Qml)
|
||||||
|
BuildRequires: pkgconfig(Qt6WaylandClient)
|
||||||
|
BuildRequires: pkgconfig(x11)
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
BuildRequires: pkgconfig(xcb-icccm)
|
||||||
|
BuildRequires: pkgconfig(xcb-keysyms)
|
||||||
|
BuildRequires: pkgconfig(xkbcommon)
|
||||||
|
BuildRequires: pkgconfig(xfixes)
|
||||||
|
BuildRequires: pkgconfig(xrender)
|
||||||
|
BuildRequires: wayland-devel
|
||||||
|
BuildRequires: egl-wayland-devel
|
||||||
|
BuildRequires: wayland-protocols-devel
|
||||||
|
BuildRequires: plasma-wayland-protocols-devel
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: pkgconfig(Qt6Core)
|
||||||
|
BuildRequires: pkgconfig(Qt6Gui)
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
Conflicts: kf6-kwindowsystem
|
||||||
|
|
||||||
|
%description
|
||||||
|
KDE Frameworks Tier 1 integration module that provides classes for managing and
|
||||||
|
working with windows.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: qt6-qtbase-devel
|
||||||
|
Conflicts: kf6-kwindowsystem-devel
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: kf6-kwindowsystem-doc
|
||||||
|
%description doc
|
||||||
|
Developer Documentation files for %{name} for use with KDevelop or QtCreator.
|
||||||
|
|
||||||
|
%package html
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: kf6-kwindowsystem-html
|
||||||
|
%description html
|
||||||
|
Developer Documentation files for %{name} in HTML format
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build_kf6
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install_kf6
|
||||||
|
|
||||||
|
%find_lang_kf6 kwindowsystem6_qt
|
||||||
|
%fdupes %{buildroot}%{_kf6_includedir}
|
||||||
|
|
||||||
|
%files -f kwindowsystem6_qt.lang
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSES/*.txt
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{framework}.*
|
||||||
|
%{_kf6_libdir}/libKF6WindowSystem.so.*
|
||||||
|
%dir %{_kf6_plugindir}/kwindowsystem/
|
||||||
|
%{_kf6_plugindir}/kwindowsystem/KF6WindowSystemX11Plugin.so
|
||||||
|
%{_kf6_qmldir}/org/kde/kwindowsystem
|
||||||
|
#%{_qt6_plugindir}/kf6/kwindowsystem/KF6WindowSystemKWaylandPlugin.so
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_includedir}/KWindowSystem/
|
||||||
|
%{_kf6_libdir}/libKF6WindowSystem.so
|
||||||
|
%{_kf6_libdir}/cmake/KF6WindowSystem/
|
||||||
|
%{_kf6_libdir}/pkgconfig/KF6WindowSystem.pc
|
||||||
|
%{_qt6_docdir}/*/*.tags
|
||||||
|
%{_qt6_docdir}/*/*.index
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%{_qt6_docdir}/*.qch
|
||||||
|
|
||||||
|
%files html
|
||||||
|
%{_qt6_docdir}/*/*
|
||||||
|
%exclude %{_qt6_docdir}/*/*.tags
|
||||||
|
%exclude %{_qt6_docdir}/*/*.index
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Apr 09 2026 Steve Cossette <farchord@gmail.com> - 6.25.0-1
|
||||||
|
- 6.25.0
|
||||||
|
|
||||||
|
* Tue Mar 10 2026 Steve Cossette <farchord@gmail.com> - 6.24.0-1
|
||||||
|
- 6.24.0
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.23.0-1
|
||||||
|
- 6.23.0
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.22.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 02 2026 farchord@gmail.com - 6.22.0-1
|
||||||
|
- 6.22.0
|
||||||
|
|
||||||
|
* Fri Dec 05 2025 Steve Cossette <farchord@gmail.com> - 6.21.0-1
|
||||||
|
- 6.21.0
|
||||||
|
|
||||||
|
* Thu Nov 13 2025 Steve Cossette <farchord@gmail.com> - 6.20.0-1
|
||||||
|
- 6.20.0
|
||||||
|
|
||||||
|
* Wed Oct 29 2025 Steve Cossette <farchord@gmail.com> - 6.19.0-3
|
||||||
|
- Bump for Plasma/Qt6.10 rebuild
|
||||||
|
|
||||||
|
* Tue Oct 07 2025 Steve Cossette <farchord@gmail.com> - 6.19.0-2
|
||||||
|
- Fix for global shortcuts not working
|
||||||
|
|
||||||
|
* Sun Oct 05 2025 Steve Cossette <farchord@gmail.com> - 6.19.0-1
|
||||||
|
- 6.19.0
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.18.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.18.0-1
|
||||||
|
- 6.18.0
|
||||||
|
|
||||||
|
* Fri Aug 01 2025 Steve Cossette <farchord@gmail.com> - 6.17.0-1
|
||||||
|
- 6.17.0
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.16.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 05 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.16.0-1
|
||||||
|
- 6.16.0
|
||||||
|
|
||||||
|
* Tue Jun 17 2025 Marie Loise Nolden <loise@kde.org> - 6.15.0-2
|
||||||
|
- 6.15 and plasma 3.4 compatibility rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2025 Steve Cossette <farchord@gmail.com> - 6.15.0-1
|
||||||
|
- 6.15.0
|
||||||
|
|
||||||
|
* Sat May 03 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.14.0-1
|
||||||
|
- 6.14.0
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.13.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sun Apr 06 2025 Steve Cossette <farchord@gmail.com> - 6.13.0-1
|
||||||
|
- 6.13.0
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 6.12.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Mar 07 2025 Steve Cossette <farchord@gmail.com> - 6.12.0-1
|
||||||
|
- 6.12.0
|
||||||
|
|
||||||
|
* Fri Feb 07 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.11.0-1
|
||||||
|
- 6.11.0
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.10.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 03 2025 Steve Cossette <farchord@gmail.com> - 6.10.0-1
|
||||||
|
- 6.10.0
|
||||||
|
|
||||||
|
* Sat Dec 14 2024 Steve Cossette <farchord@gmail.com> - 6.9.0-1
|
||||||
|
- 6.9.0
|
||||||
|
|
||||||
|
* Sat Nov 02 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.8.0-1
|
||||||
|
- 6.8.0
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 6.7.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Oct 04 2024 Steve Cossette <farchord@gmail.com> - 6.7.0-1
|
||||||
|
- 6.7.0
|
||||||
|
|
||||||
|
* Mon Sep 16 2024 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Sat Aug 10 2024 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat Jun 01 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Sat May 04 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Wed Apr 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 6.0.0-3
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Mar 09 2024 Marie Loise Nolden <loise@kde.org> - 6.0.0-2
|
||||||
|
- add missing BuildArch: noarch to -doc package
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 5.249.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.249.0-1
|
||||||
|
- 5.249.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.248.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.248.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.248.0-1
|
||||||
|
- 5.248.0
|
||||||
|
|
||||||
|
* Tue Jan 09 2024 Marie Loise Nolden <loise@kde.org> - 5.247.0-2
|
||||||
|
- add doc package for KF6 API
|
||||||
|
|
||||||
|
* Wed Dec 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.247.0-1
|
||||||
|
- 5.247.0
|
||||||
|
|
||||||
|
* Sat Dec 02 2023 Justin Zobel <justin.zobel@gmail.com> - 5.246.0-1
|
||||||
|
- Update to 5.246.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 5.245.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Nov 09 2023 Steve Cossette <farchord@gmail.com> - 5.245.0-1
|
||||||
|
- 5.245.0
|
||||||
|
|
||||||
|
* Tue Oct 17 2023 Jan Grulich <jgrulich@redhat.com> - 5.240.0^20231003.213655.0aa4d07-3
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 05 2023 Justin Zobel <justin.zobel@gmail.com> - 5.240.0^20231003.213655.0aa4d07-2
|
||||||
|
- Rebuild for Qt Private API
|
||||||
|
|
||||||
|
* Tue Oct 03 2023 Steve Cossette <farchord@gmail.com> - 5.240.0^20231003.213655.0aa4d07-1
|
||||||
|
- Fix for build on s390x arch
|
||||||
|
|
||||||
|
* Tue Sep 26 2023 Steve Cossette <farchord@gmail.com> - 5.240.0^20230905.004205.b59a819-1
|
||||||
|
- Initial Release
|
||||||
|
|
@ -1,135 +0,0 @@
|
||||||
%define _disable_source_fetch 0
|
|
||||||
%define debug_package %{nil}
|
|
||||||
|
|
||||||
Name: sonic-interface-libraries
|
|
||||||
Version: 6.4.5
|
|
||||||
Release: 7%{?dist}
|
|
||||||
Summary: Foundation of the SonicDE user interface (fork of libplasma)
|
|
||||||
|
|
||||||
License: LGPL-2.0-or-later
|
|
||||||
URL: https://github.com/Sonic-DE/sonic-interface-libraries
|
|
||||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
|
|
||||||
%global plasma_version %(echo %{version} | cut -d. -f1-3)
|
|
||||||
|
|
||||||
BuildRequires: extra-cmake-modules
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: cmake(KF6Archive)
|
|
||||||
BuildRequires: cmake(KF6Declarative)
|
|
||||||
BuildRequires: cmake(KF6Su)
|
|
||||||
BuildRequires: cmake(KF6GlobalAccel)
|
|
||||||
BuildRequires: cmake(KF6Kirigami2)
|
|
||||||
BuildRequires: cmake(KF6Package)
|
|
||||||
BuildRequires: cmake(KF6Parts)
|
|
||||||
BuildRequires: cmake(KF6ConfigWidgets)
|
|
||||||
BuildRequires: cmake(KF6ColorScheme)
|
|
||||||
BuildRequires: kf6-rpm-macros
|
|
||||||
BuildRequires: cmake(KF6Solid)
|
|
||||||
BuildRequires: openssl-devel
|
|
||||||
BuildRequires: qt6-qtbase-devel
|
|
||||||
BuildRequires: qt6-qtbase-private-devel
|
|
||||||
BuildRequires: qt6-qtdeclarative-devel
|
|
||||||
BuildRequires: qt6-qtsvg-devel
|
|
||||||
|
|
||||||
# KDE Frameworks
|
|
||||||
BuildRequires: cmake(KF6Config)
|
|
||||||
BuildRequires: cmake(KF6CoreAddons)
|
|
||||||
BuildRequires: cmake(KF6DBusAddons)
|
|
||||||
BuildRequires: cmake(KF6DocTools)
|
|
||||||
BuildRequires: cmake(KF6GuiAddons)
|
|
||||||
BuildRequires: cmake(KF6I18n)
|
|
||||||
BuildRequires: cmake(KF6IconThemes)
|
|
||||||
BuildRequires: cmake(KF6KCMUtils)
|
|
||||||
BuildRequires: cmake(KF6KIO)
|
|
||||||
BuildRequires: cmake(KF6Notifications)
|
|
||||||
BuildRequires: cmake(KF6Service)
|
|
||||||
BuildRequires: cmake(KF6Svg)
|
|
||||||
BuildRequires: cmake(KF6WidgetsAddons)
|
|
||||||
BuildRequires: cmake(KF6WindowSystem)
|
|
||||||
BuildRequires: cmake(KF6XmlGui)
|
|
||||||
BuildRequires: cmake(PlasmaWaylandProtocols)
|
|
||||||
|
|
||||||
# Qt
|
|
||||||
BuildRequires: cmake(Qt6WaylandClient)
|
|
||||||
|
|
||||||
# Plasma
|
|
||||||
BuildRequires: cmake(PlasmaActivities)
|
|
||||||
|
|
||||||
BuildRequires: wayland-devel
|
|
||||||
BuildRequires: kwayland-devel
|
|
||||||
|
|
||||||
# X11 Support
|
|
||||||
BuildRequires: libX11-devel
|
|
||||||
BuildRequires: libxcb-devel
|
|
||||||
BuildRequires: xcb-util-devel
|
|
||||||
BuildRequires: libXcursor-devel
|
|
||||||
BuildRequires: libXrender-devel
|
|
||||||
BuildRequires: libXext-devel
|
|
||||||
BuildRequires: libXfixes-devel
|
|
||||||
BuildRequires: libXi-devel
|
|
||||||
|
|
||||||
Provides: libplasma%{?_isa} >= %{plasma_version}
|
|
||||||
Provides: libplasma >= %{plasma_version}
|
|
||||||
Obsoletes: libplasma <= %{plasma_version}
|
|
||||||
|
|
||||||
# Renamed from kf6-plasma
|
|
||||||
Obsoletes: kf6-plasma < 1:%{version}-%{release}
|
|
||||||
Provides: kf6-plasma = 1:%{version}-%{release}
|
|
||||||
|
|
||||||
%description
|
|
||||||
Sonic Interface Libraries is a fork of libplasma, providing the foundational
|
|
||||||
libraries for themes, applets, and widgets in SonicDE.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development files for %{name}
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: cmake(KF6Package)
|
|
||||||
Requires: qt6-qtbase-devel
|
|
||||||
Requires: cmake(KF6Service)
|
|
||||||
Requires: cmake(KF6WindowSystem)
|
|
||||||
Provides: libplasma-devel%{?_isa} >= %{plasma_version}
|
|
||||||
Provides: libplasma-devel >= %{plasma_version}
|
|
||||||
Obsoletes: libplasma-devel <= %{plasma_version}
|
|
||||||
|
|
||||||
Obsoletes: kf6-plasma-devel < 1:%{version}-%{release}
|
|
||||||
Provides: kf6-plasma-devel = 1:%{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
Development files for sonic-interface-libraries.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cmake_kf6
|
|
||||||
%cmake_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cmake_install
|
|
||||||
%find_lang %{name} --all-name
|
|
||||||
|
|
||||||
%files -f %{name}.lang
|
|
||||||
%license LICENSES/*
|
|
||||||
%{_libdir}/libPlasma.so.*
|
|
||||||
%{_libdir}/libPlasmaQuick.so.*
|
|
||||||
%{_qt6_plugindir}/kf6/
|
|
||||||
%{_qt6_qmldir}/org/kde/plasma/
|
|
||||||
%{_qt6_qmldir}/org/kde/kirigami/styles/Plasma/
|
|
||||||
%{_datadir}/plasma/
|
|
||||||
%{_datadir}/qlogging-categories6/*.categories
|
|
||||||
%{_datadir}/qlogging-categories6/*.renamecategories
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%{_includedir}/Plasma/
|
|
||||||
%{_includedir}/PlasmaQuick/
|
|
||||||
%{_libdir}/libPlasma.so
|
|
||||||
%{_libdir}/libPlasmaQuick.so
|
|
||||||
%{_libdir}/cmake/Plasma/
|
|
||||||
%{_libdir}/cmake/PlasmaQuick/
|
|
||||||
%{_datadir}/doc/qt6/Plasma.qch
|
|
||||||
%{_datadir}/doc/qt6/Plasma.tags
|
|
||||||
%{_datadir}/kdevappwizard/templates/*.tar.bz2
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Mar 21 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 6.4.5-7
|
|
||||||
- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility)
|
|
||||||
370
sonic-interface-libraries/sonic-interface-libraries.spec
Normal file
370
sonic-interface-libraries/sonic-interface-libraries.spec
Normal file
|
|
@ -0,0 +1,370 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
#Name: libplasma
|
||||||
|
Name: sonic-interface-libraries
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: Plasma is the foundation of the KDE user interface (v6)
|
||||||
|
|
||||||
|
# LicenseRef-QtCommercial is also in the licenses, but is being omitted as it is optional.
|
||||||
|
License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND Qt-LGPL-exception-1.1
|
||||||
|
#URL: https://invent.kde.org/plasma/libplasma
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
|
||||||
|
# Qt
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(Qt6Qml)
|
||||||
|
BuildRequires: cmake(Qt6Svg)
|
||||||
|
BuildRequires: cmake(Qt6QuickControls2)
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6GuiPrivate)
|
||||||
|
|
||||||
|
# KDE Frameworks
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6GlobalAccel)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6Notifications)
|
||||||
|
BuildRequires: cmake(KF6Package)
|
||||||
|
BuildRequires: cmake(KF6KirigamiPlatform)
|
||||||
|
BuildRequires: cmake(KF6Svg)
|
||||||
|
BuildRequires: cmake(KF6ColorScheme)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
|
||||||
|
# Plasma
|
||||||
|
BuildRequires: cmake(PlasmaActivities)
|
||||||
|
|
||||||
|
# Wayland
|
||||||
|
BuildRequires: cmake(PlasmaWaylandProtocols)
|
||||||
|
BuildRequires: cmake(Qt6WaylandClient)
|
||||||
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
|
|
||||||
|
# autotests
|
||||||
|
BuildRequires: cmake(KF6Archive)
|
||||||
|
|
||||||
|
# examples
|
||||||
|
BuildRequires: cmake(KF6Parts)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
|
||||||
|
# Renamed from kf6-plasma
|
||||||
|
Obsoletes: kf6-plasma < 1:%{version}-%{release}
|
||||||
|
Provides: kf6-plasma = 1:%{version}-%{release}
|
||||||
|
Conflicts: libplasma
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: cmake(Qt6Qml)
|
||||||
|
Requires: cmake(Qt6Gui)
|
||||||
|
Requires: cmake(KF6Package)
|
||||||
|
Requires: cmake(KF6KirigamiPlatform)
|
||||||
|
Requires: cmake(KF6WindowSystem)
|
||||||
|
Obsoletes: kf6-plasma-devel < 1:%{version}-%{release}
|
||||||
|
Provides: kf6-plasma-devel = 1:%{version}-%{release}
|
||||||
|
Conflicts: libplasma-devel
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: libplasma-doc
|
||||||
|
%description doc
|
||||||
|
Developer Documentation files for %{name} for use with KDevelop or QtCreator.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang %{name} --all-name --with-man --all-name
|
||||||
|
|
||||||
|
# create/own dirs
|
||||||
|
mkdir -p %{buildroot}%{_kf6_datadir}/plasma/plasmoids
|
||||||
|
mkdir -p %{buildroot}%{_kf6_qmldir}/org/kde/private
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%dir %{_kf6_qmldir}/org/
|
||||||
|
%dir %{_kf6_qmldir}/org/kde/
|
||||||
|
%dir %{_kf6_qmldir}/org/kde/private/
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSES/*.txt
|
||||||
|
%{_kf6_datadir}/plasma/
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/*plasma*
|
||||||
|
%{_libdir}/libPlasma.so.*
|
||||||
|
%{_libdir}/libPlasmaQuick.so.*
|
||||||
|
%{_kf6_plugindir}/kirigami/
|
||||||
|
%{_kf6_plugindir}/packagestructure
|
||||||
|
%{_kf6_qmldir}/org/kde/plasma/
|
||||||
|
%{_kf6_qmldir}/org/kde/kirigami/styles/Plasma/AbstractApplicationHeader.qml
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%dir %{_kf6_datadir}/kdevappwizard/
|
||||||
|
%{_kf6_datadir}/kdevappwizard/templates/
|
||||||
|
%{_includedir}/Plasma/
|
||||||
|
%{_includedir}/PlasmaQuick/
|
||||||
|
%{_libdir}/cmake/Plasma/
|
||||||
|
%{_libdir}/cmake/PlasmaQuick/
|
||||||
|
%{_libdir}/libPlasma.so
|
||||||
|
%{_libdir}/libPlasmaQuick.so
|
||||||
|
%{_qt6_docdir}/*.tags
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%{_qt6_docdir}/*.qch
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Tue Jan 20 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 6.5.90-3
|
||||||
|
- Update dependencies
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Wed Dec 24 2025 Georg Sauthoff <mail@gms.tf> - 6.5.4-2
|
||||||
|
- update project URL
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Mon Jan 20 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 6.2.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Mon May 06 2024 Steve Cossette <farchord@gmail.com> - 6.0.4-2
|
||||||
|
- Added fix for a Qt 6.7-related bug in libplasma
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 6.0.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Sat Mar 09 2024 Marie Loise Nolden <loise@kde.org> - 6.0.1-2
|
||||||
|
- add missing BuildArch: noarch to -doc package
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 5.93.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Tue Jan 09 2024 Marie Loise Nolden <loise@kde.org> - 5.91.0-2
|
||||||
|
- add doc package for KF6 API
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 5.27.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Nov 24 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-1
|
||||||
|
- Renamed from kf6-plasma
|
||||||
303
sonic-keybind-daemon/sonic-keybind-daemon.spec
Normal file
303
sonic-keybind-daemon/sonic-keybind-daemon.spec
Normal file
|
|
@ -0,0 +1,303 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
#Name: kglobalacceld
|
||||||
|
Name: sonic-keybind-daemon
|
||||||
|
Summary: Daemon providing Global Keyboard Shortcut functionality
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only)
|
||||||
|
#URL: https://invent.kde.org/plasma/%{name}
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
BuildRequires: qt6-qtbase-gui
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6GlobalAccel)
|
||||||
|
BuildRequires: cmake(KF6Service)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6JobWidgets)
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
BuildRequires: pkgconfig(xkbcommon) >= 0.5.0
|
||||||
|
BuildRequires: pkgconfig(xcb-keysyms)
|
||||||
|
BuildRequires: pkgconfig(xcb-xkb)
|
||||||
|
BuildRequires: pkgconfig(xcb-record)
|
||||||
|
BuildRequires: pkgconfig(xcb-xtest)
|
||||||
|
BuildRequires: systemd
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
Conflicts: kglobalacceld
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Developer files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: qt6-qtbase-devel
|
||||||
|
Conflicts: kglobalacceld-devel
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSES/*.txt
|
||||||
|
%{_sysconfdir}/xdg/autostart/kglobalacceld.desktop
|
||||||
|
%{_userunitdir}/plasma-kglobalaccel.service
|
||||||
|
%{_libdir}/libKGlobalAccelD.so.*
|
||||||
|
%dir %{_qt6_plugindir}/org.kde.kglobalacceld.platforms
|
||||||
|
%{_qt6_plugindir}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so
|
||||||
|
%{_libexecdir}/kglobalacceld
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kglobalacceld.categories
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/KGlobalAccelD/
|
||||||
|
%{_libdir}/cmake/KGlobalAccelD/
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 6.2.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 6.0.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 5.93.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 5.27.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Nov 10 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-1
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Wed Oct 18 2023 Steve Cossette <farchord@gmail.com> - 5.27.80^20231009.021332.6933aae-3
|
||||||
|
- Added BuildDep for systemd
|
||||||
|
|
||||||
|
* Wed Oct 18 2023 Steve Cossette <farchord@gmail.com> - 5.27.80^20231009.021332.6933aae-2
|
||||||
|
- Fixed an issue with the systemd unit
|
||||||
|
|
||||||
|
* Sat Sep 23 2023 Steve Cossette <farchord@gmail.com> - 5.27.80^20231009.021332.6933aae-1
|
||||||
|
- Initial release
|
||||||
2
sonic-login-manager/README.scripts
Normal file
2
sonic-login-manager/README.scripts
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
This scripts dir contains only samples, but are generally not used directly.
|
||||||
|
In practice, plasmalogin runtime uses items under /etc/plasmalogin by default
|
||||||
12
sonic-login-manager/plasmalogin-environment_file.patch
Normal file
12
sonic-login-manager/plasmalogin-environment_file.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
diff --git a/services/plasmalogin.service.in b/services/plasmalogin.service.in
|
||||||
|
index d652b0f..1c51101 100644
|
||||||
|
--- a/services/plasmalogin.service.in
|
||||||
|
+++ b/services/plasmalogin.service.in
|
||||||
|
@@ -9,6 +9,7 @@ StartLimitBurst=2
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/plasmalogin
|
||||||
|
+EnvironmentFile=-/etc/sysconfig/plasmalogin
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
diff --git a/services/plasmalogin-tmpfiles.conf.in b/services/plasmalogin-tmpfiles.conf.in
|
||||||
|
index 8cfd6b8..91bf536 100644
|
||||||
|
--- a/services/plasmalogin-tmpfiles.conf.in
|
||||||
|
+++ b/services/plasmalogin-tmpfiles.conf.in
|
||||||
|
@@ -1,5 +1,7 @@
|
||||||
|
# Home dir of the plasmalogin user, also contains state.conf
|
||||||
|
d ${STATE_DIR} 0750 plasmalogin plasmalogin
|
||||||
|
+# Workaround for https://pagure.io/fedora-kde/SIG/issue/87
|
||||||
|
+Z ${STATE_DIR} - plasmalogin plasmalogin
|
||||||
|
# This contains X11 auth files passed to Xorg and the greeter
|
||||||
|
d ${RUNTIME_DIR} 0711 root root
|
||||||
|
# Sockets for IPC
|
||||||
46
sonic-login-manager/plasmalogin.conf
Normal file
46
sonic-login-manager/plasmalogin.conf
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
[Autologin]
|
||||||
|
# Whether plasmalogin should automatically log back into sessions when they exit
|
||||||
|
#Relogin=false
|
||||||
|
|
||||||
|
# Name of session file for autologin session (if empty try last logged in)
|
||||||
|
#Session=
|
||||||
|
|
||||||
|
# Username for autologin session
|
||||||
|
#User=
|
||||||
|
|
||||||
|
|
||||||
|
[General]
|
||||||
|
# Comma-separated list of Linux namespaces for user session to enter
|
||||||
|
#Namespaces=
|
||||||
|
|
||||||
|
|
||||||
|
[Users]
|
||||||
|
# Default $PATH for logged in users
|
||||||
|
#DefaultPath=/usr/local/bin:/usr/bin:/bin
|
||||||
|
|
||||||
|
# Remember the session of the last successfully logged in user
|
||||||
|
#RememberLastSession=true
|
||||||
|
|
||||||
|
# Remember the last successfully logged in user
|
||||||
|
#RememberLastUser=true
|
||||||
|
|
||||||
|
# When logging in as the same user twice, restore the original session, rather than create a new one
|
||||||
|
#ReuseSession=true
|
||||||
|
|
||||||
|
|
||||||
|
[Wayland]
|
||||||
|
# Path to the user session log file
|
||||||
|
#SessionLogFile=.local/share/plasmalogin/wayland-session.log
|
||||||
|
|
||||||
|
|
||||||
|
[X11]
|
||||||
|
# Arguments passed to the X server invocation
|
||||||
|
#ServerArguments=-nolisten tcp
|
||||||
|
|
||||||
|
# Path to X server binary
|
||||||
|
#ServerPath=/usr/bin/X
|
||||||
|
|
||||||
|
# Path to the user session log file
|
||||||
|
#SessionLogFile=.local/share/plasmalogin/xorg-session.log
|
||||||
|
|
||||||
|
|
||||||
5
sonic-login-manager/plasmalogin.sysconfig
Normal file
5
sonic-login-manager/plasmalogin.sysconfig
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# workaround https://bugzilla.redhat.com/1686675
|
||||||
|
# see also https://bugreports.qt.io/browse/QTBUG-58508
|
||||||
|
QML_DISABLE_DISK_CACHE=1
|
||||||
|
# enable qDebug messages for debug build
|
||||||
|
# QT_LOGGING_RULES="*.debug=true"
|
||||||
2
sonic-login-manager/plasmalogin.sysusers
Normal file
2
sonic-login-manager/plasmalogin.sysusers
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#Type Name ID GECOS Home directory Shell
|
||||||
|
u plasmalogin - "PLASMALOGIN Greeter Account" /var/lib/plasmalogin -
|
||||||
269
sonic-login-manager/sonic-login-manager.spec
Normal file
269
sonic-login-manager/sonic-login-manager.spec
Normal file
|
|
@ -0,0 +1,269 @@
|
||||||
|
|
||||||
|
|
||||||
|
Name: sonic-login-manager
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 10%{?dist}
|
||||||
|
License: BSD-3-Clause and CC0-1.0 and (GPL-2.0-only or GPL-3.0-only) and GPL-2.0-or-later and LGPL-2.0-or-later and LGPL-2.1-or-later
|
||||||
|
Summary: QML based login manager for SonicDE
|
||||||
|
|
||||||
|
URL: https://github.com/Sonic-DE/sonic-login-manager
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
# README.scripts
|
||||||
|
Source10: README.scripts
|
||||||
|
# sysconfig snippet
|
||||||
|
Source11: plasmalogin.sysconfig
|
||||||
|
# sysusers config file. note these are shipped in the upstream tarball
|
||||||
|
# but we cannot use the files from the tarball for %pre scriptlet
|
||||||
|
# generation, so we duplicate them as source files for that purpose;
|
||||||
|
# this is an ugly hack that should be removed if it becomes possible.
|
||||||
|
# see https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/TFDMAU7KLMSQTKPJELHSM6PFVXIZ56GK/
|
||||||
|
Source12: plasmalogin.sysusers
|
||||||
|
# sample plasmalogin.conf generated with plasmalogin --example-config, and entries commented-out
|
||||||
|
Source13: plasmalogin.conf
|
||||||
|
|
||||||
|
# upstream patches
|
||||||
|
|
||||||
|
# proposed patches
|
||||||
|
## plasmalogin.service: +EnvironmentFile=-/etc/sysconfig/plasmalogin (FIXME: patch needs update for Sonic-DE source)
|
||||||
|
#Patch1001: plasmalogin-environment_file.patch
|
||||||
|
## Workaround for https://pagure.io/fedora-kde/SIG/issue/87 (FIXME: patch needs update for Sonic-DE source)
|
||||||
|
#Patch1002: plasmalogin-rpmostree-tmpfiles-hack.patch
|
||||||
|
|
||||||
|
Provides: service(graphical-login) = plasmalogin
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: cmake >= 3.22
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: pam-devel
|
||||||
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
|
BuildRequires: pkgconfig(systemd)
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
BuildRequires: pkgconfig(xcb-xkb)
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(Qt6Qml)
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
BuildRequires: cmake(Qt6LinguistTools)
|
||||||
|
BuildRequires: cmake(Qt6ShaderTools)
|
||||||
|
BuildRequires: cmake(Qt6Test)
|
||||||
|
BuildRequires: cmake(Qt6QuickTest)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6Package)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6Auth)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6KirigamiPlatform)
|
||||||
|
BuildRequires: cmake(PlasmaQuick)
|
||||||
|
BuildRequires: cmake(LayerShellQt)
|
||||||
|
BuildRequires: cmake(LibKWorkspace)
|
||||||
|
BuildRequires: cmake(LibKLookAndFeel)
|
||||||
|
BuildRequires: cmake(KF6Screen)
|
||||||
|
# verify presence to pull defaults from /etc/login.defs
|
||||||
|
BuildRequires: shadow-utils
|
||||||
|
BuildRequires: systemd
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
|
||||||
|
# for jxl support
|
||||||
|
Requires: kf6-kimageformats%{?_isa}
|
||||||
|
|
||||||
|
%if %{with x11}
|
||||||
|
Requires: xorg-x11-xinit
|
||||||
|
%endif
|
||||||
|
%{?systemd_requires}
|
||||||
|
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
Requires: kf6-kauth
|
||||||
|
Requires(pre): shadow-utils
|
||||||
|
|
||||||
|
Requires: kde-settings-plasma
|
||||||
|
|
||||||
|
# Requires sonic window manager (X11 variant)
|
||||||
|
Requires: sonic-win%{?_isa}
|
||||||
|
Requires: (kcm-plasmalogin%{?_isa} if plasma-systemsettings%{?_isa})
|
||||||
|
|
||||||
|
%description
|
||||||
|
Sonic Login Manager provides a display manager for SonicDE
|
||||||
|
with a frontend providing a greeter,
|
||||||
|
wallpaper plugin integration and a System Settings module (KCM).
|
||||||
|
|
||||||
|
%package -n kcm-plasmalogin
|
||||||
|
Summary: KDE KCM for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: dbus-common
|
||||||
|
Requires: plasma-systemsettings%{?_isa}
|
||||||
|
Requires: polkit
|
||||||
|
Requires: qt6-filesystem
|
||||||
|
|
||||||
|
%description -n kcm-plasmalogin
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%conf
|
||||||
|
%cmake_kf6 \
|
||||||
|
-DCMAKE_BUILD_TYPE:STRING="Release" \
|
||||||
|
-DPAM_OS_CONFIGURATION:STRING="fedora" \
|
||||||
|
-DSESSION_COMMAND:PATH=/etc/X11/xinit/Xsession \
|
||||||
|
-DWAYLAND_SESSION_COMMAND:PATH=/etc/plasmalogin/wayland-session
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang plasma_login
|
||||||
|
%find_lang kcm_plasmalogin
|
||||||
|
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_sysconfdir}/plasmalogin.conf.d
|
||||||
|
mkdir -p %{buildroot}%{_prefix}/lib/plasmalogin/plasmalogin.conf.d
|
||||||
|
|
||||||
|
install -Dpm 644 %{SOURCE10} %{buildroot}%{_datadir}/plasmalogin/scripts/README.scripts
|
||||||
|
install -Dpm 644 %{SOURCE11} %{buildroot}%{_sysconfdir}/sysconfig/plasmalogin
|
||||||
|
install -Dpm 644 %{SOURCE13} %{buildroot}%{_sysconfdir}/plasmalogin.conf
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}/run/plasmalogin
|
||||||
|
mkdir -p %{buildroot}%{_localstatedir}/lib/plasmalogin
|
||||||
|
mkdir -p %{buildroot}%{_sysconfdir}/plasmalogin/
|
||||||
|
cp -a %{buildroot}%{_datadir}/plasmalogin/scripts/* \
|
||||||
|
%{buildroot}%{_sysconfdir}/plasmalogin/
|
||||||
|
# we're using /etc/X11/xinit/Xsession (by default) instead
|
||||||
|
rm -fv %{buildroot}%{_sysconfdir}/plasmalogin/Xsession
|
||||||
|
|
||||||
|
# De-conflict the dbus file
|
||||||
|
mv %{buildroot}%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager.conf \
|
||||||
|
%{buildroot}%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager-plasmalogin.conf
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}/%{_datadir}/applications/kcm_plasmalogin.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%pre
|
||||||
|
%sysusers_create_compat %{SOURCE12}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
%systemd_post plasmalogin.service
|
||||||
|
%systemd_user_post plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service
|
||||||
|
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%systemd_preun plasmalogin.service
|
||||||
|
%systemd_user_preun plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service
|
||||||
|
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%systemd_postun plasmalogin.service
|
||||||
|
%systemd_user_postun plasma-login.service plasma-login-kwin_x11.service plasma-login-x11.target plasma-wallpaper.service
|
||||||
|
|
||||||
|
|
||||||
|
%files -f plasma_login.lang
|
||||||
|
%license LICENSE LICENSE.* LICENSES/*
|
||||||
|
%doc README.md
|
||||||
|
%dir %{_sysconfdir}/plasmalogin/
|
||||||
|
%dir %{_sysconfdir}/plasmalogin.conf.d
|
||||||
|
%dir %{_prefix}/lib/plasmalogin
|
||||||
|
%dir %{_prefix}/lib/plasmalogin/plasmalogin.conf.d
|
||||||
|
%config(noreplace) %{_sysconfdir}/plasmalogin/*
|
||||||
|
%config(noreplace) %{_sysconfdir}/plasmalogin.conf
|
||||||
|
%config(noreplace) %{_sysconfdir}/sysconfig/plasmalogin
|
||||||
|
%{_prefix}/lib/pam.d/plasmalogin*
|
||||||
|
%{_datadir}/dbus-1/system.d/org.freedesktop.DisplayManager-plasmalogin.conf
|
||||||
|
%{_bindir}/plasmalogin
|
||||||
|
%{_bindir}/startplasma-login-x11
|
||||||
|
%{_bindir}/plasma-login-wallpaper
|
||||||
|
%{_libexecdir}/plasmalogin-helper
|
||||||
|
%{_libexecdir}/plasmalogin-helper-start-x11user
|
||||||
|
%{_libexecdir}/plasma-login-greeter
|
||||||
|
%{_tmpfilesdir}/plasmalogin.conf
|
||||||
|
%{_sysusersdir}/plasmalogin.conf
|
||||||
|
%attr(0711, root, plasmalogin) %dir /run/plasmalogin
|
||||||
|
%attr(1770, plasmalogin, plasmalogin) %dir %{_localstatedir}/lib/plasmalogin
|
||||||
|
%{_unitdir}/plasmalogin.service
|
||||||
|
%{_userunitdir}/plasma-login.service
|
||||||
|
%{_userunitdir}/plasma-login-kwin_x11.service
|
||||||
|
%{_userunitdir}/plasma-login-x11.target
|
||||||
|
%{_userunitdir}/plasma-wallpaper.service
|
||||||
|
%dir %{_datadir}/plasmalogin
|
||||||
|
%{_datadir}/plasmalogin/scripts/
|
||||||
|
|
||||||
|
|
||||||
|
%files -n kcm-plasmalogin -f kcm_plasmalogin.lang
|
||||||
|
%{_kf6_libexecdir}/kauth/kcmplasmalogin_authhelper
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_plasmalogin.so
|
||||||
|
%{_datadir}/applications/kcm_plasmalogin.desktop
|
||||||
|
%{_datadir}/dbus-1/system-services/org.kde.kcontrol.kcmplasmalogin.service
|
||||||
|
%{_datadir}/dbus-1/system.d/org.kde.kcontrol.kcmplasmalogin.conf
|
||||||
|
%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmplasmalogin.policy
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Fri Jan 30 2026 Adam Williamson <awilliam@redhat.com> - 6.5.91-2
|
||||||
|
- Backport MR #102 to fix idle timeout issues
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 Steve Cossette <farchord@gmail.com> - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Mon Jan 12 2026 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20260112.c96b194-3
|
||||||
|
- Add WIP fix to avoid KCM breaking wallpaper settings
|
||||||
|
|
||||||
|
* Mon Jan 12 2026 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20260112.c96b194-2
|
||||||
|
- Fix install path for main config file
|
||||||
|
|
||||||
|
* Mon Jan 12 2026 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20260112.c96b194-1
|
||||||
|
- Bump to new git snapshot
|
||||||
|
- Drop merged patch
|
||||||
|
|
||||||
|
* Sun Jan 11 2026 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20260111.99ded95-2
|
||||||
|
- Add patch to read default wallpaper settings
|
||||||
|
|
||||||
|
* Sun Jan 11 2026 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20260111.99ded95-1
|
||||||
|
- Bump to new git snapshot
|
||||||
|
|
||||||
|
* Wed Dec 03 2025 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20251203.68b0122-1
|
||||||
|
- Bump to new git snapshot
|
||||||
|
- Add sample plasmalogin.conf
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20251128.146250b-1
|
||||||
|
- Bump to new git snapshot
|
||||||
|
|
||||||
|
* Tue Nov 25 2025 Neal Gompa <ngompa@fedoraproject.org> - 0.21.0~git1.20251125.6972b55-1
|
||||||
|
- Initial package (partly forked from sddm)
|
||||||
|
|
||||||
927
sonic-screen-library/sonic-screen-library.spec
Normal file
927
sonic-screen-library/sonic-screen-library.spec
Normal file
|
|
@ -0,0 +1,927 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
#Name: libkscreen
|
||||||
|
Name: sonic-screen-library
|
||||||
|
Summary: KDE display configuration library
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
#URL: https://invent.kde.org/plasma/%{name}
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
# KDE Frameworks
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
|
||||||
|
# Fedora
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: libXrandr-devel
|
||||||
|
BuildRequires: libxcb-devel
|
||||||
|
BuildRequires: pkgconfig(xcb-dpms)
|
||||||
|
BuildRequires: wayland-devel
|
||||||
|
|
||||||
|
# KDE Plasma
|
||||||
|
BuildRequires: plasma-wayland-protocols-devel
|
||||||
|
|
||||||
|
# Qt
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
BuildRequires: qt6-qtwayland-devel
|
||||||
|
BuildRequires: cmake(Qt6WaylandClient)
|
||||||
|
|
||||||
|
Conflicts: libkscreen
|
||||||
|
|
||||||
|
%description
|
||||||
|
LibKScreen is a library that provides access to current configuration
|
||||||
|
of connected displays and ways to change the configuration.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Conflicts: libkscreen-devel
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
Conflicts: libkscreen-doc
|
||||||
|
%description doc
|
||||||
|
Developer Documentation files for %{name} for use with KDevelop or QtCreator.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang_kf6 libkscreen6_qt
|
||||||
|
|
||||||
|
%files -f libkscreen6_qt.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_datadir}/dbus-1/services/org.kde.kscreen.service
|
||||||
|
%{_datadir}/qlogging-categories6/libkscreen.categories
|
||||||
|
%{_datadir}/zsh/site-functions/_kscreen-doctor
|
||||||
|
%{_kf6_bindir}/kscreen-doctor
|
||||||
|
%{_kf6_libexecdir}/kscreen_backend_launcher
|
||||||
|
%{_kf6_libdir}/libKF6Screen.so.8
|
||||||
|
%{_kf6_libdir}/libKF6Screen.so.%{version}
|
||||||
|
%{_kf6_libdir}/libKF6ScreenDpms.so.8
|
||||||
|
%{_kf6_libdir}/libKF6ScreenDpms.so.%{version}
|
||||||
|
%{_kf6_plugindir}/kscreen/
|
||||||
|
%{_userunitdir}/plasma-kscreen.service
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_includedir}/KScreen/
|
||||||
|
%{_kf6_includedir}/kscreen_version.h
|
||||||
|
%{_kf6_libdir}/cmake/KF6Screen/
|
||||||
|
%{_kf6_libdir}/libKF6Screen.so
|
||||||
|
%{_kf6_libdir}/libKF6ScreenDpms.so
|
||||||
|
%{_libdir}/pkgconfig/KF6Screen.pc
|
||||||
|
%{_qt6_docdir}/*.tags
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%{_qt6_docdir}/*.qch
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 6.2.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 6.0.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Sat Mar 09 2024 Marie Loise Nolden <loise@kde.org> - 6.0.1-2
|
||||||
|
- add missing BuildArch: noarch to -doc package
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 5.93.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Tue Jan 09 2024 Marie Loise Nolden <loise@kde.org> - 5.91.0-2
|
||||||
|
- add doc package for KF6 API
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 5.27.80-3
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Nov 28 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-2
|
||||||
|
- Don't obsolete libkscreen-qt5 now that it can co-exist
|
||||||
|
|
||||||
|
* Sat Nov 11 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-1
|
||||||
|
- Renamed from libkscreen-qt5
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Tue Oct 24 2023 Steve Cossette <farchord@gmail.com> - 5.27.9-1
|
||||||
|
- 5.27.9
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1
|
||||||
|
- 5.27.8
|
||||||
|
|
||||||
|
* Tue Aug 01 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.7-1
|
||||||
|
- 5.27.7
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.27.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 25 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.6-1
|
||||||
|
- 5.27.6
|
||||||
|
|
||||||
|
* Wed May 10 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.5-1
|
||||||
|
- 5.27.5
|
||||||
|
|
||||||
|
* Tue Apr 04 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.4-1
|
||||||
|
- 5.27.4
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.3-1
|
||||||
|
- 5.27.3
|
||||||
|
|
||||||
|
* Tue Feb 28 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.2-1
|
||||||
|
- 5.27.2
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.1-1
|
||||||
|
- 5.27.1
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.27.0-1
|
||||||
|
- 5.27.0
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.26.90-1
|
||||||
|
- 5.26.90
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.26.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 05 2023 Justin Zobel <justin@1707.io> - 5.26.5-1
|
||||||
|
- Update to 5.26.5
|
||||||
|
|
||||||
|
* Tue Nov 29 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.4-1
|
||||||
|
- 5.26.4
|
||||||
|
|
||||||
|
* Wed Nov 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.3-1
|
||||||
|
- 5.26.3
|
||||||
|
|
||||||
|
* Wed Oct 26 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.2-1
|
||||||
|
- 5.26.2
|
||||||
|
|
||||||
|
* Tue Oct 18 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.1-1
|
||||||
|
- 5.26.1
|
||||||
|
|
||||||
|
* Thu Oct 06 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.0-1
|
||||||
|
- 5.26.0
|
||||||
|
|
||||||
|
* Sat Sep 17 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.90-1
|
||||||
|
- 5.25.90
|
||||||
|
|
||||||
|
* Wed Sep 07 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.5-1
|
||||||
|
- 5.25.5
|
||||||
|
|
||||||
|
* Wed Aug 03 2022 Justin Zobel <justin@1707.io> - 5.25.4-1
|
||||||
|
- Update to 5.25.4
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.25.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 12 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.3-1
|
||||||
|
- 5.25.3
|
||||||
|
|
||||||
|
* Tue Jun 28 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.2-1
|
||||||
|
- 5.25.2
|
||||||
|
|
||||||
|
* Tue Jun 21 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.1-1
|
||||||
|
- 5.25.1
|
||||||
|
|
||||||
|
* Thu Jun 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.0-1
|
||||||
|
- 5.25.0
|
||||||
|
|
||||||
|
* Fri May 20 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.90-1
|
||||||
|
- 5.24.90
|
||||||
|
|
||||||
|
* Tue May 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.5-1
|
||||||
|
- 5.24.5
|
||||||
|
|
||||||
|
* Thu Mar 31 2022 Justin Zobel <justin@1707.io> - 5.24.4-1
|
||||||
|
- Update to 5.24.4
|
||||||
|
|
||||||
|
* Tue Mar 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.3-1
|
||||||
|
- 5.24.3
|
||||||
|
|
||||||
|
* Tue Feb 22 2022 Rex Dieter <rdieter@fedoraproject.org> - 5.24.2-1
|
||||||
|
- 5.24.2
|
||||||
|
|
||||||
|
* Tue Feb 15 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.1-1
|
||||||
|
- 5.24.1
|
||||||
|
|
||||||
|
* Thu Feb 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.0-1
|
||||||
|
- 5.24.0
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.23.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 13 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.90-1
|
||||||
|
- 5.23.90
|
||||||
|
|
||||||
|
* Tue Jan 04 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.5-1
|
||||||
|
- 5.23.5
|
||||||
|
|
||||||
|
* Tue Dec 14 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.4-1
|
||||||
|
- 5.23.4
|
||||||
|
|
||||||
|
* Wed Nov 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.3-1
|
||||||
|
- 5.23.3
|
||||||
|
|
||||||
|
* Tue Oct 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.2-1
|
||||||
|
- 5.23.2
|
||||||
|
|
||||||
|
* Sat Oct 23 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.1-1
|
||||||
|
- 5.23.1
|
||||||
|
|
||||||
|
* Fri Oct 08 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.0-1
|
||||||
|
- 5.23.0
|
||||||
|
|
||||||
|
* Sat Sep 18 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.22.90-2
|
||||||
|
- Add BuildRequires: plasma-wayland-protocols-devel
|
||||||
|
- Add BuildRequires: qt5-qtwayland-devel
|
||||||
|
- Add BuildRequires: wayland-devel
|
||||||
|
|
||||||
|
* Fri Sep 17 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.22.90-1
|
||||||
|
- 5.22.90
|
||||||
|
|
||||||
|
* Tue Aug 31 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.5-1
|
||||||
|
- 5.22.5
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.4-1
|
||||||
|
- 5.22.4
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.22.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 12 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.3-1
|
||||||
|
- 5.22.3
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2.1-1
|
||||||
|
- 5.22.2.1
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2-1
|
||||||
|
- 5.22.2
|
||||||
|
|
||||||
|
* Tue Jun 15 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.1-1
|
||||||
|
- 5.22.1
|
||||||
|
|
||||||
|
* Sun Jun 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.0-1
|
||||||
|
- 5.22.0
|
||||||
|
|
||||||
|
* Thu May 13 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.21.90-1
|
||||||
|
- 5.21.90
|
||||||
|
|
||||||
|
* Tue May 04 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.5-1
|
||||||
|
- 5.21.5
|
||||||
|
|
||||||
|
* Tue Apr 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.4-1
|
||||||
|
- 5.21.4
|
||||||
|
|
||||||
|
* Tue Mar 16 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.3-1
|
||||||
|
- 5.21.3
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.2-1
|
||||||
|
- 5.21.2
|
||||||
|
|
||||||
|
* Tue Feb 23 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.1-1
|
||||||
|
- 5.21.1
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.0-1
|
||||||
|
- 5.21.0
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.20.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.90-1
|
||||||
|
- 5.20.90 (beta)
|
||||||
|
|
||||||
|
* Tue Jan 5 16:03:31 CET 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.5-1
|
||||||
|
- 5.20.5
|
||||||
|
|
||||||
|
* Tue Dec 1 09:42:59 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.4-1
|
||||||
|
- 5.20.4
|
||||||
|
|
||||||
|
* Wed Nov 11 08:22:40 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.3-1
|
||||||
|
- 5.20.3
|
||||||
|
|
||||||
|
* Tue Oct 27 14:23:09 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.2-1
|
||||||
|
- 5.20.2
|
||||||
|
|
||||||
|
* Tue Oct 20 15:29:02 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.1-1
|
||||||
|
- 5.20.1
|
||||||
|
|
||||||
|
* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.0-1
|
||||||
|
- 5.20.0
|
||||||
|
|
||||||
|
* Fri Sep 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.90-1
|
||||||
|
- 5.19.90
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.5-1
|
||||||
|
- 5.19.5
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.4-1
|
||||||
|
- 5.19.4
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.19.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 07 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.3-1
|
||||||
|
- 5.19.3
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.2-1
|
||||||
|
- 5.19.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.1-1
|
||||||
|
- 5.19.1
|
||||||
|
|
||||||
|
* Tue Jun 9 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.0-1
|
||||||
|
- 5.19.0
|
||||||
|
|
||||||
|
* Fri May 15 2020 Martin Kyral <martin.kyral@gmail.com> - 5.18.90-1
|
||||||
|
- 5.18.90
|
||||||
|
|
||||||
|
* Tue May 05 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.5-1
|
||||||
|
- 5.18.5
|
||||||
|
|
||||||
|
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.18.4.1-1
|
||||||
|
- 5.18.4.1
|
||||||
|
|
||||||
|
* Tue Mar 31 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.4-1
|
||||||
|
- 5.18.4
|
||||||
|
|
||||||
|
* Tue Mar 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.3-1
|
||||||
|
- 5.18.3
|
||||||
|
|
||||||
|
* Fri Feb 28 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.2-2
|
||||||
|
- Handle when backend fails to load/initialize
|
||||||
|
|
||||||
|
* Tue Feb 25 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.2-1
|
||||||
|
- 5.18.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.1-1
|
||||||
|
- 5.18.1
|
||||||
|
|
||||||
|
* Tue Feb 11 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.0-1
|
||||||
|
- 5.18.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.17.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 17 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.90-2
|
||||||
|
- Respin tarball
|
||||||
|
|
||||||
|
* Thu Jan 16 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.90-1
|
||||||
|
- 5.17.90
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.5-1
|
||||||
|
- 5.17.5
|
||||||
|
|
||||||
|
* Thu Dec 05 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.4-1
|
||||||
|
- 5.17.4
|
||||||
|
|
||||||
|
* Wed Nov 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.17.3-1
|
||||||
|
- 5.17.3
|
||||||
|
|
||||||
|
* Wed Oct 30 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.2-1
|
||||||
|
- 5.17.2
|
||||||
|
|
||||||
|
* Wed Oct 23 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.1-1
|
||||||
|
- 5.17.1
|
||||||
|
|
||||||
|
* Thu Oct 10 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.0-1
|
||||||
|
- 5.17.0
|
||||||
|
|
||||||
|
* Fri Sep 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.90-1
|
||||||
|
- 5.16.90
|
||||||
|
|
||||||
|
* Fri Sep 06 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.5-1
|
||||||
|
- 5.16.5
|
||||||
|
|
||||||
|
* Tue Jul 30 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.4-1
|
||||||
|
- 5.16.4
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.16.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 10 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.3-1
|
||||||
|
- 5.16.3
|
||||||
|
|
||||||
|
* Wed Jun 26 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.2-1
|
||||||
|
- 5.16.2
|
||||||
|
|
||||||
|
* Tue Jun 18 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.16.1-1
|
||||||
|
- 5.16.1
|
||||||
|
|
||||||
|
* Tue Jun 11 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.0-1
|
||||||
|
- 5.16.0
|
||||||
|
|
||||||
|
* Thu May 16 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.90-1
|
||||||
|
- 5.15.90
|
||||||
|
|
||||||
|
* Thu May 09 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.5-1
|
||||||
|
- 5.15.5
|
||||||
|
|
||||||
|
* Wed Apr 03 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.4-1
|
||||||
|
- 5.15.4
|
||||||
|
|
||||||
|
* Tue Mar 12 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.3-1
|
||||||
|
- 5.15.3
|
||||||
|
|
||||||
|
* Tue Feb 26 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.2-1
|
||||||
|
- 5.15.2
|
||||||
|
|
||||||
|
* Tue Feb 19 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.1-1
|
||||||
|
- 5.15.1
|
||||||
|
|
||||||
|
* Wed Feb 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.0-1
|
||||||
|
- 5.15.0
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.14.90-1
|
||||||
|
- 5.14.90
|
||||||
|
|
||||||
|
* Tue Nov 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.4-1
|
||||||
|
- 5.14.4
|
||||||
|
|
||||||
|
* Thu Nov 08 2018 Martin Kyral <martin.kyral@gmail.com> - 5.14.3-1
|
||||||
|
- 5.14.3
|
||||||
|
|
||||||
|
* Wed Oct 24 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.2-1
|
||||||
|
- 5.14.2
|
||||||
|
|
||||||
|
* Tue Oct 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.1-1
|
||||||
|
- 5.14.1
|
||||||
|
|
||||||
|
* Fri Oct 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.0-1
|
||||||
|
- 5.14.0
|
||||||
|
|
||||||
|
* Fri Sep 14 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.90-1
|
||||||
|
- 5.13.90
|
||||||
|
|
||||||
|
* Tue Sep 04 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.5-1
|
||||||
|
- 5.13.5
|
||||||
|
|
||||||
|
* Thu Aug 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.4-1
|
||||||
|
- 5.13.4
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.13.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.3-1
|
||||||
|
- 5.13.3
|
||||||
|
|
||||||
|
* Mon Jul 09 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.2-1
|
||||||
|
- 5.13.2
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.1-1
|
||||||
|
- 5.13.1
|
||||||
|
|
||||||
|
* Sat Jun 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.0-1
|
||||||
|
- 5.13.0
|
||||||
|
|
||||||
|
* Fri May 18 2018 Martin Kyral <martin.kyral@gmail.com> - 5.12.90-1
|
||||||
|
- 5.12.90
|
||||||
|
|
||||||
|
* Tue May 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
|
||||||
|
* Tue Mar 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.4-1
|
||||||
|
- 5.12.4
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.3-1
|
||||||
|
- 5.12.3
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.2-1
|
||||||
|
- 5.12.2
|
||||||
|
|
||||||
|
* Tue Feb 13 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.1-1
|
||||||
|
- 5.12.1
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 02 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.0-1
|
||||||
|
- 5.12.0
|
||||||
|
|
||||||
|
* Mon Jan 15 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.95-1
|
||||||
|
- 5.11.95
|
||||||
|
|
||||||
|
* Tue Jan 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.5-1
|
||||||
|
- 5.11.5
|
||||||
|
|
||||||
|
* Thu Nov 30 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.4-1
|
||||||
|
- 5.11.4
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-1
|
||||||
|
- 5.11.3
|
||||||
|
|
||||||
|
* Wed Oct 25 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.2-1
|
||||||
|
- 5.11.2
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-1
|
||||||
|
- 5.11.1
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.0-1
|
||||||
|
- 5.11.0
|
||||||
|
|
||||||
|
* Thu Aug 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.5-1
|
||||||
|
- 5.10.5
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.4-1
|
||||||
|
- 5.10.4
|
||||||
|
|
||||||
|
* Tue Jun 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.3-1
|
||||||
|
- 5.10.3
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.2-1
|
||||||
|
- 5.10.2
|
||||||
|
|
||||||
|
* Tue Jun 06 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.1-1
|
||||||
|
- 5.10.1
|
||||||
|
|
||||||
|
* Wed May 31 2017 Jan Grulich <jgrulich@redhat.com> - 5.10.0-1
|
||||||
|
- 5.10.0
|
||||||
|
|
||||||
|
* Wed Apr 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.5-1
|
||||||
|
- 5.9.5
|
||||||
|
|
||||||
|
* Thu Mar 23 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.4-1
|
||||||
|
- 5.9.4
|
||||||
|
|
||||||
|
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.3-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.3-1
|
||||||
|
- 5.9.3
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.8.6-1
|
||||||
|
- 5.8.6
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.8.5-2
|
||||||
|
- filter plugin provides
|
||||||
|
|
||||||
|
* Wed Dec 28 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.5-1
|
||||||
|
- 5.8.5
|
||||||
|
|
||||||
|
* Tue Nov 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.4-1
|
||||||
|
- 5.8.4
|
||||||
|
|
||||||
|
* Tue Nov 01 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.3-1
|
||||||
|
- 5.8.3
|
||||||
|
|
||||||
|
* Tue Oct 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.2-1
|
||||||
|
- 5.8.2
|
||||||
|
|
||||||
|
* Tue Oct 11 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.1-1
|
||||||
|
- 5.8.1
|
||||||
|
|
||||||
|
* Thu Sep 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.0-1
|
||||||
|
- 5.8.0
|
||||||
|
|
||||||
|
* Thu Sep 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.95-1
|
||||||
|
- 5.7.95
|
||||||
|
|
||||||
|
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.5-1
|
||||||
|
- 5.7.5
|
||||||
|
|
||||||
|
* Tue Aug 23 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.4-1
|
||||||
|
- 5.7.4
|
||||||
|
|
||||||
|
* Tue Aug 02 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.3-1
|
||||||
|
- 5.7.3
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.2-1
|
||||||
|
- 5.7.2
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-2
|
||||||
|
- rebuild (qt5)
|
||||||
|
|
||||||
|
* Tue Jul 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-1
|
||||||
|
- 5.7.1
|
||||||
|
|
||||||
|
* Thu Jun 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.0-1
|
||||||
|
- 5.7.0
|
||||||
|
|
||||||
|
* Sat Jun 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.95-1
|
||||||
|
- 5.6.95
|
||||||
|
|
||||||
|
* Tue Jun 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.5-1
|
||||||
|
- 5.6.5
|
||||||
|
|
||||||
|
* Wed May 25 2016 Than Ngo <than@redhat.com> - 5.6.4-2
|
||||||
|
- disable wayland for epel7
|
||||||
|
|
||||||
|
* Sat May 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.4-1
|
||||||
|
- 5.6.4
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.3-1
|
||||||
|
- 5.6.3
|
||||||
|
|
||||||
|
* Sat Apr 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.2-1
|
||||||
|
- 5.6.2
|
||||||
|
|
||||||
|
* Sat Apr 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-2
|
||||||
|
- relax BR: kf5-kwayland-devel dep
|
||||||
|
- track library soname
|
||||||
|
|
||||||
|
* Fri Apr 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-1
|
||||||
|
- 5.6.1
|
||||||
|
|
||||||
|
* Tue Mar 01 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.5-1
|
||||||
|
- Plasma 5.5.5
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.4-1
|
||||||
|
- Plasma 5.5.4
|
||||||
|
|
||||||
|
* Thu Jan 07 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.3-1
|
||||||
|
- Plasma 5.5.3
|
||||||
|
|
||||||
|
* Thu Dec 31 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.5.2-1
|
||||||
|
- 5.5.2
|
||||||
|
|
||||||
|
* Fri Dec 18 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.1-1
|
||||||
|
- Plasma 5.5.1
|
||||||
|
|
||||||
|
* Thu Dec 03 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.0-1
|
||||||
|
- Plasma 5.5.0
|
||||||
|
|
||||||
|
* Wed Nov 25 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.95-1
|
||||||
|
- Plasma 5.4.95
|
||||||
|
|
||||||
|
* Thu Nov 05 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.3-1
|
||||||
|
- Plasma 5.4.3
|
||||||
|
|
||||||
|
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.2-1
|
||||||
|
- 5.4.2
|
||||||
|
|
||||||
|
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-2
|
||||||
|
- .spec cosmetics
|
||||||
|
|
||||||
|
* Wed Sep 09 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-1
|
||||||
|
- 5.4.1
|
||||||
|
|
||||||
|
* Fri Aug 21 2015 Daniel Vrátil <dvratil@redhat.com> - 5.4.0-1
|
||||||
|
- Plasma 5.4.0
|
||||||
|
|
||||||
|
* Thu Aug 13 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.95-1
|
||||||
|
- Plasma 5.3.95
|
||||||
|
|
||||||
|
* Thu Jun 25 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.2-1
|
||||||
|
- Plasma 5.3.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.1-1
|
||||||
|
- Plasma 5.3.1
|
||||||
|
|
||||||
|
* Thu Apr 30 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.0-2
|
||||||
|
- Fix Obsoletes once more
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.0-1
|
||||||
|
- Plasma 5.3.0
|
||||||
|
|
||||||
|
* Wed Apr 22 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.95-1
|
||||||
|
- Plasma 5.2.95
|
||||||
|
|
||||||
|
* Fri Mar 20 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.2-1
|
||||||
|
- Plasma 5.2.2
|
||||||
|
|
||||||
|
* Fri Feb 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-2
|
||||||
|
- Rebuild (GCC 5)
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-1
|
||||||
|
- Plasma 5.2.1
|
||||||
|
|
||||||
|
* Wed Jan 28 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-2
|
||||||
|
- Fix Obsoletes
|
||||||
|
|
||||||
|
* Mon Jan 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-1
|
||||||
|
- Plasma 5.2.0
|
||||||
|
(new package, forked from libkscreen)
|
||||||
991
sonic-screen/sonic-screen.spec
Normal file
991
sonic-screen/sonic-screen.spec
Normal file
|
|
@ -0,0 +1,991 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
%define oldname kscreen
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
|
||||||
|
Name: sonic-screen
|
||||||
|
Epoch: 1
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: KDE Display Management software
|
||||||
|
|
||||||
|
License: CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND (GPL-2.0-only OR GPL-3.0-only)
|
||||||
|
#URL: https://invent.kde.org/plasma/%{name}
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
BuildRequires: qt6-qtsensors-devel
|
||||||
|
|
||||||
|
BuildRequires: cmake(LayerShellQt)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6GlobalAccel)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6Screen)
|
||||||
|
BuildRequires: cmake(KF6Svg)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6KirigamiPlatform)
|
||||||
|
BuildRequires: cmake(Qt6WaylandClient)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: pkgconfig(wayland-protocols)
|
||||||
|
BuildRequires: wayland-devel
|
||||||
|
|
||||||
|
BuildRequires: cmake(Plasma)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(xcb-atom)
|
||||||
|
BuildRequires: pkgconfig(xi)
|
||||||
|
|
||||||
|
Conflicts: kscreen
|
||||||
|
|
||||||
|
%description
|
||||||
|
KCM and KDED modules for managing displays in KDE.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --with-kde --all-name
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES
|
||||||
|
%{_bindir}/kscreen-console
|
||||||
|
%{_bindir}/hdrcalibrator
|
||||||
|
%{_kf6_datadir}/applications/kcm_kscreen.desktop
|
||||||
|
%{_kf6_datadir}/kglobalaccel/org.kde.kscreen.desktop
|
||||||
|
%{_kf6_datadir}/dbus-1/services/org.kde.kscreen.osdService.service
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kscreen.categories
|
||||||
|
%{_kf6_plugindir}/kded/kscreen.so
|
||||||
|
%{_kf6_qtplugindir}/plasma/applets/org.kde.kscreen.so
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_kscreen.so
|
||||||
|
%{_libexecdir}/kscreen_osd_service
|
||||||
|
%{_userunitdir}/plasma-kscreen-osd.service
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 1:6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 1:6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 1:6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 1:6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 1:6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 1:6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 1:6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 1:6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 1:6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 1:6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 1:6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 1:6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 1:6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 1:6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 1:6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Mon Aug 18 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.4.4-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Wed Jun 18 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.0-2
|
||||||
|
- Fix for missing BR
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 1:6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 1:6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 1:6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Wed Apr 23 2025 Vinicius <viniciush.dev@gmail.com> - 1:6.3.4-3
|
||||||
|
- Backport a fix for when the shortcut for Display Configuration does not
|
||||||
|
work due to dbus communication issues
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 1:6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 1:6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 1:6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 1:6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 1:6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 1:6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 1:6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 1:6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 1:6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 1:6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 1:6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 1:6.2.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 1:6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 1:6.0.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 1:5.93.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 1:5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 1:5.27.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Mon Nov 13 2023 Alessandro Astone <ales.astone@gmail.com> - 1:5.27.80-1
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Tue Oct 24 2023 Steve Cossette <farchord@gmail.com> - 1:5.27.9-1
|
||||||
|
- 5.27.9
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 justin.zobel@gmail.com - 1:5.27.8-1
|
||||||
|
- 5.27.8
|
||||||
|
|
||||||
|
* Tue Aug 01 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.7-1
|
||||||
|
- 5.27.7
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.27.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 25 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.6-1
|
||||||
|
- 5.27.6
|
||||||
|
|
||||||
|
* Wed May 10 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.5-1
|
||||||
|
- 5.27.5
|
||||||
|
|
||||||
|
* Tue Apr 04 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.4-1
|
||||||
|
- 5.27.4
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.3-1
|
||||||
|
- 5.27.3
|
||||||
|
|
||||||
|
* Tue Feb 28 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.2-1
|
||||||
|
- 5.27.2
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.1.1-1
|
||||||
|
- 5.27.1.1
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:5.27.1-1
|
||||||
|
- 5.27.1
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 Marc Deop <marcdeop@fedoraproject.org> - 1:5.27.0-1
|
||||||
|
- 5.27.0
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.90-1
|
||||||
|
- 5.26.90
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.26.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 05 2023 Justin Zobel <justin@1707.io> - 1:5.26.5-1
|
||||||
|
- Update to 5.26.5
|
||||||
|
|
||||||
|
* Tue Nov 29 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.4-1
|
||||||
|
- 5.26.4
|
||||||
|
|
||||||
|
* Wed Nov 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.3-1
|
||||||
|
- 5.26.3
|
||||||
|
|
||||||
|
* Wed Oct 26 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.2-1
|
||||||
|
- 5.26.2
|
||||||
|
|
||||||
|
* Tue Oct 18 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.1-1
|
||||||
|
- 5.26.1
|
||||||
|
|
||||||
|
* Thu Oct 06 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.26.0-1
|
||||||
|
- 5.26.0
|
||||||
|
|
||||||
|
* Sat Sep 17 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.90-1
|
||||||
|
- 5.25.90
|
||||||
|
|
||||||
|
* Wed Sep 07 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.5-1
|
||||||
|
- 5.25.5
|
||||||
|
|
||||||
|
* Wed Aug 03 2022 Justin Zobel <justin@1707.io> - 5.25.4-1
|
||||||
|
- Update to 5.25.4
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.25.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 12 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.3-1
|
||||||
|
- 5.25.3
|
||||||
|
|
||||||
|
* Tue Jun 28 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.2-1
|
||||||
|
- 5.25.2
|
||||||
|
|
||||||
|
* Tue Jun 21 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.1-1
|
||||||
|
- 5.25.1
|
||||||
|
|
||||||
|
* Thu Jun 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.25.0-1
|
||||||
|
- 5.25.0
|
||||||
|
|
||||||
|
* Fri May 20 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.24.90-1
|
||||||
|
- 5.24.90
|
||||||
|
|
||||||
|
* Tue May 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.24.5-1
|
||||||
|
- 5.24.5
|
||||||
|
|
||||||
|
* Thu Mar 31 2022 Justin Zobel <justin@1707.io> - 5.24.4-1
|
||||||
|
- Update to 5.24.4
|
||||||
|
|
||||||
|
* Tue Mar 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.24.3-1
|
||||||
|
- 5.24.3
|
||||||
|
|
||||||
|
* Tue Feb 22 2022 Rex Dieter <rdieter@fedoraproject.org> - 1:5.24.2-1
|
||||||
|
- 5.24.2
|
||||||
|
|
||||||
|
* Tue Feb 15 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.24.1-1
|
||||||
|
- 5.24.1
|
||||||
|
|
||||||
|
* Thu Feb 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.24.0-1
|
||||||
|
- 5.24.0
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.23.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 13 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.23.90-1
|
||||||
|
- 5.23.90
|
||||||
|
|
||||||
|
* Tue Jan 04 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:5.23.5-1
|
||||||
|
- 5.23.5
|
||||||
|
|
||||||
|
* Tue Dec 14 2021 Marc Deop <marcdeop@fedoraproject.org> - 1:5.23.4-1
|
||||||
|
- 5.23.4
|
||||||
|
|
||||||
|
* Wed Nov 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:5.23.3-1
|
||||||
|
- 5.23.3
|
||||||
|
|
||||||
|
* Tue Oct 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:5.23.2-1
|
||||||
|
- 5.23.2
|
||||||
|
|
||||||
|
* Sat Oct 23 2021 Marc Deop <marcdeop@fedoraproject.org> - 1:5.23.1-1
|
||||||
|
- 5.23.1
|
||||||
|
|
||||||
|
* Fri Oct 08 2021 Marc Deop <marcdeop@fedoraproject.org> - 1:5.23.0-1
|
||||||
|
- 5.23.0
|
||||||
|
|
||||||
|
* Sun Sep 19 2021 Marc Deop <marcdeop@fedoraproject.org> - 1:5.22.90-2
|
||||||
|
- Adjust Licenses
|
||||||
|
|
||||||
|
* Fri Sep 17 2021 Marc Deop <marcdeop@fedoraproject.org> - 1:5.22.90-1
|
||||||
|
- 5.22.90
|
||||||
|
|
||||||
|
* Tue Aug 31 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.5-1
|
||||||
|
- 5.22.5
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.4-1
|
||||||
|
- 5.22.4
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.22.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 12 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.3-1
|
||||||
|
- 5.22.3
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.2.1-1
|
||||||
|
- 5.22.2.1
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.2-1
|
||||||
|
- 5.22.2
|
||||||
|
|
||||||
|
* Tue Jun 15 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.1-1
|
||||||
|
- 5.22.1
|
||||||
|
|
||||||
|
* Sun Jun 06 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.22.0-1
|
||||||
|
- 5.22.0
|
||||||
|
|
||||||
|
* Fri May 14 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:5.21.90-1
|
||||||
|
- 5.21.90
|
||||||
|
|
||||||
|
* Tue May 04 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.5-1
|
||||||
|
- 5.21.5
|
||||||
|
|
||||||
|
* Tue Apr 06 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.4-1
|
||||||
|
- 5.21.4
|
||||||
|
|
||||||
|
* Tue Mar 16 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.3-1
|
||||||
|
- 5.21.3
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.2-1
|
||||||
|
- 5.21.2
|
||||||
|
|
||||||
|
* Tue Feb 23 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.1-1
|
||||||
|
- 5.21.1
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.21.0-1
|
||||||
|
- 5.21.0
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.20.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.20.90-1
|
||||||
|
- 5.20.90 (beta)
|
||||||
|
|
||||||
|
* Tue Jan 5 16:03:31 CET 2021 Jan Grulich <jgrulich@redhat.com> - 1:5.20.5-1
|
||||||
|
- 5.20.5
|
||||||
|
|
||||||
|
* Tue Dec 1 09:42:58 CET 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.20.4-1
|
||||||
|
- 5.20.4
|
||||||
|
|
||||||
|
* Wed Nov 11 08:22:39 CET 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.20.3-1
|
||||||
|
- 5.20.3
|
||||||
|
|
||||||
|
* Tue Oct 27 14:22:39 CET 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.20.2-1
|
||||||
|
- 5.20.2
|
||||||
|
|
||||||
|
* Tue Oct 20 15:28:34 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.20.1-1
|
||||||
|
- 5.20.1
|
||||||
|
|
||||||
|
* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.20.0-1
|
||||||
|
- 5.20.0
|
||||||
|
|
||||||
|
* Fri Sep 18 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.19.90-1
|
||||||
|
- 5.19.90
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.19.5-1
|
||||||
|
- 5.19.5
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.19.4-1
|
||||||
|
- 5.19.4
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.19.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 07 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.19.3-1
|
||||||
|
- 5.19.3
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.19.2-1
|
||||||
|
- 5.19.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.1-1
|
||||||
|
- 5.19.1
|
||||||
|
|
||||||
|
* Tue Jun 9 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.0-1
|
||||||
|
- 5.19.0
|
||||||
|
|
||||||
|
* Fri May 15 2020 Martin Kyral <martin.kyral@gmail.com> - 5.18.90-1
|
||||||
|
- 5.18.90
|
||||||
|
|
||||||
|
* Tue May 05 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.5-1
|
||||||
|
- 5.18.5
|
||||||
|
|
||||||
|
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:5.18.4.1-1
|
||||||
|
- 5.18.4.1
|
||||||
|
|
||||||
|
* Tue Mar 31 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.4-1
|
||||||
|
- 5.18.4
|
||||||
|
|
||||||
|
* Tue Mar 10 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.3-1
|
||||||
|
- 5.18.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.2-1
|
||||||
|
- 5.18.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.1-1
|
||||||
|
- 5.18.1
|
||||||
|
|
||||||
|
* Tue Feb 11 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.18.0-1
|
||||||
|
- 5.18.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.17.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 16 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.17.90-1
|
||||||
|
- 5.17.90
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Jan Grulich <jgrulich@redhat.com> - 1:5.17.5-1
|
||||||
|
- 5.17.5
|
||||||
|
|
||||||
|
* Thu Dec 05 2019 Jan Grulich <jgrulich@redhat.com> - 1:5.17.4-1
|
||||||
|
- 5.17.4
|
||||||
|
|
||||||
|
* Wed Nov 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.17.3-1
|
||||||
|
- 5.17.3
|
||||||
|
|
||||||
|
* Wed Oct 30 2019 Jan Grulich <jgrulich@redhat.com> - 1:5.17.2-1
|
||||||
|
- 5.17.2
|
||||||
|
|
||||||
|
* Wed Oct 23 2019 Jan Grulich <jgrulich@redhat.com> - 1:5.17.1-1
|
||||||
|
- 5.17.1
|
||||||
|
|
||||||
|
* Thu Oct 10 2019 Jan Grulich <jgrulich@redhat.com> - 1:5.17.0-1
|
||||||
|
- 5.17.0
|
||||||
|
|
||||||
|
* Fri Sep 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.90-1
|
||||||
|
- 5.16.90
|
||||||
|
|
||||||
|
* Fri Sep 06 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.5-1
|
||||||
|
- 5.16.5
|
||||||
|
|
||||||
|
* Tue Jul 30 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.4-1
|
||||||
|
- 5.16.4
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.16.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 10 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.3-1
|
||||||
|
- 5.16.3
|
||||||
|
|
||||||
|
* Wed Jun 26 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.2-1
|
||||||
|
- 5.16.2
|
||||||
|
|
||||||
|
* Tue Jun 18 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:5.16.1-1
|
||||||
|
- 5.16.1
|
||||||
|
|
||||||
|
* Tue Jun 11 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.0-1
|
||||||
|
- 5.16.0
|
||||||
|
|
||||||
|
* Thu May 16 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.90-1
|
||||||
|
- 5.15.90
|
||||||
|
|
||||||
|
* Thu May 09 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.5-1
|
||||||
|
- 5.15.5
|
||||||
|
|
||||||
|
* Wed Apr 03 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:5.15.4-1
|
||||||
|
- 5.15.4
|
||||||
|
|
||||||
|
* Tue Mar 12 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.3-1
|
||||||
|
- 5.15.3
|
||||||
|
|
||||||
|
* Tue Feb 26 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:5.15.2-1
|
||||||
|
- 5.15.2
|
||||||
|
|
||||||
|
* Tue Feb 19 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:5.15.1-1
|
||||||
|
- 5.15.1
|
||||||
|
|
||||||
|
* Wed Feb 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.0-1
|
||||||
|
- 5.15.0
|
||||||
|
|
||||||
|
* Mon Feb 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:5.14.90-3
|
||||||
|
- Add versioned runtime dep for libkscreen-qt5
|
||||||
|
- use %%make_build
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.14.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.14.90-1
|
||||||
|
- 5.14.90
|
||||||
|
|
||||||
|
* Tue Nov 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.14.4-1
|
||||||
|
- 5.14.4
|
||||||
|
|
||||||
|
* Thu Nov 08 2018 Martin Kyral <martin.kyral@gmail.com> - 5.14.3-1
|
||||||
|
- 5.14.3
|
||||||
|
|
||||||
|
* Wed Oct 24 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.14.2-1
|
||||||
|
- 5.14.2
|
||||||
|
|
||||||
|
* Tue Oct 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.14.1-1
|
||||||
|
- 5.14.1
|
||||||
|
|
||||||
|
* Fri Oct 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.14.0-1
|
||||||
|
- 5.14.0
|
||||||
|
|
||||||
|
* Fri Sep 14 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.90-1
|
||||||
|
- 5.13.90
|
||||||
|
|
||||||
|
* Tue Sep 04 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.13.5-1
|
||||||
|
- 5.13.5
|
||||||
|
|
||||||
|
* Thu Aug 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.13.4-1
|
||||||
|
- 5.13.4
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.13.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.3-1
|
||||||
|
- 5.13.3
|
||||||
|
|
||||||
|
* Mon Jul 09 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.2-1
|
||||||
|
- 5.13.2
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.1-1
|
||||||
|
- 5.13.1
|
||||||
|
|
||||||
|
* Sat Jun 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.13.0-1
|
||||||
|
- 5.13.0
|
||||||
|
|
||||||
|
* Fri May 18 2018 Martin Kyral <martin.kyral@gmail.com> - 5.12.90-1
|
||||||
|
- 5.12.90
|
||||||
|
|
||||||
|
* Tue May 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
|
||||||
|
* Tue Mar 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.12.4-1
|
||||||
|
- 5.12.4
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.12.3-1
|
||||||
|
- 5.12.3
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.2-1
|
||||||
|
- 5.12.2
|
||||||
|
|
||||||
|
* Tue Feb 13 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.1-1
|
||||||
|
- 5.12.1
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 02 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.0-1
|
||||||
|
- 5.12.0
|
||||||
|
|
||||||
|
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:5.11.95-2
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Mon Jan 15 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.95-1
|
||||||
|
- 5.11.95
|
||||||
|
|
||||||
|
* Tue Jan 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:5.11.5-1
|
||||||
|
- 5.11.5
|
||||||
|
|
||||||
|
* Thu Nov 30 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.4-1
|
||||||
|
- 5.11.4
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.11.3-1
|
||||||
|
- 5.11.3
|
||||||
|
|
||||||
|
* Wed Oct 25 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.2-1
|
||||||
|
- 5.11.2
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.11.1-1
|
||||||
|
- 5.11.1
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.0-1
|
||||||
|
- 5.11.0
|
||||||
|
|
||||||
|
* Thu Aug 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.10.5-1
|
||||||
|
- 5.10.5
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.10.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.10.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.10.4-1
|
||||||
|
- 5.10.4
|
||||||
|
|
||||||
|
* Tue Jun 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.10.3-1
|
||||||
|
- 5.10.3
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.10.2-1
|
||||||
|
- 5.10.2
|
||||||
|
|
||||||
|
* Tue Jun 06 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.10.1-1
|
||||||
|
- 5.10.1
|
||||||
|
|
||||||
|
* Wed May 31 2017 Jan Grulich <jgrulich@redhat.com> - 5.10.0-1
|
||||||
|
- 5.10.0
|
||||||
|
|
||||||
|
* Wed Apr 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.9.5-1
|
||||||
|
- 5.9.5
|
||||||
|
|
||||||
|
* Thu Mar 23 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.9.4-1
|
||||||
|
- 5.9.4
|
||||||
|
|
||||||
|
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.9.3-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.3-1
|
||||||
|
- 5.9.3
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.6-1
|
||||||
|
- 5.8.6
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.8.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.5-2
|
||||||
|
- filter plugin provides
|
||||||
|
|
||||||
|
* Wed Dec 28 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.5-1
|
||||||
|
- 5.8.5
|
||||||
|
|
||||||
|
* Tue Nov 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.4-1
|
||||||
|
- 5.8.4
|
||||||
|
|
||||||
|
* Tue Nov 01 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.3-1
|
||||||
|
- 5.8.3
|
||||||
|
|
||||||
|
* Tue Oct 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.2-1
|
||||||
|
- 5.8.2
|
||||||
|
|
||||||
|
* Tue Oct 11 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.1-1
|
||||||
|
- 5.8.1
|
||||||
|
|
||||||
|
* Thu Sep 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.8.0-1
|
||||||
|
- 5.8.0
|
||||||
|
|
||||||
|
* Thu Sep 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.95-1
|
||||||
|
- 5.7.95
|
||||||
|
|
||||||
|
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.5-1
|
||||||
|
- 5.7.5
|
||||||
|
|
||||||
|
* Tue Aug 23 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.4-1
|
||||||
|
- 5.7.4
|
||||||
|
|
||||||
|
* Tue Aug 02 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.3-1
|
||||||
|
- 5.7.3
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.2-1
|
||||||
|
- 5.7.2
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-2
|
||||||
|
- rebuild (qt5)
|
||||||
|
|
||||||
|
* Tue Jul 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.1-1
|
||||||
|
- 5.7.1
|
||||||
|
|
||||||
|
* Thu Jun 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.7.0-1
|
||||||
|
- 5.7.0
|
||||||
|
|
||||||
|
* Sat Jun 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.95-1
|
||||||
|
- 5.6.95
|
||||||
|
|
||||||
|
* Tue Jun 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.5-1
|
||||||
|
- 5.6.5
|
||||||
|
|
||||||
|
* Sat May 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.4-1
|
||||||
|
- 5.6.4
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.3-1
|
||||||
|
- 5.6.3
|
||||||
|
|
||||||
|
* Sun Apr 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.2-1.1
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Sat Apr 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.2-1
|
||||||
|
- 5.6.2
|
||||||
|
|
||||||
|
* Fri Apr 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.6.1-1
|
||||||
|
- 5.6.1
|
||||||
|
|
||||||
|
* Tue Mar 01 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.5-1
|
||||||
|
- Plasma 5.5.5
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.5.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.4-1
|
||||||
|
- Plasma 5.5.4
|
||||||
|
|
||||||
|
* Thu Jan 07 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.3-1
|
||||||
|
- Plasma 5.5.3
|
||||||
|
|
||||||
|
* Thu Dec 31 2015 Rex Dieter <rdieter@fedoraproject.org> - 1:5.5.2-1
|
||||||
|
- 5.5.2
|
||||||
|
|
||||||
|
* Fri Dec 18 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.1-1
|
||||||
|
- Plasma 5.5.1
|
||||||
|
|
||||||
|
* Thu Dec 03 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.0-1
|
||||||
|
- Plasma 5.5.0
|
||||||
|
|
||||||
|
* Wed Nov 25 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.95-1
|
||||||
|
- Plasma 5.4.95
|
||||||
|
|
||||||
|
* Thu Nov 05 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.3-1
|
||||||
|
- Plasma 5.4.3
|
||||||
|
|
||||||
|
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 1:5.4.2-1
|
||||||
|
- 5.4.2
|
||||||
|
|
||||||
|
* Wed Sep 09 2015 Rex Dieter <rdieter@fedoraproject.org> - 1:5.4.1-1
|
||||||
|
- 5.4.1
|
||||||
|
|
||||||
|
* Fri Aug 21 2015 Daniel Vrátil <dvratil@redhat.com> - 5.4.0-1
|
||||||
|
- Plasma 5.4.0
|
||||||
|
|
||||||
|
* Thu Aug 13 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.95-1
|
||||||
|
- Plasma 5.3.95
|
||||||
|
|
||||||
|
* Thu Jun 25 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.2-1
|
||||||
|
- Plasma 5.3.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:5.3.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.1-1
|
||||||
|
- Plasma 5.3.1
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.0-1
|
||||||
|
- Plasma 5.3.0
|
||||||
|
|
||||||
|
* Wed Apr 22 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.95-1
|
||||||
|
- Plasma 5.2.95
|
||||||
|
|
||||||
|
* Wed Apr 15 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.2-2
|
||||||
|
- add upstream fix for RHBZ#1211881
|
||||||
|
|
||||||
|
* Fri Mar 20 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.2-1
|
||||||
|
- Plasma 5.2.2
|
||||||
|
|
||||||
|
* Thu Mar 05 2015 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-3
|
||||||
|
- Requires: qt5-qtgraphicaleffects (#1199084)
|
||||||
|
|
||||||
|
* Fri Feb 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-2
|
||||||
|
- Rebuild (GCC 5)
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-1
|
||||||
|
- Plasma 5.2.1
|
||||||
|
|
||||||
|
* Wed Jan 28 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-2
|
||||||
|
- BR libkscreen-qt5-devel (it Provides kf5-kscreen-devel, but lets use the correct name)
|
||||||
|
|
||||||
|
* Mon Jan 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-1
|
||||||
|
- Plasma 5.2.0
|
||||||
|
|
||||||
|
* Wed Jan 14 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.95-2.beta.20150112git7a8460a
|
||||||
|
- BR kf5-kscreen-devel (renamed from libkscreen)
|
||||||
|
|
||||||
|
* Mon Jan 12 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.95-1.beta.20150112git7a8460a
|
||||||
|
- Update to latest git snapshot
|
||||||
|
|
||||||
|
* Thu Jan 08 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.2-2.20150108git0d70c77
|
||||||
|
- Update to latest git snapshot
|
||||||
|
|
||||||
|
* Wed Dec 17 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.2-2
|
||||||
|
- Plasma 5.1.2
|
||||||
|
|
||||||
|
* Fri Nov 28 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.1-1.20141128gitccf52c4
|
||||||
|
- Update to latest git snapshot
|
||||||
|
|
||||||
|
* Fri Nov 07 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.1-1.20141107git88b2a3f
|
||||||
|
- Plasma 5.1.1
|
||||||
|
|
||||||
|
* Thu Oct 23 2014 Daniel Vrátil <dvratil@redhat.com> 1:5.0.92-20141023git
|
||||||
|
- kscreen 5.0.92 (git)
|
||||||
|
|
||||||
|
* Fri Nov 22 2013 Dan Vrátil <dvratil@redhat.com> 1:1.0.2.1-1
|
||||||
|
- kscreen 1:1.0.2.1-1
|
||||||
|
|
||||||
|
* Wed Nov 20 2013 Dan Vrátil <dvratil@redhat.com> 1:1.0.2-1
|
||||||
|
- kscreen 1:1.0.2-1
|
||||||
|
|
||||||
|
* Thu Aug 01 2013 Dan Vrátil <dvratil@redhat.com> 1:1.0.1-1
|
||||||
|
- kscreen 1:1.0.1-1
|
||||||
|
|
||||||
|
* Mon Jun 17 2013 Dan Vrátil <dvratil@redhat.com> 1:1.0-1
|
||||||
|
- kscreen 1:1.0-1
|
||||||
|
|
||||||
|
* Thu May 02 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.92-1
|
||||||
|
- update to 1:0.0.92-1
|
||||||
|
|
||||||
|
* Tue Apr 23 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.82.git20130424-1
|
||||||
|
- dev git build
|
||||||
|
|
||||||
|
* Mon Apr 08 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.81-2
|
||||||
|
- Explicitely depend on the same version of libkscreen
|
||||||
|
|
||||||
|
* Wed Mar 27 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.81-1
|
||||||
|
- Update to 1:0.0.81-1
|
||||||
|
|
||||||
|
* Mon Jan 28 2013 Rex Dieter <rdieter@fedoraproject.org> 1:0.0.71-3
|
||||||
|
- drop Provides: kde-display-management, Conflicts: kded_randrmonitor
|
||||||
|
|
||||||
|
* Thu Jan 24 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.71-2
|
||||||
|
- add Provides and Conflicts fields so make sure radrmonitor and
|
||||||
|
kscreen never run side by side
|
||||||
|
|
||||||
|
* Sun Jan 20 2013 Dan Vrátil <dvratil@redhat.com> 1:0.0.71-1
|
||||||
|
- update to 0.0.71 - first official release
|
||||||
|
- install kscreen-console, which has been moved from libkscreen
|
||||||
|
- the KCM is now called kcm_kscreen
|
||||||
|
|
||||||
|
* Wed Jan 09 2013 Dan Vrátil <dvratil@redhat.com> 0.9.0-5.20121228git
|
||||||
|
- Update description, we don't ship the Plasma applet yet
|
||||||
|
- Provides kde-display-management, a metapackage for KScreen and kded_randrmonitor
|
||||||
|
- Conflicts with kded_randrmonitor
|
||||||
|
|
||||||
|
* Wed Jan 09 2013 Rex Dieter <rdieter@fedoraproject.org> 0.9.0-4.20121228git
|
||||||
|
- BR: qjson-devel >= 0.8.1
|
||||||
|
- License: GPLv2 or GPLv3
|
||||||
|
- tighten %%files
|
||||||
|
|
||||||
|
* Wed Jan 02 2013 Dan Vrátil <dvratil@redhat.com> 0.9.0-3.20121228git
|
||||||
|
- Added qjson-devel to BuildRequires
|
||||||
|
|
||||||
|
* Fri Dec 28 2012 Dan Vrátil <dvratil@redhat.com> 0.9.0-2.20121228git
|
||||||
|
- Fixed URL
|
||||||
|
|
||||||
|
* Fri Dec 28 2012 Dan Vrátil <dvratil@redhat.com> 0.9.0-1.20121228git
|
||||||
|
- Fixed versioning
|
||||||
|
- Added instructions how to obtain sources
|
||||||
|
- Removed 'rm -rf $RPM_BUILD_ROOT'
|
||||||
|
|
||||||
|
* Wed Dec 26 2012 Dan Vrátil <dvratil@redhat.com> 20121226gitb31ab08-1
|
||||||
|
- Initial SPEC
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
diff --color -Naur sonic-screenlocker.old/CMakeLists.txt sonic-screenlocker/CMakeLists.txt
|
||||||
|
--- sonic-screenlocker.old/CMakeLists.txt 2026-05-23 02:41:08.346994414 +0000
|
||||||
|
+++ sonic-screenlocker/CMakeLists.txt 2026-05-23 02:43:15.704255243 +0000
|
||||||
|
@@ -2,10 +2,10 @@
|
||||||
|
|
||||||
|
project(kscreenlocker)
|
||||||
|
set(CMAKE_C_STANDARD 99)
|
||||||
|
-set(PROJECT_VERSION "6.6.5")
|
||||||
|
+set(PROJECT_VERSION "6.6.4")
|
||||||
|
set(PROJECT_VERSION_MAJOR 6)
|
||||||
|
|
||||||
|
-set(PROJECT_DEP_VERSION "6.6.5")
|
||||||
|
+set(PROJECT_DEP_VERSION "6.6.4")
|
||||||
|
set(QT_MIN_VERSION "6.10.0")
|
||||||
|
set(KF6_MIN_VERSION "6.22.0")
|
||||||
|
|
||||||
866
sonic-screenlocker/sonic-screenlocker.spec
Normal file
866
sonic-screenlocker/sonic-screenlocker.spec
Normal file
|
|
@ -0,0 +1,866 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
%define oldname kscreenlocker
|
||||||
|
|
||||||
|
Name: sonic-screenlocker
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Library and components for secure lock screen architecture
|
||||||
|
|
||||||
|
License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only)
|
||||||
|
#URL: https://invent.kde.org/plasma/%{name}
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: https://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
# help upgrades, split from plasma-workspace since 5.5
|
||||||
|
Conflicts: plasma-workspace < 5.5
|
||||||
|
|
||||||
|
## upstream patches
|
||||||
|
|
||||||
|
BuildRequires: cmake(LayerShellQt)
|
||||||
|
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6GlobalAccel)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6IdleTime)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Notifications)
|
||||||
|
BuildRequires: cmake(KF6Screen)
|
||||||
|
BuildRequires: cmake(KF6Solid)
|
||||||
|
BuildRequires: cmake(KF6Svg)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6KirigamiPlatform)
|
||||||
|
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: xcb-util-keysyms-devel
|
||||||
|
BuildRequires: wayland-devel
|
||||||
|
BuildRequires: pkgconfig(xi)
|
||||||
|
|
||||||
|
# Plasma
|
||||||
|
BuildRequires: cmake(PlasmaQuick)
|
||||||
|
|
||||||
|
BuildRequires: libXcursor-devel
|
||||||
|
BuildRequires: pam-devel
|
||||||
|
|
||||||
|
Conflicts: kscreenlocker
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
Patch30: sonic-screenlocker-6.6.5.2-fake-version-6.6.4.patch
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Conflicts: kscreenlocker
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{oldname} --with-qt --all-name
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{oldname}.lang
|
||||||
|
%license COPYING
|
||||||
|
%{_kf6_libdir}/libKScreenLocker.so.*
|
||||||
|
%{_kf6_datadir}/knotifications6/*.notifyrc
|
||||||
|
%{_libexecdir}/kscreenlocker_greet
|
||||||
|
%dir %{_kf6_datadir}/ksmserver/
|
||||||
|
%{_kf6_datadir}/ksmserver/screenlocker/
|
||||||
|
%{_kf6_datadir}/applications/kcm_screenlocker.desktop
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_screenlocker.so
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kscreenlocker.categories
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_libdir}/libKScreenLocker.so
|
||||||
|
%{_kf6_libdir}/cmake/ScreenSaverDBusInterface/
|
||||||
|
%{_kf6_libdir}/cmake/KScreenLocker/
|
||||||
|
%{_includedir}/KScreenLocker/
|
||||||
|
%{_datadir}/dbus-1/interfaces/*.xml
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 6.2.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 6.0.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 5.93.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Wed Nov 29 2023 Jan Grulich <jgrulich@redhat.com> - 5.27.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Mon Nov 13 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-1
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Tue Oct 24 2023 Steve Cossette <farchord@gmail.com> - 5.27.9-1
|
||||||
|
- 5.27.9
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1
|
||||||
|
- 5.27.8
|
||||||
|
|
||||||
|
* Tue Aug 01 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.7-1
|
||||||
|
- 5.27.7
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.27.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 25 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.6-1
|
||||||
|
- 5.27.6
|
||||||
|
|
||||||
|
* Wed May 10 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.5-1
|
||||||
|
- 5.27.5
|
||||||
|
|
||||||
|
* Tue Apr 04 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.4-1
|
||||||
|
- 5.27.4
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.3-1
|
||||||
|
- 5.27.3
|
||||||
|
|
||||||
|
* Tue Feb 28 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.2-1
|
||||||
|
- 5.27.2
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.1-1
|
||||||
|
- 5.27.1
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.27.0-1
|
||||||
|
- 5.27.0
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.26.90-1
|
||||||
|
- 5.26.90
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.26.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 05 2023 Justin Zobel <justin@1707.io> - 5.26.5-1
|
||||||
|
- Update to 5.26.5
|
||||||
|
|
||||||
|
* Tue Nov 29 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.4-1
|
||||||
|
- 5.26.4
|
||||||
|
|
||||||
|
* Wed Nov 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.3-1
|
||||||
|
- 5.26.3
|
||||||
|
|
||||||
|
* Wed Oct 26 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.2-1
|
||||||
|
- 5.26.2
|
||||||
|
|
||||||
|
* Tue Oct 18 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.1-1
|
||||||
|
- 5.26.1
|
||||||
|
|
||||||
|
* Thu Oct 06 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.0-1
|
||||||
|
- 5.26.0
|
||||||
|
|
||||||
|
* Sat Sep 17 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.90-1
|
||||||
|
- 5.25.90
|
||||||
|
|
||||||
|
* Wed Sep 07 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.5-1
|
||||||
|
- 5.25.5
|
||||||
|
|
||||||
|
* Wed Aug 03 2022 Justin Zobel <justin@1707.io> - 5.25.4-1
|
||||||
|
- Update to 5.25.4
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.25.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 12 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.3-1
|
||||||
|
- 5.25.3
|
||||||
|
|
||||||
|
* Tue Jun 28 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.2-1
|
||||||
|
- 5.25.2
|
||||||
|
|
||||||
|
* Tue Jun 21 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.1-1
|
||||||
|
- 5.25.1
|
||||||
|
|
||||||
|
* Thu Jun 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.0-1
|
||||||
|
- 5.25.0
|
||||||
|
|
||||||
|
* Fri May 20 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.90-1
|
||||||
|
- 5.24.90
|
||||||
|
|
||||||
|
* Tue May 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.5-1
|
||||||
|
- 5.24.5
|
||||||
|
|
||||||
|
* Thu Mar 31 2022 Justin Zobel <justin@1707.io> - 5.24.4-1
|
||||||
|
- Update to 5.24.4
|
||||||
|
|
||||||
|
* Tue Mar 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.3-1
|
||||||
|
- 5.24.3
|
||||||
|
|
||||||
|
* Tue Feb 22 2022 Rex Dieter <rdieter@fedoraproject.org> - 5.24.2-1
|
||||||
|
- 5.24.2
|
||||||
|
|
||||||
|
* Tue Feb 15 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.1-1
|
||||||
|
- 5.24.1
|
||||||
|
|
||||||
|
* Thu Feb 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.0-1
|
||||||
|
- 5.24.0
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.23.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 13 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.90-1
|
||||||
|
- 5.23.90
|
||||||
|
|
||||||
|
* Tue Jan 04 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.5-1
|
||||||
|
- 5.23.5
|
||||||
|
|
||||||
|
* Tue Dec 14 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.4-1
|
||||||
|
- 5.23.4
|
||||||
|
|
||||||
|
* Wed Nov 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.3-1
|
||||||
|
- 5.23.3
|
||||||
|
|
||||||
|
* Tue Oct 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.2-1
|
||||||
|
- 5.23.2
|
||||||
|
|
||||||
|
* Sat Oct 23 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.1-1
|
||||||
|
- 5.23.1
|
||||||
|
|
||||||
|
* Fri Oct 08 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.0-1
|
||||||
|
- 5.23.0
|
||||||
|
|
||||||
|
* Fri Sep 17 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.22.90-1
|
||||||
|
- 5.22.90
|
||||||
|
|
||||||
|
* Tue Aug 31 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.5-1
|
||||||
|
- 5.22.5
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.4-1
|
||||||
|
- 5.22.4
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.22.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 12 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.3-1
|
||||||
|
- 5.22.3
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2.1-1
|
||||||
|
- 5.22.2.1
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2-1
|
||||||
|
- 5.22.2
|
||||||
|
|
||||||
|
* Tue Jun 15 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.1-1
|
||||||
|
- 5.22.1
|
||||||
|
|
||||||
|
* Sun Jun 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.0-1
|
||||||
|
- 5.22.0
|
||||||
|
|
||||||
|
* Thu May 13 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.21.90-1
|
||||||
|
- 5.21.90
|
||||||
|
|
||||||
|
* Tue May 04 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.5-1
|
||||||
|
- 5.21.5
|
||||||
|
|
||||||
|
* Tue Apr 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.4-1
|
||||||
|
- 5.21.4
|
||||||
|
|
||||||
|
* Tue Mar 16 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.3-1
|
||||||
|
- 5.21.3
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.2-1
|
||||||
|
- 5.21.2
|
||||||
|
|
||||||
|
* Tue Feb 23 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.1-1
|
||||||
|
- 5.21.1
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.0-1
|
||||||
|
- 5.21.0
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.20.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.90-1
|
||||||
|
- 5.20.90 (beta)
|
||||||
|
|
||||||
|
* Tue Jan 5 16:03:30 CET 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.5-1
|
||||||
|
- 5.20.5
|
||||||
|
|
||||||
|
* Tue Dec 1 09:42:58 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.4-1
|
||||||
|
- 5.20.4
|
||||||
|
|
||||||
|
* Wed Nov 11 08:22:39 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.3-1
|
||||||
|
- 5.20.3
|
||||||
|
|
||||||
|
* Tue Oct 27 14:22:36 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.2-1
|
||||||
|
- 5.20.2
|
||||||
|
|
||||||
|
* Tue Oct 20 15:28:31 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.1-1
|
||||||
|
- 5.20.1
|
||||||
|
|
||||||
|
* Sun Oct 11 19:50:03 CEST 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.0-1
|
||||||
|
- 5.20.0
|
||||||
|
|
||||||
|
* Fri Sep 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.90-1
|
||||||
|
- 5.19.90
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.5-1
|
||||||
|
- 5.19.5
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.4-1
|
||||||
|
- 5.19.4
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.19.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 07 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.3-1
|
||||||
|
- 5.19.3
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.2-1
|
||||||
|
- 5.19.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.1-1
|
||||||
|
- 5.19.1
|
||||||
|
|
||||||
|
* Tue Jun 9 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.0-1
|
||||||
|
- 5.19.0
|
||||||
|
|
||||||
|
* Fri May 15 2020 Martin Kyral <martin.kyral@gmail.com> - 5.18.90-1
|
||||||
|
- 5.18.90
|
||||||
|
|
||||||
|
* Tue May 05 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.5-1
|
||||||
|
- 5.18.5
|
||||||
|
|
||||||
|
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.18.4.1-1
|
||||||
|
- 5.18.4.1
|
||||||
|
|
||||||
|
* Tue Mar 31 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.4-1
|
||||||
|
- 5.18.4
|
||||||
|
|
||||||
|
* Tue Mar 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.3-1
|
||||||
|
- 5.18.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.2-1
|
||||||
|
- 5.18.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.1-1
|
||||||
|
- 5.18.1
|
||||||
|
|
||||||
|
* Tue Feb 11 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.0-1
|
||||||
|
- 5.18.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.17.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 16 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.90-1
|
||||||
|
- 5.17.90
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.5-1
|
||||||
|
- 5.17.5
|
||||||
|
|
||||||
|
* Thu Dec 05 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.4-1
|
||||||
|
- 5.17.4
|
||||||
|
|
||||||
|
* Wed Nov 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.17.3-1
|
||||||
|
- 5.17.3
|
||||||
|
|
||||||
|
* Wed Oct 30 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.2-1
|
||||||
|
- 5.17.2
|
||||||
|
|
||||||
|
* Wed Oct 23 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.1-1
|
||||||
|
- 5.17.1
|
||||||
|
|
||||||
|
* Thu Oct 10 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.0-1
|
||||||
|
- 5.17.0
|
||||||
|
|
||||||
|
* Fri Sep 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.90-1
|
||||||
|
- 5.16.90
|
||||||
|
|
||||||
|
* Fri Sep 06 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.5-1
|
||||||
|
- 5.16.5
|
||||||
|
|
||||||
|
* Tue Jul 30 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.4-1
|
||||||
|
- 5.16.4
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.16.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 10 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.3-1
|
||||||
|
- 5.16.3
|
||||||
|
|
||||||
|
* Wed Jun 26 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.2-1
|
||||||
|
- 5.16.2
|
||||||
|
|
||||||
|
* Tue Jun 18 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.16.1-1
|
||||||
|
- 5.16.1
|
||||||
|
|
||||||
|
* Tue Jun 11 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.0-1
|
||||||
|
- 5.16.0
|
||||||
|
|
||||||
|
* Thu May 16 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.90-1
|
||||||
|
- 5.15.90
|
||||||
|
|
||||||
|
* Thu May 09 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.5-1
|
||||||
|
- 5.15.5
|
||||||
|
|
||||||
|
* Wed Apr 03 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.4-1
|
||||||
|
- 5.15.4
|
||||||
|
|
||||||
|
* Tue Mar 12 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.3-1
|
||||||
|
- 5.15.3
|
||||||
|
|
||||||
|
* Thu Feb 28 2019 Pete Walter <pwalter@fedoraproject.org> - 5.15.2-2
|
||||||
|
- Update wayland deps
|
||||||
|
|
||||||
|
* Tue Feb 26 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.2-1
|
||||||
|
- 5.15.2
|
||||||
|
|
||||||
|
* Tue Feb 19 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.1-1
|
||||||
|
- 5.15.1
|
||||||
|
|
||||||
|
* Wed Feb 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.0-1
|
||||||
|
- 5.15.0
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.14.90-1
|
||||||
|
- 5.14.90
|
||||||
|
|
||||||
|
* Tue Nov 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.4-1
|
||||||
|
- 5.14.4
|
||||||
|
|
||||||
|
* Thu Nov 08 2018 Martin Kyral <martin.kyral@gmail.com> - 5.14.3-1
|
||||||
|
- 5.14.3
|
||||||
|
|
||||||
|
* Wed Oct 24 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.2-1
|
||||||
|
- 5.14.2
|
||||||
|
|
||||||
|
* Tue Oct 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.1-1
|
||||||
|
- 5.14.1
|
||||||
|
|
||||||
|
* Fri Oct 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.0-1
|
||||||
|
- 5.14.0
|
||||||
|
|
||||||
|
* Fri Sep 14 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.90-1
|
||||||
|
- 5.13.90
|
||||||
|
|
||||||
|
* Tue Sep 04 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.5-1
|
||||||
|
- 5.13.5
|
||||||
|
|
||||||
|
* Thu Aug 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.4-1
|
||||||
|
- 5.13.4
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.13.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.3-1
|
||||||
|
- 5.13.3
|
||||||
|
|
||||||
|
* Mon Jul 09 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.2-1
|
||||||
|
- 5.13.2
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.1-1
|
||||||
|
- 5.13.1
|
||||||
|
|
||||||
|
* Sat Jun 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.0-1
|
||||||
|
- 5.13.0
|
||||||
|
|
||||||
|
* Fri May 18 2018 Martin Kyral <martin.kyral@gmail.com> - 5.12.90-1
|
||||||
|
- 5.12.90
|
||||||
|
|
||||||
|
* Tue May 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
|
||||||
|
* Tue Mar 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.4-1
|
||||||
|
- 5.12.4
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.3-1
|
||||||
|
- 5.12.3
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.2-1
|
||||||
|
- 5.12.2
|
||||||
|
|
||||||
|
* Tue Feb 13 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.1-1
|
||||||
|
- 5.12.1
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 02 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.0-1
|
||||||
|
- 5.12.0
|
||||||
|
|
||||||
|
* Mon Jan 15 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.95-1
|
||||||
|
- 5.11.95
|
||||||
|
|
||||||
|
* Tue Jan 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.5-1
|
||||||
|
- 5.11.5
|
||||||
|
|
||||||
|
* Thu Nov 30 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.4-1
|
||||||
|
- 5.11.4
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-1
|
||||||
|
- 5.11.3
|
||||||
|
|
||||||
|
* Wed Oct 25 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.2-1
|
||||||
|
- 5.11.2
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-1
|
||||||
|
- 5.11.1
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.0-1
|
||||||
|
- 5.11.0
|
||||||
|
|
||||||
|
* Fri Sep 01 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.5.1-1
|
||||||
|
- 5.10.5.1, drop redundant kf5-filesystem dep
|
||||||
|
|
||||||
|
* Thu Aug 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.5-1
|
||||||
|
- 5.10.5
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.4-1
|
||||||
|
- 5.10.4
|
||||||
|
|
||||||
|
* Tue Jun 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.3-1
|
||||||
|
- 5.10.3
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.2-1
|
||||||
|
- 5.10.2
|
||||||
|
|
||||||
|
* Tue Jun 06 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.1-1
|
||||||
|
- 5.10.1
|
||||||
|
|
||||||
|
* Wed May 31 2017 Jan Grulich <jgrulich@redhat.com> - 5.10.0-1
|
||||||
|
- 5.10.0
|
||||||
|
|
||||||
|
* Wed Apr 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.5-1
|
||||||
|
- 5.9.5
|
||||||
|
|
||||||
|
* Thu Mar 23 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.4-1
|
||||||
|
- 5.9.4
|
||||||
|
|
||||||
|
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.3-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.3-1
|
||||||
|
- 5.9.3
|
||||||
|
|
||||||
|
* Fri Feb 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.8.6-2
|
||||||
|
- update URL
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.8.6-1
|
||||||
|
- 5.8.6
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 28 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.5-1
|
||||||
|
- 5.8.5
|
||||||
|
|
||||||
|
* Tue Nov 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.4-1
|
||||||
|
- 5.8.4
|
||||||
|
|
||||||
|
* Tue Nov 01 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.3-1
|
||||||
|
- 5.8.3
|
||||||
|
|
||||||
|
* Tue Oct 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.2-1
|
||||||
|
- 5.8.2
|
||||||
|
|
||||||
|
* Tue Oct 11 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.1-1
|
||||||
|
- 5.8.1
|
||||||
|
|
||||||
|
* Thu Sep 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.0-1
|
||||||
|
- 5.8.0
|
||||||
|
|
||||||
|
* Thu Sep 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.95-1
|
||||||
|
- 5.7.95
|
||||||
|
|
||||||
|
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.5-1
|
||||||
|
- 5.7.5
|
||||||
|
|
||||||
|
* Tue Aug 23 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.4-1
|
||||||
|
- 5.7.4
|
||||||
|
|
||||||
|
* Tue Aug 02 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.3-1
|
||||||
|
- 5.7.3
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.2-1
|
||||||
|
- 5.7.2
|
||||||
|
|
||||||
|
* Tue Jul 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-1
|
||||||
|
- 5.7.1
|
||||||
|
|
||||||
|
* Thu Jun 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.0-1
|
||||||
|
- 5.7.0
|
||||||
|
|
||||||
|
* Sat Jun 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.95-1
|
||||||
|
- 5.6.95
|
||||||
|
|
||||||
|
* Tue Jun 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.5-1
|
||||||
|
- 5.6.5
|
||||||
|
|
||||||
|
* Sat May 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.4-1
|
||||||
|
- 5.6.4
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.3-1
|
||||||
|
- 5.6.3
|
||||||
|
|
||||||
|
* Sat Apr 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.2-1
|
||||||
|
- 5.6.2
|
||||||
|
|
||||||
|
* Fri Apr 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-1
|
||||||
|
- 5.6.1
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> 5.5.5-2
|
||||||
|
- Conflicts: plasma-workspace < 5.5
|
||||||
|
|
||||||
|
* Tue Mar 01 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.5-1
|
||||||
|
- Plasma 5.5.5
|
||||||
|
|
||||||
|
* Wed Feb 10 2016 Rex Dieter <rdieter@fedoraproject.org> 5.5.4-3
|
||||||
|
- cosmetics
|
||||||
|
- pull in upstream fixes
|
||||||
|
- polish dir ownership
|
||||||
|
- enable XInput support
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.4-1
|
||||||
|
- Plasma 5.5.4
|
||||||
|
|
||||||
|
* Thu Jan 07 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.3-1
|
||||||
|
- Plasma 5.5.3
|
||||||
|
|
||||||
|
* Thu Dec 31 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.5.2-1
|
||||||
|
- 5.5.2
|
||||||
|
|
||||||
|
* Fri Dec 18 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.1-1
|
||||||
|
- Plasma 5.5.1
|
||||||
|
|
||||||
|
* Thu Dec 03 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.0-1
|
||||||
|
- Plasma 5.5.0
|
||||||
|
|
||||||
|
* Wed Nov 25 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.95-1
|
||||||
|
- Plasma 5.4.95
|
||||||
89
sonic-silver-theme/sonic-silver-theme.spec
Normal file
89
sonic-silver-theme/sonic-silver-theme.spec
Normal file
|
|
@ -0,0 +1,89 @@
|
||||||
|
Name: sonic-silver-theme
|
||||||
|
Version: 6.6.0
|
||||||
|
Release: 1
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
Summary: Highly customizable theming for the Sonic Desktop Environment
|
||||||
|
URL: https://github.com/Sonic-DE/silver-theme
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
#Group: Graphical Desktop/KDE
|
||||||
|
|
||||||
|
#BuildSystem: cmake
|
||||||
|
#BuildOption: -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
||||||
|
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
BuildRequires: appstream
|
||||||
|
BuildRequires: qt5-qtbase-devel
|
||||||
|
BuildRequires: cmake(KF5Config)
|
||||||
|
BuildRequires: cmake(KF5ConfigWidgets)
|
||||||
|
BuildRequires: cmake(KF5CoreAddons)
|
||||||
|
BuildRequires: cmake(KF5FrameworkIntegration)
|
||||||
|
BuildRequires: cmake(KF5GuiAddons)
|
||||||
|
BuildRequires: cmake(KF5I18n)
|
||||||
|
BuildRequires: cmake(KF5IconThemes)
|
||||||
|
BuildRequires: cmake(KF5Kirigami2)
|
||||||
|
BuildRequires: cmake(KF5WindowSystem)
|
||||||
|
BuildRequires: cmake(Qt5DBus)
|
||||||
|
BuildRequires: cmake(Qt5Quick)
|
||||||
|
BuildRequires: cmake(Qt5Widgets)
|
||||||
|
BuildRequires: cmake(Qt5X11Extras)
|
||||||
|
BuildRequires: cmake(KDecoration3)
|
||||||
|
BuildRequires: cmake(KF6ColorScheme)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6FrameworkIntegration)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6KirigamiPlatform)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
BuildRequires: cmake(Qt6Svg)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6Xml)
|
||||||
|
BuildRequires: cmake(Qt6QmlCore)
|
||||||
|
BuildRequires: cmake(Qt6QmlNetwork)
|
||||||
|
BuildRequires: cmake(Qt6ExamplesAssetDownloaderPrivate)
|
||||||
|
BuildRequires: pkgconfig(Qt6QmlAssetDownloader)
|
||||||
|
BuildRequires: qt6-qtbase-theme-gtk3
|
||||||
|
|
||||||
|
%description
|
||||||
|
Highly customizable theming for the KDE Plasma desktop. Install, and enable in System Settings -> Appearance -> Global Themes (or individually in Window Decorations, Application Style and Icons).
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 \
|
||||||
|
%if %[(0%{?rhel} >= 10)]
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DBUILD_TESTING=OFF \
|
||||||
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%{_bindir}/%{name}-settings
|
||||||
|
%{_libdir}/cmake/Klassy
|
||||||
|
%{_libdir}/libklassycommon*
|
||||||
|
%{_libdir}/qt5/plugins/styles/klassy5.so
|
||||||
|
%{_libdir}/qt6/plugins/kstyle_config/klassystyleconfig.so
|
||||||
|
%{_libdir}/qt6/plugins/org.kde.kdecoration3.kcm/kcm_klassydecoration.so
|
||||||
|
%{_libdir}/qt6/plugins/org.kde.kdecoration3.kcm/klassydecoration
|
||||||
|
%{_libdir}/qt6/plugins/org.kde.kdecoration3/org.kde.klassy.so
|
||||||
|
%{_libdir}/qt6/plugins/styles/klassy6.so
|
||||||
|
%{_iconsdir}/klassy-dark
|
||||||
|
%{_iconsdir}/klassy
|
||||||
|
%{_iconsdir}/hicolor/scalable/apps/klassy-settings.svgz
|
||||||
|
%{_datadir}/kstyle/themes/%{name}.themerc
|
||||||
|
%{_datadir}/plasma/desktoptheme/klassy
|
||||||
|
%{_datadir}/plasma/layout-templates/*
|
||||||
|
%{_datadir}/plasma/look-and-feel/*
|
||||||
|
%{_datadir}/applications/kcm_klassydecoration.desktop
|
||||||
|
%{_datadir}/applications/klassy*
|
||||||
|
%{_datadir}/color-schemes/Klassy*
|
||||||
1014
sonic-sysguard-library/sonic-sysguard-library.spec
Normal file
1014
sonic-sysguard-library/sonic-sysguard-library.spec
Normal file
File diff suppressed because it is too large
Load diff
974
sonic-system-info/sonic-system-info.spec
Normal file
974
sonic-system-info/sonic-system-info.spec
Normal file
|
|
@ -0,0 +1,974 @@
|
||||||
|
%define _disable_source_fetch 0
|
||||||
|
%define debug_package %{nil}
|
||||||
|
%define oldname kinfocenter
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: sonic-system-info
|
||||||
|
|
||||||
|
Version: 6.6.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: KDE Info Center
|
||||||
|
|
||||||
|
License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND FSFAP AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only)
|
||||||
|
#URL: https://invent.kde.org/plasma/%
|
||||||
|
URL: https://github.com/Sonic-DE/%{name}
|
||||||
|
|
||||||
|
#Source0: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
|
||||||
|
#Source1: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
|
||||||
|
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
|
||||||
|
BuildRequires: kf6-rpm-macros
|
||||||
|
BuildRequires: extra-cmake-modules
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Completion)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6ConfigWidgets)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Service)
|
||||||
|
BuildRequires: cmake(KF6Solid)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6Declarative)
|
||||||
|
BuildRequires: cmake(KF6Package)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: mesa-libGL-devel
|
||||||
|
BuildRequires: mesa-libGLES-devel
|
||||||
|
BuildRequires: mesa-libEGL-devel
|
||||||
|
BuildRequires: mesa-libGLU-devel
|
||||||
|
BuildRequires: libX11-devel
|
||||||
|
BuildRequires: pciutils-devel
|
||||||
|
BuildRequires: pkgconfig(libusb-1.0)
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
BuildRequires: pkgconfig(libudev)
|
||||||
|
%ifnarch s390 s390x
|
||||||
|
BuildRequires: libraw1394-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Kirigami2)
|
||||||
|
Requires: kf6-kirigami2%{?_isa}
|
||||||
|
|
||||||
|
# runtime query of usb.ids, oui.txt
|
||||||
|
Requires: hwdata
|
||||||
|
|
||||||
|
# Runtime dependencies
|
||||||
|
Requires: plasma-systemsettings
|
||||||
|
Requires: wayland-utils
|
||||||
|
%ifarch %{ix86} x86_64 aarch64
|
||||||
|
Requires: dmidecode
|
||||||
|
%endif
|
||||||
|
Requires: vulkan-tools
|
||||||
|
Requires: xdpyinfo
|
||||||
|
Requires: egl-utils
|
||||||
|
Requires: fwupd
|
||||||
|
Requires: aha
|
||||||
|
Requires: clinfo
|
||||||
|
Requires: pulseaudio-utils
|
||||||
|
Requires: libdisplay-info-tools
|
||||||
|
|
||||||
|
# When kinfocenter was split out from kde-workspace
|
||||||
|
Conflicts: kde-workspace < 4.11.15-3
|
||||||
|
Conflicts: kinfocenter
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/org.kde.kinfocenter.desktop
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/kcm_about-distro.desktop
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/kcm_energyinfo.desktop
|
||||||
|
# commented out until upstream fixes a duplicate entries problem
|
||||||
|
#appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%{_datadir}/applications/kcm_energyinfo.desktop
|
||||||
|
%{_bindir}/kinfocenter
|
||||||
|
%{_kf6_libdir}/libKInfoCenterInternal.so
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/*.so
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/kinfocenter/*.so
|
||||||
|
%{_datadir}/metainfo/org.kde.kinfocenter.appdata.xml
|
||||||
|
%{_datadir}/applications/org.kde.kinfocenter.desktop
|
||||||
|
%{_datadir}/applications/kcm_about-distro.desktop
|
||||||
|
%{_kf6_datadir}/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service
|
||||||
|
%{_kf6_datadir}/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf
|
||||||
|
%{_libexecdir}/kinfocenter-opengl-helper
|
||||||
|
%{_kf6_datadir}/kinfocenter/
|
||||||
|
%{_kf6_datadir}/polkit-1/actions/org.kde.kinfocenter.dmidecode.policy
|
||||||
|
%{_qt6_archdatadir}/qml/org/kde/kinfocenter/
|
||||||
|
%{_kf6_libexecdir}/kauth/kinfocenter-dmidecode-helper
|
||||||
|
%{_libexecdir}/kinfocenter-vulkan-helper
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 10 2026 Steve Cossette <farchord@gmail.com> - 6.6.4-1
|
||||||
|
- 6.6.4
|
||||||
|
|
||||||
|
* Tue Mar 17 2026 Steve Cossette <farchord@gmail.com> - 6.6.3-1
|
||||||
|
- 6.6.3
|
||||||
|
|
||||||
|
* Tue Mar 03 2026 Steve Cossette <farchord@gmail.com> - 6.6.2-1
|
||||||
|
- 6.6.2
|
||||||
|
|
||||||
|
* Tue Feb 24 2026 Steve Cossette <farchord@gmail.com> - 6.6.1-1
|
||||||
|
- 6.6.1
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 6.6.0-1
|
||||||
|
- 6.6.0
|
||||||
|
|
||||||
|
* Tue Jan 27 2026 Steve Cossette <farchord@gmail.com> - 6.5.91-1
|
||||||
|
- 6.5.91
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 6.5.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.90-1
|
||||||
|
- 6.5.90
|
||||||
|
|
||||||
|
* Tue Jan 13 2026 farchord@gmail.com - 6.5.5-1
|
||||||
|
- 6.5.5
|
||||||
|
|
||||||
|
* Tue Dec 09 2025 Steve Cossette <farchord@gmail.com> - 6.5.4-1
|
||||||
|
- 6.5.4
|
||||||
|
|
||||||
|
* Tue Nov 18 2025 Steve Cossette <farchord@gmail.com> - 6.5.3-1
|
||||||
|
- 6.5.3
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 6.5.2-1
|
||||||
|
- 6.5.2
|
||||||
|
|
||||||
|
* Tue Oct 28 2025 Steve Cossette <farchord@gmail.com> - 6.5.1-1
|
||||||
|
- 6.5.1
|
||||||
|
|
||||||
|
* Fri Oct 17 2025 Steve Cossette <farchord@gmail.com> - 6.5.0-1
|
||||||
|
- 6.5.0
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Steve Cossette <farchord@gmail.com> - 6.4.91-1
|
||||||
|
- 6.4.91
|
||||||
|
|
||||||
|
* Thu Oct 02 2025 Jan Grulich <jgrulich@redhat.com> - 6.4.5-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Sep 25 2025 Steve Cossette <farchord@gmail.com> - 6.4.90-1
|
||||||
|
- 6.4.90
|
||||||
|
|
||||||
|
* Tue Sep 16 2025 farchord@gmail.com - 6.4.5-1
|
||||||
|
- 6.4.5
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.4-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Wed Aug 06 2025 Steve Cossette <farchord@gmail.com> - 6.4.4-1
|
||||||
|
- 6.4.4
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Steve Cossette <farchord@gmail.com> - 6.4.3-1
|
||||||
|
- 6.4.3
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 6.4.2-1
|
||||||
|
- 6.4.2
|
||||||
|
|
||||||
|
* Tue Jun 24 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.4.1-1
|
||||||
|
- 6.4.1
|
||||||
|
|
||||||
|
* Wed Jun 18 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-2
|
||||||
|
- Fix for missing BR
|
||||||
|
|
||||||
|
* Mon Jun 16 2025 Steve Cossette <farchord@gmail.com> - 6.4.0-1
|
||||||
|
- 6.4.0
|
||||||
|
|
||||||
|
* Sat May 31 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.91-2
|
||||||
|
- Add signature file
|
||||||
|
|
||||||
|
* Fri May 30 2025 Steve Cossette <farchord@gmail.com> - 6.3.91-1
|
||||||
|
- 6.3.91
|
||||||
|
|
||||||
|
* Thu May 15 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.90-1
|
||||||
|
- 6.3.90
|
||||||
|
|
||||||
|
* Tue May 06 2025 Steve Cossette <farchord@gmail.com> - 6.3.5-1
|
||||||
|
- 6.3.5
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.4-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* Fri Mar 28 2025 Jan Grulich <jgrulich@redhat.com> - 6.3.3-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Mar 11 2025 Steve Cossette <farchord@gmail.com> - 6.3.3-1
|
||||||
|
- 6.3.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2025 Steve Cossette <farchord@gmail.com> - 6.3.2-1
|
||||||
|
- 6.3.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2025 Steve Cossette <farchord@gmail.com> - 6.3.1-1
|
||||||
|
- 6.3.1
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.0-1
|
||||||
|
- 6.3.0
|
||||||
|
|
||||||
|
* Thu Jan 23 2025 Steve Cossette <farchord@gmail.com> - 6.2.91-1
|
||||||
|
- 6.2.91
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 09 2025 Steve Cossette <farchord@gmail.com> - 6.2.90-1
|
||||||
|
- Beta 6.2.90
|
||||||
|
|
||||||
|
* Tue Dec 31 2024 Steve Cossette <farchord@gmail.com> - 6.2.5-1
|
||||||
|
- 6.2.5
|
||||||
|
|
||||||
|
* Tue Nov 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.4-1
|
||||||
|
- 6.2.4
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 6.2.3-1
|
||||||
|
- 6.2.3
|
||||||
|
|
||||||
|
* Tue Oct 22 2024 Steve Cossette <farchord@gmail.com> - 6.2.2-1
|
||||||
|
- 6.2.2
|
||||||
|
|
||||||
|
* Tue Oct 15 2024 Steve Cossette <farchord@gmail.com> - 6.2.1-1
|
||||||
|
- 6.2.1
|
||||||
|
|
||||||
|
* Thu Oct 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.2.0-1
|
||||||
|
- 6.2.0
|
||||||
|
|
||||||
|
* Thu Sep 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.90-1
|
||||||
|
- 6.1.90
|
||||||
|
|
||||||
|
* Tue Sep 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.5-1
|
||||||
|
- 6.1.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2024 Steve Cossette <farchord@gmail.com> - 6.1.4-1
|
||||||
|
- 6.1.4
|
||||||
|
|
||||||
|
* Sun Jul 28 2024 Thomas Duckworth <tduck973564@gmail.com> - 6.1.3-4
|
||||||
|
- Require pulseaudio-utils, which provides pactl
|
||||||
|
|
||||||
|
* Wed Jul 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-3
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.3-1
|
||||||
|
- 6.1.3
|
||||||
|
|
||||||
|
* Wed Jul 03 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.2-1
|
||||||
|
- 6.1.2
|
||||||
|
|
||||||
|
* Tue Jun 25 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.1-1
|
||||||
|
- 6.1.1
|
||||||
|
|
||||||
|
* Thu Jun 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.1.0-1
|
||||||
|
- 6.1.0
|
||||||
|
|
||||||
|
* Fri May 24 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.90-1
|
||||||
|
- 6.0.90
|
||||||
|
|
||||||
|
* Wed May 22 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.5-1
|
||||||
|
- 6.0.5
|
||||||
|
|
||||||
|
* Tue Apr 16 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.4-1
|
||||||
|
- 6.0.4
|
||||||
|
|
||||||
|
* Tue Mar 26 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.3-1
|
||||||
|
- 6.0.3
|
||||||
|
|
||||||
|
* Tue Mar 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.2-1
|
||||||
|
- 6.0.2
|
||||||
|
|
||||||
|
* Wed Mar 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.1-1
|
||||||
|
- 6.0.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.0.0-1
|
||||||
|
- 6.0.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.93.0-1
|
||||||
|
- 5.93.0
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.92.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 10 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.92.0-1
|
||||||
|
- 5.92.0
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.91.0-1
|
||||||
|
- 5.91.0
|
||||||
|
|
||||||
|
* Wed Dec 13 2023 Timothée Ravier <tim@siosm.fr> - 5.90.0-2
|
||||||
|
- Only require dmidecode on i686, x86_64 & aarch64
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Sun Nov 12 2023 Steve Cossette <farchord@gmail.com> - 5.27.80-1
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Tue Oct 24 2023 Steve Cossette <farchord@gmail.com> - 5.27.9-1
|
||||||
|
- 5.27.9
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 justin.zobel@gmail.com - 5.27.8-1
|
||||||
|
- 5.27.8
|
||||||
|
|
||||||
|
* Tue Aug 01 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.7-1
|
||||||
|
- 5.27.7
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.27.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 25 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.6-1
|
||||||
|
- 5.27.6
|
||||||
|
|
||||||
|
* Wed May 10 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.5-1
|
||||||
|
- 5.27.5
|
||||||
|
|
||||||
|
* Tue Apr 04 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.4-1
|
||||||
|
- 5.27.4
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.3-1
|
||||||
|
- 5.27.3
|
||||||
|
|
||||||
|
* Tue Feb 28 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.2-1
|
||||||
|
- 5.27.2
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 5.27.1-1
|
||||||
|
- 5.27.1
|
||||||
|
|
||||||
|
* Thu Feb 09 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.27.0-1
|
||||||
|
- 5.27.0
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Marc Deop <marcdeop@fedoraproject.org> - 5.26.90-1
|
||||||
|
- 5.26.90
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.26.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 05 2023 Justin Zobel <justin@1707.io> - 5.26.5-1
|
||||||
|
- Update to 5.26.5
|
||||||
|
|
||||||
|
* Tue Nov 29 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.4-1
|
||||||
|
- 5.26.4
|
||||||
|
|
||||||
|
* Wed Nov 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.3-1
|
||||||
|
- 5.26.3
|
||||||
|
|
||||||
|
* Wed Oct 26 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.2-1
|
||||||
|
- 5.26.2
|
||||||
|
|
||||||
|
* Tue Oct 18 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.1-1
|
||||||
|
- 5.26.1
|
||||||
|
|
||||||
|
* Thu Oct 06 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.26.0-1
|
||||||
|
- 5.26.0
|
||||||
|
|
||||||
|
* Sat Sep 17 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.90-1
|
||||||
|
- 5.25.90
|
||||||
|
|
||||||
|
* Sun Sep 11 2022 Vitaly Zaitsev <vitaly@easycoding.org> - 5.25.5-2
|
||||||
|
- Converted all external runtime checkers as a weak dependencies.
|
||||||
|
|
||||||
|
* Wed Sep 07 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.5-1
|
||||||
|
- 5.25.5
|
||||||
|
|
||||||
|
* Mon Aug 22 2022 Timothée Ravier <tim@siosm.fr> - 5.25.4-3
|
||||||
|
- Require vulkan-info and recommend xdpyinfo (#2054995)
|
||||||
|
|
||||||
|
* Wed Aug 17 2022 Rex Dieter <rdieter@fedoraproject.org> 5.25.4-2
|
||||||
|
- Requires: aha (#2095937)
|
||||||
|
- fix changelog
|
||||||
|
|
||||||
|
* Wed Aug 03 2022 Justin Zobel <justin@1707.io> - 5.25.4-1
|
||||||
|
- Update to 5.25.4
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.25.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 12 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.3-1
|
||||||
|
- 5.25.3
|
||||||
|
|
||||||
|
* Tue Jun 28 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.2-1
|
||||||
|
- 5.25.2
|
||||||
|
|
||||||
|
* Tue Jun 21 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.1-1
|
||||||
|
- 5.25.1
|
||||||
|
|
||||||
|
* Thu Jun 09 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.25.0-1
|
||||||
|
- 5.25.0
|
||||||
|
|
||||||
|
* Fri May 20 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.90-1
|
||||||
|
- 5.24.90
|
||||||
|
|
||||||
|
* Tue May 17 2022 Justin Zobel <justin@1707.io> - 5.24.5-2
|
||||||
|
- Add runtime dependencies
|
||||||
|
|
||||||
|
* Tue May 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.5-1
|
||||||
|
- 5.24.5
|
||||||
|
|
||||||
|
* Thu Mar 31 2022 Justin Zobel <justin@1707.io> - 5.24.4-1
|
||||||
|
- Update to 5.24.4
|
||||||
|
|
||||||
|
* Tue Mar 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.3-1
|
||||||
|
- 5.24.3
|
||||||
|
|
||||||
|
* Tue Feb 22 2022 Rex Dieter <rdieter@fedoraproject.org> - 5.24.2-1
|
||||||
|
- 5.24.2
|
||||||
|
|
||||||
|
* Tue Feb 15 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.1-1
|
||||||
|
- 5.24.1
|
||||||
|
|
||||||
|
* Thu Feb 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.24.0-1
|
||||||
|
- 5.24.0
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.23.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 13 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.90-1
|
||||||
|
- 5.23.90
|
||||||
|
|
||||||
|
* Tue Jan 04 2022 Marc Deop <marcdeop@fedoraproject.org> - 5.23.5-1
|
||||||
|
- 5.23.5
|
||||||
|
|
||||||
|
* Tue Dec 14 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.4-1
|
||||||
|
- 5.23.4
|
||||||
|
|
||||||
|
* Wed Nov 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.3-1
|
||||||
|
- 5.23.3
|
||||||
|
|
||||||
|
* Tue Oct 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.23.2-1
|
||||||
|
- 5.23.2
|
||||||
|
|
||||||
|
* Sat Oct 23 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.1-1
|
||||||
|
- 5.23.1
|
||||||
|
|
||||||
|
* Fri Oct 08 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.23.0-1
|
||||||
|
- 5.23.0
|
||||||
|
|
||||||
|
* Sun Sep 19 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.22.90-2
|
||||||
|
- Remove patch as it's applied upstream already
|
||||||
|
- Adjust files section
|
||||||
|
|
||||||
|
* Fri Sep 17 2021 Marc Deop <marcdeop@fedoraproject.org> - 5.22.90-1
|
||||||
|
- 5.22.90
|
||||||
|
|
||||||
|
* Tue Aug 31 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.5-1
|
||||||
|
- 5.22.5
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.4-1
|
||||||
|
- 5.22.4
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.22.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 12 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.3-1
|
||||||
|
- 5.22.3
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2.1-1
|
||||||
|
- 5.22.2.1
|
||||||
|
|
||||||
|
* Tue Jun 22 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.2-1
|
||||||
|
- 5.22.2
|
||||||
|
|
||||||
|
* Fri Jun 18 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.22.1-2
|
||||||
|
- Backport fix for displaying plasma version (kde#436954)
|
||||||
|
- drop unused kdelibs4support dep
|
||||||
|
|
||||||
|
* Tue Jun 15 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.1-1
|
||||||
|
- 5.22.1
|
||||||
|
|
||||||
|
* Sun Jun 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.22.0-1
|
||||||
|
- 5.22.0
|
||||||
|
|
||||||
|
* Thu May 13 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.21.90-1
|
||||||
|
- 5.21.90
|
||||||
|
|
||||||
|
* Tue May 04 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.5-1
|
||||||
|
- 5.21.5
|
||||||
|
|
||||||
|
* Mon Apr 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 5.21.4-2
|
||||||
|
- Requires: hwdata
|
||||||
|
- update URL
|
||||||
|
- make kf5-kwayland dep unconditional
|
||||||
|
- drop Req: kf5-filesystem
|
||||||
|
|
||||||
|
* Tue Apr 06 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.4-1
|
||||||
|
- 5.21.4
|
||||||
|
|
||||||
|
* Tue Mar 16 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.3-1
|
||||||
|
- 5.21.3
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.2-1
|
||||||
|
- 5.21.2
|
||||||
|
|
||||||
|
* Tue Feb 23 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.1-1
|
||||||
|
- 5.21.1
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Jan Grulich <jgrulich@redhat.com> - 5.21.0-1
|
||||||
|
- 5.21.0
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.20.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.90-1
|
||||||
|
- 5.20.90 (beta)
|
||||||
|
|
||||||
|
* Tue Jan 5 2021 Jan Grulich <jgrulich@redhat.com> - 5.20.5-1
|
||||||
|
- 5.20.5
|
||||||
|
|
||||||
|
* Tue Dec 1 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.4-1
|
||||||
|
- 5.20.4
|
||||||
|
|
||||||
|
* Wed Nov 11 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.3-1
|
||||||
|
- 5.20.3
|
||||||
|
|
||||||
|
* Tue Oct 27 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.2-1
|
||||||
|
- 5.20.2
|
||||||
|
|
||||||
|
* Tue Oct 20 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.1-1
|
||||||
|
- 5.20.1
|
||||||
|
|
||||||
|
* Sun Oct 11 2020 Jan Grulich <jgrulich@redhat.com> - 5.20.0-1
|
||||||
|
- 5.20.0
|
||||||
|
|
||||||
|
* Fri Sep 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.90-1
|
||||||
|
- 5.19.90
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.5-1
|
||||||
|
- 5.19.5
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.4-1
|
||||||
|
- 5.19.4
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.19.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 07 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.3-1
|
||||||
|
- 5.19.3
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jan Grulich <jgrulich@redhat.com> - 5.19.2-1
|
||||||
|
- 5.19.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.1-1
|
||||||
|
- 5.19.1
|
||||||
|
|
||||||
|
* Tue Jun 9 2020 Martin Kyral <martin.kyral@gmail.com> - 5.19.0-1
|
||||||
|
- 5.19.0
|
||||||
|
|
||||||
|
* Fri May 15 2020 Martin Kyral <martin.kyral@gmail.com> - 5.18.90-1
|
||||||
|
- 5.18.90
|
||||||
|
|
||||||
|
* Tue May 05 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.5-1
|
||||||
|
- 5.18.5
|
||||||
|
|
||||||
|
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.18.4.1-1
|
||||||
|
- 5.18.4.1
|
||||||
|
|
||||||
|
* Tue Mar 31 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.4-1
|
||||||
|
- 5.18.4
|
||||||
|
|
||||||
|
* Tue Mar 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.3-1
|
||||||
|
- 5.18.3
|
||||||
|
|
||||||
|
* Tue Feb 25 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.2-1
|
||||||
|
- 5.18.2
|
||||||
|
|
||||||
|
* Tue Feb 18 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.1-1
|
||||||
|
- 5.18.1
|
||||||
|
|
||||||
|
* Tue Feb 11 2020 Jan Grulich <jgrulich@redhat.com> - 5.18.0-1
|
||||||
|
- 5.18.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.17.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 16 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.90-1
|
||||||
|
- 5.17.90
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Jan Grulich <jgrulich@redhat.com> - 5.17.5-1
|
||||||
|
- 5.17.5
|
||||||
|
|
||||||
|
* Thu Dec 05 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.4-1
|
||||||
|
- 5.17.4
|
||||||
|
|
||||||
|
* Wed Nov 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.17.3-1
|
||||||
|
- 5.17.3
|
||||||
|
|
||||||
|
* Wed Oct 30 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.2-1
|
||||||
|
- 5.17.2
|
||||||
|
|
||||||
|
* Wed Oct 23 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.1-1
|
||||||
|
- 5.17.1
|
||||||
|
|
||||||
|
* Thu Oct 10 2019 Jan Grulich <jgrulich@redhat.com> - 5.17.0-1
|
||||||
|
- 5.17.0
|
||||||
|
|
||||||
|
* Fri Sep 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.90-1
|
||||||
|
- 5.16.90
|
||||||
|
|
||||||
|
* Fri Sep 06 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.5-1
|
||||||
|
- 5.16.5
|
||||||
|
|
||||||
|
* Tue Jul 30 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.4-1
|
||||||
|
- 5.16.4
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.16.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 10 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.3-1
|
||||||
|
- 5.16.3
|
||||||
|
|
||||||
|
* Wed Jun 26 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.2-1
|
||||||
|
- 5.16.2
|
||||||
|
|
||||||
|
* Tue Jun 18 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.16.1-1
|
||||||
|
- 5.16.1
|
||||||
|
|
||||||
|
* Tue Jun 11 2019 Martin Kyral <martin.kyral@gmail.com> - 5.16.0-1
|
||||||
|
- 5.16.0
|
||||||
|
|
||||||
|
* Thu May 16 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.90-1
|
||||||
|
- 5.15.90
|
||||||
|
|
||||||
|
* Thu May 09 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.5-1
|
||||||
|
- 5.15.5
|
||||||
|
|
||||||
|
* Wed Apr 03 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.4-1
|
||||||
|
- 5.15.4
|
||||||
|
|
||||||
|
* Tue Mar 12 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.3-1
|
||||||
|
- 5.15.3
|
||||||
|
|
||||||
|
* Tue Feb 26 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.2-1
|
||||||
|
- 5.15.2
|
||||||
|
|
||||||
|
* Tue Feb 19 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.15.1-1
|
||||||
|
- 5.15.1
|
||||||
|
|
||||||
|
* Wed Feb 13 2019 Martin Kyral <martin.kyral@gmail.com> - 5.15.0-1
|
||||||
|
- 5.15.0
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 20 2019 Martin Kyral <martin.kyral@gmail.com> - 5.14.90-1
|
||||||
|
- 5.14.90
|
||||||
|
|
||||||
|
* Tue Nov 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.4-1
|
||||||
|
- 5.14.4
|
||||||
|
|
||||||
|
* Thu Nov 08 2018 Martin Kyral <martin.kyral@gmail.com> - 5.14.3-1
|
||||||
|
- 5.14.3
|
||||||
|
|
||||||
|
* Wed Oct 24 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.2-1
|
||||||
|
- 5.14.2
|
||||||
|
|
||||||
|
* Tue Oct 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.1-1
|
||||||
|
- 5.14.1
|
||||||
|
|
||||||
|
* Fri Oct 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.14.0-1
|
||||||
|
- 5.14.0
|
||||||
|
|
||||||
|
* Fri Sep 14 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.90-1
|
||||||
|
- 5.13.90
|
||||||
|
|
||||||
|
* Tue Sep 04 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.5-1
|
||||||
|
- 5.13.5
|
||||||
|
|
||||||
|
* Thu Aug 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.4-1
|
||||||
|
- 5.13.4
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.13.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.3-1
|
||||||
|
- 5.13.3
|
||||||
|
|
||||||
|
* Mon Jul 09 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.2-1
|
||||||
|
- 5.13.2
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Martin Kyral <martin.kyral@gmail.com> - 5.13.1-1
|
||||||
|
- 5.13.1
|
||||||
|
|
||||||
|
* Sat Jun 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.13.0-1
|
||||||
|
- 5.13.0
|
||||||
|
|
||||||
|
* Fri May 18 2018 Martin Kyral <martin.kyral@gmail.com> - 5.12.90-1
|
||||||
|
- 5.12.90
|
||||||
|
|
||||||
|
* Tue May 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
|
||||||
|
* Tue Mar 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.4-1
|
||||||
|
- 5.12.4
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.12.3-1
|
||||||
|
- 5.12.3
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.2-1
|
||||||
|
- 5.12.2
|
||||||
|
|
||||||
|
* Tue Feb 13 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.1-1
|
||||||
|
- 5.12.1
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 02 2018 Jan Grulich <jgrulich@redhat.com> - 5.12.0-1
|
||||||
|
- 5.12.0
|
||||||
|
|
||||||
|
* Mon Jan 15 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.95-1
|
||||||
|
- 5.11.95
|
||||||
|
|
||||||
|
* Tue Jan 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.5-1
|
||||||
|
- 5.11.5
|
||||||
|
|
||||||
|
* Thu Nov 30 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.4-1
|
||||||
|
- 5.11.4
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-1
|
||||||
|
- 5.11.3
|
||||||
|
|
||||||
|
* Wed Oct 25 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.2-1
|
||||||
|
- 5.11.2
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-1
|
||||||
|
- 5.11.1
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Martin Kyral <martin.kyral@gmail.com> - 5.11.0-1
|
||||||
|
- 5.11.0
|
||||||
|
|
||||||
|
* Thu Aug 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.5-1
|
||||||
|
- 5.10.5
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.4-1
|
||||||
|
- 5.10.4
|
||||||
|
|
||||||
|
* Tue Jun 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.3-1
|
||||||
|
- 5.10.3
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.2-1
|
||||||
|
- 5.10.2
|
||||||
|
|
||||||
|
* Tue Jun 06 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.10.1-1
|
||||||
|
- 5.10.1
|
||||||
|
|
||||||
|
* Wed May 31 2017 Jan Grulich <jgrulich@redhat.com> - 5.10.0-1
|
||||||
|
- 5.10.0
|
||||||
|
|
||||||
|
* Wed Apr 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.5-2
|
||||||
|
- use %%find_lang for handbooks
|
||||||
|
|
||||||
|
* Wed Apr 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.5-1
|
||||||
|
- 5.9.5
|
||||||
|
|
||||||
|
* Thu Mar 23 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.4-1
|
||||||
|
- 5.9.4
|
||||||
|
|
||||||
|
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.9.3-2
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Jan Grulich <jgrulich@redhat.com> - 5.9.3-1
|
||||||
|
- 5.9.3
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Rex Dieter <rdieter@fedoraproject.org> - 5.8.6-1
|
||||||
|
- 5.8.6
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 28 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.5-1
|
||||||
|
- 5.8.5
|
||||||
|
|
||||||
|
* Tue Nov 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.4-1
|
||||||
|
- 5.8.4
|
||||||
|
|
||||||
|
* Tue Nov 01 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.3-1
|
||||||
|
- 5.8.3
|
||||||
|
|
||||||
|
* Tue Oct 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.2-1
|
||||||
|
- 5.8.2
|
||||||
|
|
||||||
|
* Tue Oct 11 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.1-1
|
||||||
|
- 5.8.1
|
||||||
|
|
||||||
|
* Thu Sep 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.8.0-1
|
||||||
|
- 5.8.0
|
||||||
|
|
||||||
|
* Thu Sep 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.95-1
|
||||||
|
- 5.7.95
|
||||||
|
|
||||||
|
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.5-1
|
||||||
|
- 5.7.5
|
||||||
|
|
||||||
|
* Tue Aug 23 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.4-1
|
||||||
|
- 5.7.4
|
||||||
|
|
||||||
|
* Tue Aug 02 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.3-1
|
||||||
|
- 5.7.3
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.2-1
|
||||||
|
- 5.7.2
|
||||||
|
|
||||||
|
* Tue Jul 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-1
|
||||||
|
- 5.7.1
|
||||||
|
|
||||||
|
* Thu Jun 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.0-1
|
||||||
|
- 5.7.0
|
||||||
|
|
||||||
|
* Sat Jun 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.95-1
|
||||||
|
- 5.6.95
|
||||||
|
|
||||||
|
* Tue Jun 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.5-1
|
||||||
|
- 5.6.5
|
||||||
|
|
||||||
|
* Sat May 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.4-1
|
||||||
|
- 5.6.4
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.3-2
|
||||||
|
- pull in upstream fixes (including a crash-on-close fix)
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.3-1
|
||||||
|
- 5.6.3
|
||||||
|
|
||||||
|
* Sat Apr 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.2-1
|
||||||
|
- 5.6.2
|
||||||
|
|
||||||
|
* Fri Apr 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-1
|
||||||
|
- 5.6.1
|
||||||
|
|
||||||
|
* Tue Mar 01 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.5-1
|
||||||
|
- Plasma 5.5.5
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.4-1
|
||||||
|
- Plasma 5.5.4
|
||||||
|
|
||||||
|
* Thu Jan 07 2016 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.3-1
|
||||||
|
- Plasma 5.5.3
|
||||||
|
|
||||||
|
* Thu Dec 31 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.5.2-1
|
||||||
|
- 5.5.2
|
||||||
|
|
||||||
|
* Fri Dec 18 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.1-1
|
||||||
|
- Plasma 5.5.1
|
||||||
|
|
||||||
|
* Thu Dec 03 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.5.0-1
|
||||||
|
- Plasma 5.5.0
|
||||||
|
|
||||||
|
* Wed Nov 25 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.95-1
|
||||||
|
- Plasma 5.4.95
|
||||||
|
|
||||||
|
* Thu Nov 05 2015 Daniel Vrátil <dvratil@fedoraproject.org> - 5.4.3-1
|
||||||
|
- Plasma 5.4.3
|
||||||
|
|
||||||
|
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.2-1
|
||||||
|
- 5.4.2
|
||||||
|
|
||||||
|
* Wed Sep 09 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-1
|
||||||
|
- 5.4.1
|
||||||
|
|
||||||
|
* Fri Aug 21 2015 Daniel Vrátil <dvratil@redhat.com> - 5.4.0-1
|
||||||
|
- Plasma 5.4.0
|
||||||
|
|
||||||
|
* Thu Aug 13 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.95-1
|
||||||
|
- Plasma 5.3.95
|
||||||
|
|
||||||
|
* Thu Jun 25 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.2-1
|
||||||
|
- Plasma 5.3.2
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 09 2015 Rex Dieter <rdieter@fedoraproject.org> 5.3.1-2
|
||||||
|
- .spec cosmetics, improve %%find_lang/%%lang usage
|
||||||
|
|
||||||
|
* Tue May 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.1-1
|
||||||
|
- Plasma 5.3.1
|
||||||
|
|
||||||
|
* Mon Apr 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.3.0-1
|
||||||
|
- Plasma 5.3.0
|
||||||
|
|
||||||
|
* Wed Apr 22 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.95-1
|
||||||
|
- Plasma 5.2.95
|
||||||
|
|
||||||
|
* Fri Mar 20 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.2-1
|
||||||
|
- Plasma 5.2.2
|
||||||
|
|
||||||
|
* Fri Feb 27 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-2
|
||||||
|
- Rebuild (GCC 5)
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.1-1
|
||||||
|
- Plasma 5.2.1
|
||||||
|
|
||||||
|
* Thu Jan 29 2015 Dan Horák <dan[at]danny.cz> - 5.2.0-2
|
||||||
|
- no FireWire on s390(x)
|
||||||
|
|
||||||
|
* Mon Jan 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-1
|
||||||
|
- Plasma 5.2.0
|
||||||
|
|
||||||
|
* Mon Jan 12 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.95-1.beta
|
||||||
|
- Plasma 5.1.95 Beta
|
||||||
|
|
||||||
|
* Wed Dec 17 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.2-2
|
||||||
|
- Plasma 5.1.2
|
||||||
|
|
||||||
|
* Fri Nov 07 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.1-1
|
||||||
|
- Plasma 5.1.1
|
||||||
|
|
||||||
|
* Tue Oct 14 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.0.1-1
|
||||||
|
- Plasma 5.1.0.1
|
||||||
|
|
||||||
|
* Thu Oct 09 2014 Daniel Vrátil <dvratil@redhat.com> - 5.1.0-1
|
||||||
|
- Plasma 5.1.0
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Daniel Vrátil <dvratil@redhat.com> - 5.0.2-1
|
||||||
|
- Plasma 5.0.2
|
||||||
|
|
||||||
|
* Sun Aug 10 2014 Daniel Vrátil <dvratil@redhat.com> - 5.0.1-1
|
||||||
|
- Plasma 5.0.1
|
||||||
|
|
||||||
|
* Thu Jul 24 2014 Daniel Vrátil <dvratil@redhat.com> - 5.0.0-2
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 16 2014 Daniel Vrátil <dvratil@redhat.com> - 5.0.0-1
|
||||||
|
- Plasma 5.0.0
|
||||||
|
|
||||||
|
* Wed May 14 2014 Daniel Vrátil <dvratil@redhat.com> - 4.90.1-1.20140514git1b86b1a
|
||||||
|
- Intial snapshot
|
||||||
205
sonic-win.spec
205
sonic-win.spec
|
|
@ -1,205 +0,0 @@
|
||||||
%define _disable_source_fetch 0
|
|
||||||
%define debug_package %{nil}
|
|
||||||
|
|
||||||
Name: sonic-win
|
|
||||||
Version: 6.4.5
|
|
||||||
Release: 8%{?dist}
|
|
||||||
Summary: KWin window manager for SonicDE (fork of kwin)
|
|
||||||
|
|
||||||
%global plasma_version %{version}
|
|
||||||
|
|
||||||
License: GPL-2.0-or-later
|
|
||||||
URL: https://github.com/Sonic-DE/sonic-win
|
|
||||||
Source0: %{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: extra-cmake-modules
|
|
||||||
BuildRequires: kf6-rpm-macros
|
|
||||||
BuildRequires: systemd-rpm-macros
|
|
||||||
|
|
||||||
# Qt
|
|
||||||
BuildRequires: cmake(QAccessibilityClient6)
|
|
||||||
BuildRequires: qt6-qtbase-devel
|
|
||||||
BuildRequires: qt6-qtbase-private-devel
|
|
||||||
BuildRequires: qt6-qtsensors-devel
|
|
||||||
BuildRequires: qt6-qttools-devel
|
|
||||||
BuildRequires: qt6-qtwayland-devel
|
|
||||||
BuildRequires: cmake(Qt6Core5Compat)
|
|
||||||
BuildRequires: cmake(Qt6Svg)
|
|
||||||
BuildRequires: cmake(Qt6Multimedia)
|
|
||||||
|
|
||||||
# X11/OpenGL
|
|
||||||
BuildRequires: pkgconfig(libxcvt)
|
|
||||||
BuildRequires: mesa-libGL-devel
|
|
||||||
BuildRequires: mesa-libEGL-devel
|
|
||||||
BuildRequires: mesa-libgbm-devel
|
|
||||||
BuildRequires: libxkbcommon-devel
|
|
||||||
BuildRequires: libxkbcommon-x11-devel
|
|
||||||
BuildRequires: libX11-devel
|
|
||||||
BuildRequires: libXi-devel
|
|
||||||
BuildRequires: libxcb-devel
|
|
||||||
BuildRequires: libICE-devel
|
|
||||||
BuildRequires: libSM-devel
|
|
||||||
BuildRequires: libXcursor-devel
|
|
||||||
BuildRequires: xcb-util-wm-devel
|
|
||||||
BuildRequires: xcb-util-image-devel
|
|
||||||
BuildRequires: xcb-util-keysyms-devel
|
|
||||||
BuildRequires: xcb-util-cursor-devel
|
|
||||||
BuildRequires: xcb-util-devel
|
|
||||||
BuildRequires: libepoxy-devel
|
|
||||||
BuildRequires: libcap-devel
|
|
||||||
|
|
||||||
BuildRequires: lcms2-devel
|
|
||||||
BuildRequires: glib2-devel
|
|
||||||
BuildRequires: pipewire-devel
|
|
||||||
|
|
||||||
# Wayland
|
|
||||||
BuildRequires: wayland-devel >= 1.22.0
|
|
||||||
BuildRequires: wayland-protocols-devel
|
|
||||||
BuildRequires: pkgconfig(libinput) >= 0.10
|
|
||||||
BuildRequires: pkgconfig(libudev)
|
|
||||||
|
|
||||||
%if 0%{?rhel} == 10
|
|
||||||
# Integrate with Xlibre on EL10
|
|
||||||
BuildRequires: xlibre-xserver-devel
|
|
||||||
Requires: xlibre-xserver-Xorg
|
|
||||||
Requires: xlibre-xf86-input-libinput
|
|
||||||
%else
|
|
||||||
BuildRequires: pkgconfig(xwayland)
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# KF6
|
|
||||||
BuildRequires: cmake(KF6Completion)
|
|
||||||
BuildRequires: cmake(KF6Config)
|
|
||||||
BuildRequires: cmake(KF6ConfigWidgets)
|
|
||||||
BuildRequires: cmake(KF6CoreAddons)
|
|
||||||
BuildRequires: cmake(KF6Crash)
|
|
||||||
BuildRequires: cmake(KF6DBusAddons)
|
|
||||||
BuildRequires: cmake(KF6GlobalAccel)
|
|
||||||
BuildRequires: cmake(KF6GuiAddons)
|
|
||||||
BuildRequires: cmake(KF6I18n)
|
|
||||||
BuildRequires: cmake(KF6KIO)
|
|
||||||
BuildRequires: cmake(KF6Notifications)
|
|
||||||
BuildRequires: cmake(KF6Service)
|
|
||||||
BuildRequires: cmake(KF6WidgetsAddons)
|
|
||||||
BuildRequires: cmake(KF6WindowSystem)
|
|
||||||
BuildRequires: cmake(KF6DocTools)
|
|
||||||
BuildRequires: cmake(KF6KCMUtils)
|
|
||||||
BuildRequires: cmake(KF6NewStuff)
|
|
||||||
BuildRequires: cmake(KF6Declarative)
|
|
||||||
BuildRequires: cmake(KF6IconThemes)
|
|
||||||
BuildRequires: cmake(KF6IdleTime)
|
|
||||||
BuildRequires: cmake(KF6TextWidgets)
|
|
||||||
BuildRequires: cmake(KF6Kirigami2)
|
|
||||||
BuildRequires: cmake(KF6Runner)
|
|
||||||
BuildRequires: cmake(KF6Svg)
|
|
||||||
|
|
||||||
# Workspace components
|
|
||||||
BuildRequires: cmake(KDecoration3)
|
|
||||||
BuildRequires: kscreenlocker-devel
|
|
||||||
BuildRequires: plasma-breeze-devel
|
|
||||||
BuildRequires: plasma-wayland-protocols-devel
|
|
||||||
BuildRequires: cmake(KGlobalAccelD)
|
|
||||||
BuildRequires: libdisplay-info-devel
|
|
||||||
|
|
||||||
BuildRequires: cmake(KWayland)
|
|
||||||
BuildRequires: cmake(Plasma)
|
|
||||||
BuildRequires: cmake(PlasmaActivities)
|
|
||||||
|
|
||||||
BuildRequires: libeis-devel
|
|
||||||
BuildRequires: pkgconfig(libcanberra)
|
|
||||||
|
|
||||||
# Conflicts with kwin-x11
|
|
||||||
Conflicts: kwin-x11
|
|
||||||
|
|
||||||
Requires: sonic-interface-libraries%{?_isa} >= %{plasma_version}
|
|
||||||
Requires: kscreenlocker%{?_isa}
|
|
||||||
Requires: kf6-kirigami2%{?_isa}
|
|
||||||
Requires: kf6-kdeclarative%{?_isa}
|
|
||||||
Requires: qt6-qtmultimedia%{?_isa}
|
|
||||||
Requires: qt6-qtdeclarative%{?_isa}
|
|
||||||
|
|
||||||
%description
|
|
||||||
Sonic Win is a fork of KWin, the window manager and compositor for SonicDE,
|
|
||||||
focusing on an optimized X11 experience.
|
|
||||||
|
|
||||||
%package libs
|
|
||||||
Summary: KWin libraries for SonicDE
|
|
||||||
Conflicts: kwin-x11-libs
|
|
||||||
|
|
||||||
%description libs
|
|
||||||
Shared libraries for sonic-win.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development files for %{name}
|
|
||||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Conflicts: kwin-x11-devel
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
Development files for sonic-win.
|
|
||||||
Provides: kwin-devel = %{version}-%{release}
|
|
||||||
Provides: kwin-x11-devel = %{version}-%{release}
|
|
||||||
Provides: cmake(KWinDBusInterface) = %{version}
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cmake_kf6
|
|
||||||
%cmake_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cmake_install
|
|
||||||
# Create compatibility CMake files for sonic-workspace
|
|
||||||
mkdir -p %{buildroot}%{_libdir}/cmake/KWinDBusInterface
|
|
||||||
cat <<EOF > %{buildroot}%{_libdir}/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake
|
|
||||||
find_package(KWinX11DBusInterface REQUIRED)
|
|
||||||
include(\${KWinX11DBusInterface_DIR}/KWinX11DBusInterfaceConfig.cmake)
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Create compatibility symlinks for DBus interfaces
|
|
||||||
pushd %{buildroot}%{_datadir}/dbus-1/interfaces/
|
|
||||||
for f in kwin_x11_*.xml; do
|
|
||||||
newname=$(echo $f | sed 's/kwin_x11_//')
|
|
||||||
ln -s "$f" "$newname"
|
|
||||||
done
|
|
||||||
popd
|
|
||||||
|
|
||||||
# The translation domain in the source is likely still 'kwin'
|
|
||||||
%find_lang kwin --all-name --with-html
|
|
||||||
|
|
||||||
%files -f kwin.lang
|
|
||||||
%license LICENSES/*
|
|
||||||
# Binares and specialized folders
|
|
||||||
%{_bindir}/kwin_x11
|
|
||||||
%{_libdir}/kconf_update_bin/kwin*
|
|
||||||
%{_libexecdir}/kwin*
|
|
||||||
%{_userunitdir}/plasma-kwin_x11.service
|
|
||||||
|
|
||||||
# Database and plugins
|
|
||||||
%{_libdir}/qt6/plugins/
|
|
||||||
%{_qt6_qmldir}/org/kde/*/
|
|
||||||
|
|
||||||
# Data and Assets
|
|
||||||
%{_datadir}/kwin-x11/
|
|
||||||
%{_datadir}/applications/*.desktop
|
|
||||||
%{_datadir}/dbus-1/interfaces/*.xml
|
|
||||||
%{_datadir}/icons/hicolor/*/apps/kwin-x11.*
|
|
||||||
%{_datadir}/kconf_update/kwin-x11.upd
|
|
||||||
%{_datadir}/knotifications6/kwin-x11.notifyrc
|
|
||||||
%{_datadir}/knsrcfiles/*.knsrc
|
|
||||||
%{_datadir}/krunner/dbusplugins/*.desktop
|
|
||||||
%{_datadir}/qlogging-categories6/*.categories
|
|
||||||
|
|
||||||
%files libs
|
|
||||||
# Libraries
|
|
||||||
%{_libdir}/lib*.so.*
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%{_includedir}/
|
|
||||||
%{_libdir}/lib*.so
|
|
||||||
%{_libdir}/cmake/
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Mar 21 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 6.4.5-8
|
|
||||||
- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility)
|
|
||||||
1593
sonic-win/sonic-win.spec
Normal file
1593
sonic-win/sonic-win.spec
Normal file
File diff suppressed because it is too large
Load diff
1864
sonic-win/tree.txt
Normal file
1864
sonic-win/tree.txt
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,268 +0,0 @@
|
||||||
%define _disable_source_fetch 0
|
|
||||||
%define debug_package %{nil}
|
|
||||||
|
|
||||||
Name: sonic-workspace
|
|
||||||
Version: 6.4.5
|
|
||||||
Release: 5%{?dist}
|
|
||||||
Summary: Core workspace components for SonicDE (fork of plasma-workspace)
|
|
||||||
|
|
||||||
License: GPL-2.0-or-later
|
|
||||||
URL: https://github.com/Sonic-DE/sonic-workspace
|
|
||||||
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
|
|
||||||
|
|
||||||
%global plasma_version %(echo %{version} | cut -d. -f1-3)
|
|
||||||
|
|
||||||
BuildRequires: extra-cmake-modules
|
|
||||||
BuildRequires: kf6-rpm-macros
|
|
||||||
BuildRequires: qt6-qtbase-devel
|
|
||||||
BuildRequires: qt6-qtbase-private-devel
|
|
||||||
BuildRequires: qt6-qtdeclarative-devel
|
|
||||||
BuildRequires: qt6-qtdeclarative-private-devel
|
|
||||||
BuildRequires: qt6-qtsvg-devel
|
|
||||||
BuildRequires: qt6-qtwayland-devel
|
|
||||||
BuildRequires: qt6-qtlocation-devel
|
|
||||||
BuildRequires: qt6-qtshadertools-devel
|
|
||||||
BuildRequires: qcoro-qt6-devel
|
|
||||||
BuildRequires: phonon-qt6-devel
|
|
||||||
BuildRequires: wayland-devel
|
|
||||||
BuildRequires: wayland-protocols-devel
|
|
||||||
BuildRequires: plasma-wayland-protocols-devel
|
|
||||||
BuildRequires: cmake(Qt6Core5Compat)
|
|
||||||
|
|
||||||
BuildRequires: cmake(KF6Config)
|
|
||||||
BuildRequires: cmake(KF6Archive)
|
|
||||||
BuildRequires: cmake(KF6Declarative)
|
|
||||||
BuildRequires: cmake(KF6ConfigWidgets)
|
|
||||||
BuildRequires: cmake(KF6CoreAddons)
|
|
||||||
BuildRequires: cmake(KF6Crash)
|
|
||||||
BuildRequires: cmake(KF6DBusAddons)
|
|
||||||
BuildRequires: cmake(KF6GlobalAccel)
|
|
||||||
BuildRequires: cmake(KF6GuiAddons)
|
|
||||||
BuildRequires: cmake(KF6I18n)
|
|
||||||
BuildRequires: cmake(KF6IdleTime)
|
|
||||||
BuildRequires: cmake(KF6KIO)
|
|
||||||
BuildRequires: cmake(KF6Notifications)
|
|
||||||
BuildRequires: cmake(KF6NotifyConfig)
|
|
||||||
BuildRequires: cmake(KF6Runner)
|
|
||||||
BuildRequires: cmake(KF6Service)
|
|
||||||
BuildRequires: cmake(KF6Solid)
|
|
||||||
BuildRequires: cmake(KF6WidgetsAddons)
|
|
||||||
BuildRequires: cmake(KF6WindowSystem)
|
|
||||||
BuildRequires: cmake(KF6XmlGui)
|
|
||||||
BuildRequires: cmake(KF6DocTools)
|
|
||||||
BuildRequires: cmake(KF6ItemModels)
|
|
||||||
BuildRequires: cmake(KF6KDED)
|
|
||||||
BuildRequires: cmake(KF6StatusNotifierItem)
|
|
||||||
BuildRequires: cmake(KF6UnitConversion)
|
|
||||||
BuildRequires: cmake(KF6Wallet)
|
|
||||||
BuildRequires: cmake(KF6KCMUtils)
|
|
||||||
BuildRequires: cmake(KF6NewStuff)
|
|
||||||
BuildRequires: cmake(KF6Package)
|
|
||||||
BuildRequires: cmake(KF6Parts)
|
|
||||||
BuildRequires: cmake(KF6Prison)
|
|
||||||
BuildRequires: cmake(KF6Sonnet)
|
|
||||||
BuildRequires: cmake(KF6TextEditor)
|
|
||||||
BuildRequires: cmake(KF6TextWidgets)
|
|
||||||
BuildRequires: cmake(KF6Svg)
|
|
||||||
BuildRequires: cmake(KF6Kirigami2)
|
|
||||||
BuildRequires: cmake(KF6KirigamiAddons)
|
|
||||||
BuildRequires: cmake(KF6NetworkManagerQt)
|
|
||||||
BuildRequires: cmake(KF6QuickCharts)
|
|
||||||
BuildRequires: cmake(KF6UserFeedback)
|
|
||||||
BuildRequires: cmake(KF6Baloo)
|
|
||||||
BuildRequires: cmake(KF6Holidays)
|
|
||||||
BuildRequires: kf6-kdesu-devel
|
|
||||||
BuildRequires: pkgconfig(libqalculate)
|
|
||||||
BuildRequires: sonic-win-devel
|
|
||||||
BuildRequires: sonic-interface-libraries-devel
|
|
||||||
BuildRequires: kdecoration-devel
|
|
||||||
BuildRequires: libkscreen-devel
|
|
||||||
BuildRequires: libksysguard-devel
|
|
||||||
BuildRequires: plasma-activities-devel
|
|
||||||
BuildRequires: cmake(KSysGuard)
|
|
||||||
BuildRequires: cmake(Plasma5Support)
|
|
||||||
BuildRequires: cmake(KScreenLocker)
|
|
||||||
BuildRequires: cmake(Breeze)
|
|
||||||
BuildRequires: cmake(KExiv2Qt6)
|
|
||||||
BuildRequires: cmake(KPipeWire)
|
|
||||||
BuildRequires: cmake(PlasmaActivities)
|
|
||||||
BuildRequires: cmake(PlasmaActivitiesStats)
|
|
||||||
BuildRequires: cmake(KF6Screen)
|
|
||||||
BuildRequires: cmake(KWayland)
|
|
||||||
BuildRequires: cmake(Plasma)
|
|
||||||
BuildRequires: cmake(PlasmaQuick)
|
|
||||||
BuildRequires: cmake(LayerShellQt)
|
|
||||||
|
|
||||||
BuildRequires: pkgconfig(x11)
|
|
||||||
BuildRequires: pkgconfig(xau)
|
|
||||||
BuildRequires: pkgconfig(xcb)
|
|
||||||
BuildRequires: pkgconfig(xcomposite)
|
|
||||||
BuildRequires: pkgconfig(xcursor)
|
|
||||||
BuildRequires: pkgconfig(xdamage)
|
|
||||||
BuildRequires: pkgconfig(xext)
|
|
||||||
BuildRequires: pkgconfig(xfixes)
|
|
||||||
BuildRequires: pkgconfig(xft)
|
|
||||||
BuildRequires: pkgconfig(xi)
|
|
||||||
BuildRequires: pkgconfig(xinerama)
|
|
||||||
BuildRequires: pkgconfig(xres)
|
|
||||||
BuildRequires: pkgconfig(xkbcommon)
|
|
||||||
BuildRequires: pkgconfig(xkbfile)
|
|
||||||
BuildRequires: pkgconfig(xpm)
|
|
||||||
BuildRequires: pkgconfig(xrender)
|
|
||||||
BuildRequires: pkgconfig(xtst)
|
|
||||||
BuildRequires: pkgconfig(xxf86vm)
|
|
||||||
BuildRequires: pkgconfig(ice)
|
|
||||||
BuildRequires: pkgconfig(sm)
|
|
||||||
BuildRequires: pkgconfig(xcb-aux)
|
|
||||||
BuildRequires: pkgconfig(xcb-cursor)
|
|
||||||
BuildRequires: pkgconfig(xcb-image)
|
|
||||||
BuildRequires: pkgconfig(xcb-event)
|
|
||||||
BuildRequires: pkgconfig(xcb-util)
|
|
||||||
BuildRequires: pkgconfig(xcb-keysyms)
|
|
||||||
BuildRequires: pkgconfig(xcb-icccm)
|
|
||||||
BuildRequires: pkgconfig(xcb-renderutil)
|
|
||||||
BuildRequires: pkgconfig(xcb-atom)
|
|
||||||
BuildRequires: pkgconfig(xcb-ewmh)
|
|
||||||
BuildRequires: systemd-devel
|
|
||||||
BuildRequires: NetworkManager-libnm-devel
|
|
||||||
BuildRequires: glib2-devel
|
|
||||||
BuildRequires: polkit-qt6-1-devel
|
|
||||||
BuildRequires: PackageKit-Qt6-devel
|
|
||||||
BuildRequires: appstream-qt-devel
|
|
||||||
BuildRequires: iso-codes-devel
|
|
||||||
BuildRequires: libcanberra-devel
|
|
||||||
BuildRequires: fontconfig-devel
|
|
||||||
BuildRequires: zlib-devel
|
|
||||||
BuildRequires: libicu-devel
|
|
||||||
|
|
||||||
Requires: sonic-win
|
|
||||||
Requires: xmessage
|
|
||||||
Requires: xprop
|
|
||||||
Requires: xrdb
|
|
||||||
Requires: xsetroot
|
|
||||||
|
|
||||||
Conflicts: plasma-workspace-x11
|
|
||||||
|
|
||||||
Provides: plasma-workspace%{?_isa} >= %{plasma_version}
|
|
||||||
Provides: plasma-workspace >= %{plasma_version}
|
|
||||||
Obsoletes: plasma-workspace <= %{plasma_version}
|
|
||||||
|
|
||||||
Provides: plasma-workspace-libs%{?_isa} >= %{plasma_version}
|
|
||||||
Provides: plasma-workspace-libs >= %{plasma_version}
|
|
||||||
Obsoletes: plasma-workspace-libs <= %{plasma_version}
|
|
||||||
|
|
||||||
Provides: libkworkspace6%{?_isa} >= %{plasma_version}
|
|
||||||
Provides: libkworkspace6 >= %{plasma_version}
|
|
||||||
Obsoletes: libkworkspace6 <= %{plasma_version}
|
|
||||||
|
|
||||||
Provides: desktop-notification-daemon
|
|
||||||
|
|
||||||
%description
|
|
||||||
Core workspace components for SonicDE, fork of plasma-workspace.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development files for %{name}
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Conflicts: plasma-workspace-devel
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
Development files for sonic-workspace.
|
|
||||||
|
|
||||||
%package x11
|
|
||||||
Summary: SonicDE X11 session
|
|
||||||
#Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: xlibre-xserver-Xorg
|
|
||||||
Conflicts: plasma-workspace-x11
|
|
||||||
|
|
||||||
%description x11
|
|
||||||
SonicDE X11 session.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cmake_kf6
|
|
||||||
%cmake_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cmake_install
|
|
||||||
# Many translation files have different names than the package
|
|
||||||
%find_lang plasmanetworkmanagement --all-name || :
|
|
||||||
%find_lang plasmashell --all-name || :
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license LICENSES/*
|
|
||||||
%{_bindir}/plasma*
|
|
||||||
%{_bindir}/krunner
|
|
||||||
%{_bindir}/ksmserver
|
|
||||||
%{_bindir}/ksplashqml
|
|
||||||
%{_bindir}/kcminit*
|
|
||||||
%{_bindir}/kde-systemd-start-condition
|
|
||||||
%{_bindir}/lookandfeeltool
|
|
||||||
%{_bindir}/kcolorschemeeditor
|
|
||||||
%{_bindir}/kfontinst
|
|
||||||
%{_bindir}/kfontview
|
|
||||||
%{_bindir}/xembedsniproxy
|
|
||||||
%{_bindir}/gmenudbusmenuproxy
|
|
||||||
%{_bindir}/startplasma-wayland
|
|
||||||
%{_libdir}/lib*.so.*
|
|
||||||
%{_libdir}/kconf_update_bin/
|
|
||||||
%{_libexecdir}/ksmserver-logout-greeter
|
|
||||||
%{_libexecdir}/plasma*
|
|
||||||
%{_libexecdir}/kf6/kauth/
|
|
||||||
%{_libexecdir}/kfontprint
|
|
||||||
%{_libexecdir}/baloorunner
|
|
||||||
%{_qt6_plugindir}/plasma/
|
|
||||||
%{_qt6_plugindir}/kf6/
|
|
||||||
%{_qt6_plugindir}/phonon_platform/
|
|
||||||
%{_qt6_plugindir}/plasma5support/
|
|
||||||
%{_qt6_plugindir}/plasmacalendarplugins/
|
|
||||||
%{_qt6_qmldir}/org/kde/
|
|
||||||
%{_userunitdir}/plasma*
|
|
||||||
%{_datadir}/plasma/
|
|
||||||
%{_datadir}/plasma5support/
|
|
||||||
%{_datadir}/applications/*.desktop
|
|
||||||
%{_datadir}/desktop-directories/
|
|
||||||
%{_datadir}/config.kcfg/
|
|
||||||
%{_datadir}/dbus-1/
|
|
||||||
%{_datadir}/doc/
|
|
||||||
%{_datadir}/icons/
|
|
||||||
%{_datadir}/kconf_update/
|
|
||||||
%{_datadir}/kfontinst/
|
|
||||||
%{_datadir}/kglobalaccel/
|
|
||||||
%{_datadir}/kio*/
|
|
||||||
%{_datadir}/knotifications6/
|
|
||||||
%{_datadir}/knsrcfiles/
|
|
||||||
%{_datadir}/konqsidebartng/
|
|
||||||
%{_datadir}/krunner/
|
|
||||||
%{_datadir}/kstyle/
|
|
||||||
%{_datadir}/kxmlgui5/
|
|
||||||
%{_datadir}/polkit-1/
|
|
||||||
%{_datadir}/qlogging-categories6/
|
|
||||||
%{_datadir}/solid/
|
|
||||||
%{_datadir}/timezonefiles/
|
|
||||||
%{_datadir}/wayland-sessions/
|
|
||||||
%{_datadir}/xdg-desktop-portal/
|
|
||||||
%{_datadir}/zsh/
|
|
||||||
%{_datadir}/locale/*/LC_MESSAGES/*.mo
|
|
||||||
%{_sysconfdir}/xdg/*
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_includedir}/kworkspace6/
|
|
||||||
%{_includedir}/taskmanager/
|
|
||||||
%{_includedir}/notificationmanager/
|
|
||||||
%{_includedir}/colorcorrect/
|
|
||||||
%{_includedir}/krdb/
|
|
||||||
%{_includedir}/plasma5support/
|
|
||||||
%{_libdir}/lib*.so
|
|
||||||
%{_libdir}/cmake/*/
|
|
||||||
|
|
||||||
%files x11
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{_datadir}/xsessions/plasmax11.desktop
|
|
||||||
%{_bindir}/startplasma-x11
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Mar 21 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 6.4.5-5
|
|
||||||
- Initial release of SonicDE/KDE Plasma X11 for EL10 (Downgraded to 6.4.5 for EL 10.1 compatibility)
|
|
||||||
17
sonic-workspace/fedora-lookandfeel.json
Normal file
17
sonic-workspace/fedora-lookandfeel.json
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
|
"KPlugin": {
|
||||||
|
"Authors": [
|
||||||
|
{
|
||||||
|
"Email": "kde@lists.fedoraproject.org",
|
||||||
|
"Name": "Fedora KDE SIG"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Category": "",
|
||||||
|
"Description": "Fedora theme by Fedora KDE SIG",
|
||||||
|
"Id": "org.fedoraproject.fedora.desktop",
|
||||||
|
"License": "GPLv2+",
|
||||||
|
"Name": "Fedora",
|
||||||
|
"Website": "https://fedoraproject.org/"
|
||||||
|
}
|
||||||
|
}
|
||||||
17
sonic-workspace/fedoradark-lookandfeel.json
Normal file
17
sonic-workspace/fedoradark-lookandfeel.json
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
|
"KPlugin": {
|
||||||
|
"Authors": [
|
||||||
|
{
|
||||||
|
"Email": "kde@lists.fedoraproject.org",
|
||||||
|
"Name": "Fedora KDE SIG"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Category": "",
|
||||||
|
"Description": "Fedora dark theme by Fedora KDE SIG",
|
||||||
|
"Id": "org.fedoraproject.fedoradark.desktop",
|
||||||
|
"License": "GPLv2+",
|
||||||
|
"Name": "Fedora Dark",
|
||||||
|
"Website": "https://fedoraproject.org/"
|
||||||
|
}
|
||||||
|
}
|
||||||
17
sonic-workspace/fedoralight-lookandfeel.json
Normal file
17
sonic-workspace/fedoralight-lookandfeel.json
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"KPackageStructure": "Plasma/LookAndFeel",
|
||||||
|
"KPlugin": {
|
||||||
|
"Authors": [
|
||||||
|
{
|
||||||
|
"Email": "kde@lists.fedoraproject.org",
|
||||||
|
"Name": "Fedora KDE SIG"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Category": "",
|
||||||
|
"Description": "Fedora light theme by Fedora KDE SIG",
|
||||||
|
"Id": "org.fedoraproject.fedoralight.desktop",
|
||||||
|
"License": "GPLv2+",
|
||||||
|
"Name": "Fedora Light",
|
||||||
|
"Website": "https://fedoraproject.org/"
|
||||||
|
}
|
||||||
|
}
|
||||||
15
sonic-workspace/kde
Normal file
15
sonic-workspace/kde
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
auth substack password-auth
|
||||||
|
auth include postlogin
|
||||||
|
|
||||||
|
account required pam_nologin.so
|
||||||
|
account include password-auth
|
||||||
|
|
||||||
|
password include password-auth
|
||||||
|
|
||||||
|
session required pam_selinux.so close
|
||||||
|
session required pam_loginuid.so
|
||||||
|
session required pam_selinux.so open
|
||||||
|
session optional pam_keyinit.so force revoke
|
||||||
|
session required pam_namespace.so
|
||||||
|
session include password-auth
|
||||||
|
session include postlogin
|
||||||
15
sonic-workspace/kde-fingerprint
Normal file
15
sonic-workspace/kde-fingerprint
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
auth substack fingerprint-auth
|
||||||
|
auth include postlogin
|
||||||
|
|
||||||
|
account required pam_nologin.so
|
||||||
|
account include fingerprint-auth
|
||||||
|
|
||||||
|
password include fingerprint-auth
|
||||||
|
|
||||||
|
session required pam_selinux.so close
|
||||||
|
session required pam_loginuid.so
|
||||||
|
session required pam_selinux.so open
|
||||||
|
session optional pam_keyinit.so force revoke
|
||||||
|
session required pam_namespace.so
|
||||||
|
session include fingerprint-auth
|
||||||
|
session include postlogin
|
||||||
15
sonic-workspace/kde-smartcard
Normal file
15
sonic-workspace/kde-smartcard
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
auth substack smartcard-auth
|
||||||
|
auth include postlogin
|
||||||
|
|
||||||
|
account required pam_nologin.so
|
||||||
|
account include smartcard-auth
|
||||||
|
|
||||||
|
password include smartcard-auth
|
||||||
|
|
||||||
|
session required pam_selinux.so close
|
||||||
|
session required pam_loginuid.so
|
||||||
|
session required pam_selinux.so open
|
||||||
|
session optional pam_keyinit.so force revoke
|
||||||
|
session required pam_namespace.so
|
||||||
|
session include smartcard-auth
|
||||||
|
session include postlogin
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
From 6f6a8771afdaa27208d3aea63525f62cafe787cf Mon Sep 17 00:00:00 2001
|
||||||
|
From: Neal Gompa <ngompa@fedoraproject.org>
|
||||||
|
Date: Sun, 25 Sep 2022 16:46:47 -0400
|
||||||
|
Subject: [PATCH] containmentactions/contextmenu: Enable lock/logout
|
||||||
|
actions by default
|
||||||
|
|
||||||
|
Fedora users expect these items to exist in the desktop context menu
|
||||||
|
by default unless they've been manually disabled or removed via the
|
||||||
|
Kiosk mode.
|
||||||
|
---
|
||||||
|
containmentactions/contextmenu/menu.cpp | 2 --
|
||||||
|
1 file changed, 2 deletions(-)
|
||||||
|
|
||||||
|
diff -Naur plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp
|
||||||
|
--- plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp 2024-02-22 09:47:05.872197643 +0100
|
||||||
|
+++ plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp 2024-02-22 09:47:44.725173857 +0100
|
||||||
|
@@ -81,8 +81,6 @@
|
||||||
|
disabled.insert(QStringLiteral("_add panel"));
|
||||||
|
disabled.insert(QStringLiteral("configure shortcuts"));
|
||||||
|
disabled.insert(QStringLiteral("_run_command"));
|
||||||
|
- disabled.insert(QStringLiteral("_lock_screen"));
|
||||||
|
- disabled.insert(QStringLiteral("_logout"));
|
||||||
|
}
|
||||||
|
// clang-format on
|
||||||
|
|
||||||
|
--
|
||||||
|
2.36.1
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
From 9788427b7f4f8802ccc2d4de7fad02b19488c2c8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Neal Gompa <ngompa@fedoraproject.org>
|
||||||
|
Date: Sun, 25 Sep 2022 16:45:07 -0400
|
||||||
|
Subject: [PATCH] containmentactions/contextmenu: Enable "Open Terminal" by
|
||||||
|
default
|
||||||
|
|
||||||
|
Fedora users expect this item to exist in the desktop context menu
|
||||||
|
by default unless it has been manually disabled or removed via the
|
||||||
|
Kiosk mode.
|
||||||
|
---
|
||||||
|
containmentactions/contextmenu/menu.cpp | 1 -
|
||||||
|
1 file changed, 1 deletion(-)
|
||||||
|
|
||||||
|
diff -Naur plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp
|
||||||
|
--- plasma-workspace-6.0.0/containmentactions/contextmenu/menu.cpp 2024-02-21 16:42:07.000000000 +0100
|
||||||
|
+++ plasma-workspace-6.0.0-b/containmentactions/contextmenu/menu.cpp 2024-02-22 09:31:03.958663529 +0100
|
||||||
|
@@ -80,7 +80,6 @@
|
||||||
|
disabled.insert(QStringLiteral("add widgets"));
|
||||||
|
disabled.insert(QStringLiteral("_add panel"));
|
||||||
|
disabled.insert(QStringLiteral("configure shortcuts"));
|
||||||
|
- disabled.insert(QStringLiteral("_open_terminal"));
|
||||||
|
disabled.insert(QStringLiteral("_run_command"));
|
||||||
|
disabled.insert(QStringLiteral("_lock_screen"));
|
||||||
|
disabled.insert(QStringLiteral("_logout"));
|
||||||
|
--
|
||||||
|
2.36.1
|
||||||
2478
sonic-workspace/sonic-workspace.spec
Normal file
2478
sonic-workspace/sonic-workspace.spec
Normal file
File diff suppressed because it is too large
Load diff
2
sonic-workspace/spice-vdagent.conf
Normal file
2
sonic-workspace/spice-vdagent.conf
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
[Unit]
|
||||||
|
Wants=spice-vdagent.service
|
||||||
3
sonic-workspace/ssh-agent.conf
Normal file
3
sonic-workspace/ssh-agent.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[Unit]
|
||||||
|
Before=ssh-agent.service
|
||||||
|
Wants=ssh-agent.service
|
||||||
2
sonic-workspace/startkderc
Normal file
2
sonic-workspace/startkderc
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
[General]
|
||||||
|
systemdBoot=true
|
||||||
6842
sonic-workspace/tree.txt
Normal file
6842
sonic-workspace/tree.txt
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue