Add missing KDE Gear 26.04.3 and Plasma 6.7.4 packages for SonicDE.
Some checks failed
Build RPMs / build (push) Has been cancelled
Some checks failed
Build RPMs / build (push) Has been cancelled
Packages built from Fedora EPEL 10.3 specs and uploaded to Forgejo: akonadi-server, ark, audiocd-kio, baloo-widgets, ffmpegthumbs, kalk, kcharselect, kdialog, kdnssd, keditbookmarks, kfind, khelpcenter, kio-admin, kio-gdrive, kjournald, kpmcore, krfb, kwalletmanager5, ocean-sound-theme (6.7.4). Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
d5ff1059ce
commit
1c879e6707
24 changed files with 10089 additions and 0 deletions
69
akonadi-server/400.patch
Normal file
69
akonadi-server/400.patch
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
From f0d71c9a28491b3fa664c1c520558c591061cb99 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Allen Winter <winter@kde.org>
|
||||||
|
Date: Thu, 9 Jul 2026 07:25:18 -0400
|
||||||
|
Subject: [PATCH] WIP - Fixes for Akonadi killing MariaDB too quickly
|
||||||
|
|
||||||
|
[Tested with Fedora44 and mariadb 11.8.8]
|
||||||
|
[No idea if these settings are ok for other MySQL variants]
|
||||||
|
|
||||||
|
Implement the recommendations in BUG522845 to prevent crashes
|
||||||
|
on login/logout when using the MariaDB backend.
|
||||||
|
|
||||||
|
Includes these changes:
|
||||||
|
- increase the wait from 3 to 30 seconds before termination
|
||||||
|
- remove the `TimeoutSec=5sec` in akonadi_control.service.in
|
||||||
|
so that systemd doesn't try to kill things after 5 seconds wait.
|
||||||
|
- add `skip_slave_start` to mysql-global.conf so that replica
|
||||||
|
threads are not started which should improve startup time.
|
||||||
|
|
||||||
|
BUG: 522845
|
||||||
|
---
|
||||||
|
src/akonadicontrol/akonadi_control.service.in | 1 -
|
||||||
|
src/server/storage/dbconfigmysql.cpp | 4 ++--
|
||||||
|
src/server/storage/mysql-global.conf | 3 +++
|
||||||
|
3 files changed, 5 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/akonadicontrol/akonadi_control.service.in b/src/akonadicontrol/akonadi_control.service.in
|
||||||
|
index 03c35ef5d..26f4b1838 100644
|
||||||
|
--- a/src/akonadicontrol/akonadi_control.service.in
|
||||||
|
+++ b/src/akonadicontrol/akonadi_control.service.in
|
||||||
|
@@ -9,7 +9,6 @@ PartOf=graphical-session.target
|
||||||
|
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/akonadi_control
|
||||||
|
Type=dbus
|
||||||
|
BusName=org.freedesktop.Akonadi.Control
|
||||||
|
-TimeoutSec=5sec
|
||||||
|
Slice=background.slice
|
||||||
|
# Disable restart as we're dbus activated anyway
|
||||||
|
Restart=no
|
||||||
|
diff --git a/src/server/storage/dbconfigmysql.cpp b/src/server/storage/dbconfigmysql.cpp
|
||||||
|
index 5f1dbd2e0..bb82a6537 100644
|
||||||
|
--- a/src/server/storage/dbconfigmysql.cpp
|
||||||
|
+++ b/src/server/storage/dbconfigmysql.cpp
|
||||||
|
@@ -609,8 +609,8 @@ void DbConfigMysql::stopInternalServer()
|
||||||
|
}
|
||||||
|
|
||||||
|
mDatabaseProcess->terminate();
|
||||||
|
- const bool result = mDatabaseProcess->waitForFinished(3000);
|
||||||
|
- // We've waited nicely for 3 seconds, to no avail, let's be rude.
|
||||||
|
+ const bool result = mDatabaseProcess->waitForFinished(30000);
|
||||||
|
+ // We've waited nicely for 30 seconds, to no avail, let's be rude.
|
||||||
|
if (!result) {
|
||||||
|
mDatabaseProcess->kill();
|
||||||
|
}
|
||||||
|
diff --git a/src/server/storage/mysql-global.conf b/src/server/storage/mysql-global.conf
|
||||||
|
index b381ea502..9cc47ecf7 100644
|
||||||
|
--- a/src/server/storage/mysql-global.conf
|
||||||
|
+++ b/src/server/storage/mysql-global.conf
|
||||||
|
@@ -78,6 +78,9 @@ loose_query_cache_size=0
|
||||||
|
# Do not cache results (default:1)
|
||||||
|
loose_query_cache_type=0
|
||||||
|
|
||||||
|
+# Tells the replica server not to start the replication I/O (receiver) and SQL (applier) threads when the server starts
|
||||||
|
+skip_slave_start
|
||||||
|
+
|
||||||
|
# Do not use the privileges mechanisms
|
||||||
|
skip_grant_tables
|
||||||
|
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
||||||
466
akonadi-server/akonadi-server.spec
Normal file
466
akonadi-server/akonadi-server.spec
Normal file
|
|
@ -0,0 +1,466 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%if 0%{?flatpak}
|
||||||
|
%global database_backend SQLITE
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Name: akonadi-server
|
||||||
|
Summary: PIM Storage Service
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 2%{?dist}
|
||||||
|
|
||||||
|
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-only AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND MIT
|
||||||
|
URL: https://invent.kde.org/pim/akonadi
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/akonadi-%{version}.tar.xz
|
||||||
|
|
||||||
|
## mysql config
|
||||||
|
Source10: akonadiserverrc.mysql
|
||||||
|
Source11: akonadiserverrc.sqlite
|
||||||
|
|
||||||
|
|
||||||
|
## upstreamable patches
|
||||||
|
## MySQL is killed by akonadi too fast
|
||||||
|
## https://invent.kde.org/pim/akonadi/-/merge_requests/400
|
||||||
|
Patch0: 400.patch
|
||||||
|
|
||||||
|
## upstream patches
|
||||||
|
|
||||||
|
|
||||||
|
## downstream patches
|
||||||
|
|
||||||
|
%define mysql_conf_timestamp 20170512
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6ItemViews)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6ItemModels)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6Completion)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
|
||||||
|
BuildRequires: boost-devel
|
||||||
|
BuildRequires: pkgconfig(libxslt)
|
||||||
|
BuildRequires: pkgconfig(shared-mime-info)
|
||||||
|
BuildRequires: pkgconfig(sqlite3) >= 3.6.23
|
||||||
|
|
||||||
|
## (some) optional deps
|
||||||
|
BuildRequires: pkgconfig(Qt6Designer)
|
||||||
|
BuildRequires: cmake(AccountsQt6)
|
||||||
|
BuildRequires: cmake(KAccounts6)
|
||||||
|
|
||||||
|
BuildRequires: systemd
|
||||||
|
BuildRequires: systemd-rpm-macros
|
||||||
|
|
||||||
|
%if ! 0%{?flatpak}
|
||||||
|
BuildRequires: mariadb-server
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Requires(post): /usr/sbin/update-alternatives
|
||||||
|
Requires(postun): /usr/sbin/update-alternatives
|
||||||
|
|
||||||
|
%if ! 0%{?flatpak}
|
||||||
|
Recommends: %{name}-mysql = %{version}-%{release}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Plasma 6
|
||||||
|
Obsoletes: kf5-akonadi-server < 24.01.80-1
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Developer files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: cmake(KF6Config)
|
||||||
|
Requires: cmake(KF6ConfigWidgets)
|
||||||
|
Requires: cmake(KF6CoreAddons)
|
||||||
|
Requires: cmake(KF6ItemModels)
|
||||||
|
Requires: cmake(KF6KIO)
|
||||||
|
Requires: cmake(KF6XmlGui)
|
||||||
|
Requires: cmake(Qt6Core)
|
||||||
|
Requires: cmake(Qt6DBus)
|
||||||
|
Requires: cmake(Qt6Gui)
|
||||||
|
Requires: cmake(Qt6Network)
|
||||||
|
Requires: cmake(Qt6Widgets)
|
||||||
|
Requires: cmake(Qt6Xml)
|
||||||
|
# For testing
|
||||||
|
Requires: cmake(Qt6Test)
|
||||||
|
|
||||||
|
# at least dbus-1/interfaces conflict, maybe more -- rex
|
||||||
|
Conflicts: akonadi-devel
|
||||||
|
Conflicts: kf5-akonadi-server-devel
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package mysql
|
||||||
|
Summary: Akonadi MySQL backend support
|
||||||
|
# upgrade path
|
||||||
|
Obsoletes: kf5-akonadi-server-mysql < 24.01.80-1
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: mariadb-server-any
|
||||||
|
Recommends: mariadb-server
|
||||||
|
Requires: qt6-qtbase-mysql%{?_isa}
|
||||||
|
Requires(post): /usr/sbin/update-alternatives
|
||||||
|
Requires(postun): /usr/sbin/update-alternatives
|
||||||
|
%description mysql
|
||||||
|
Configures akonadi to use mysql backend by default.
|
||||||
|
|
||||||
|
Requires an available instance of mysql server at runtime.
|
||||||
|
Akonadi can spawn a per-user one automatically if the mysql-server
|
||||||
|
package is installed on the machine.
|
||||||
|
See also: %{_sysconfdir}/akonadi/mysql-global.conf
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Developer Documentation files for %{name}
|
||||||
|
BuildArch: noarch
|
||||||
|
%description doc
|
||||||
|
Developer Documentation files for %{name} for use with KDevelop or QtCreator.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n akonadi-%{version} -p1
|
||||||
|
|
||||||
|
# Remove together with move-translations.patch once released
|
||||||
|
find ./po -type f -name libakonadi5.po -execdir mv {} libakonadi6.po \;
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 \
|
||||||
|
%{?database_backend:-DDATABASE_BACKEND=%{database_backend}} \
|
||||||
|
-DINSTALL_APPARMOR:BOOL=OFF \
|
||||||
|
-DKDE_INSTALL_SYSTEMDUSERUNITDIR=%{_userunitdir} \
|
||||||
|
-DMYSQLD_EXECUTABLE:FILEPATH=%{_libexecdir}/mysqld \
|
||||||
|
-DMYSQLD_SCRIPTS_PATH:FILEPATH=%{_bindir}/mysql_install_db \
|
||||||
|
-DPOSTGRES_PATH:FILEPATH=%{_bindir}/pg_ctl
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/org.kde.akonadi.configdialog.desktop
|
||||||
|
%find_lang libakonadi6 --all-name --with-html --with-qt
|
||||||
|
|
||||||
|
install -p -m644 -D %{SOURCE10} %{buildroot}%{_sysconfdir}/xdg/akonadi/akonadiserverrc.mysql
|
||||||
|
install -p -m644 -D %{SOURCE11} %{buildroot}%{_sysconfdir}/xdg/akonadi/akonadiserverrc.sqlite
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/akonadi/agents
|
||||||
|
|
||||||
|
touch -d %{mysql_conf_timestamp} \
|
||||||
|
%{buildroot}%{_sysconfdir}/xdg/akonadi/mysql-global*.conf \
|
||||||
|
%{buildroot}%{_sysconfdir}/xdg/akonadi/mysql-local.conf
|
||||||
|
|
||||||
|
# create/own these dirs
|
||||||
|
mkdir -p %{buildroot}%{_kf6_datadir}/akonadi/plugins
|
||||||
|
mkdir -p %{buildroot}%{_kf6_libdir}/akonadi
|
||||||
|
|
||||||
|
# %%ghost'd global akonadiserverrc
|
||||||
|
touch akonadiserverrc
|
||||||
|
install -p -m644 -D akonadiserverrc %{buildroot}%{_sysconfdir}/xdg/akonadi/akonadiserverrc
|
||||||
|
|
||||||
|
## unpackaged files
|
||||||
|
# omit mysql-global-mobile.conf
|
||||||
|
rm -fv %{buildroot}%{_sysconfdir}/xdg/akonadi/mysql-global-mobile.conf
|
||||||
|
|
||||||
|
%post
|
||||||
|
/usr/sbin/update-alternatives \
|
||||||
|
--install %{_sysconfdir}/xdg/akonadi/akonadiserverrc \
|
||||||
|
akonadiserverrc \
|
||||||
|
%{_sysconfdir}/xdg/akonadi/akonadiserverrc.sqlite \
|
||||||
|
8
|
||||||
|
%systemd_user_post akonadi_control.service
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%systemd_preun akonadi_control.service
|
||||||
|
|
||||||
|
%postun
|
||||||
|
if [ $1 -eq 0 ] ; then
|
||||||
|
/usr/sbin/update-alternatives \
|
||||||
|
--remove akonadiserverrc \
|
||||||
|
%{_sysconfdir}/xdg/akonadi/akonadiserverrc.sqlite
|
||||||
|
fi
|
||||||
|
%systemd_postun akonadi_control.service
|
||||||
|
|
||||||
|
|
||||||
|
%files -f libakonadi6.lang
|
||||||
|
%doc AUTHORS
|
||||||
|
%doc README*
|
||||||
|
%license LICENSES/*
|
||||||
|
%dir %{_sysconfdir}/xdg/akonadi/
|
||||||
|
%ghost %config(missingok,noreplace) %{_sysconfdir}/xdg/akonadi/akonadiserverrc
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/akonadi/akonadiserverrc.sqlite
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/akonadi.*
|
||||||
|
%{_kf6_bindir}/akonadi-db-migrator
|
||||||
|
%{_kf6_bindir}/akonadi_agent_launcher
|
||||||
|
%{_kf6_bindir}/akonadi_agent_server
|
||||||
|
%{_kf6_bindir}/akonadi_control
|
||||||
|
%{_kf6_bindir}/akonadi_rds
|
||||||
|
%{_kf6_bindir}/akonadictl
|
||||||
|
%{_kf6_bindir}/akonadiserver
|
||||||
|
%{_kf6_bindir}/asapcat
|
||||||
|
%{_kf6_bindir}/akonadi2xml
|
||||||
|
%{_kf6_bindir}/akonadiselftest
|
||||||
|
%{_kf6_bindir}/akonaditest
|
||||||
|
%{_kf6_bindir}/akonadiagentconfigdialog
|
||||||
|
%{_kf6_datadir}/dbus-1/services/org.freedesktop.Akonadi.*.service
|
||||||
|
%{_kf6_datadir}/mime/packages/akonadi-mime.xml
|
||||||
|
%{_kf6_datadir}/akonadi/
|
||||||
|
%{_kf6_datadir}/config.kcfg/resourcebase.kcfg
|
||||||
|
%{_kf6_datadir}/kf6/akonadi/
|
||||||
|
%{_kf6_libdir}/libKPim6Akonadi*.so.*
|
||||||
|
%{_kf6_datadir}/icons/hicolor/*/apps/akonadi.*
|
||||||
|
# akonadi_knut_resource
|
||||||
|
%{_kf6_bindir}/akonadi_knut_resource
|
||||||
|
%{_kf6_datadir}/kf6/akonadi_knut_resource/
|
||||||
|
%{_kf6_qmldir}/org/kde/akonadi/
|
||||||
|
%{_kf6_datadir}/applications/org.kde.akonadi.configdialog.desktop
|
||||||
|
%{_userunitdir}/akonadi_control.service
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_datadir}/dbus-1/interfaces/org.freedesktop.Akonadi.*.xml
|
||||||
|
%{_includedir}/KPim6/Akonadi/
|
||||||
|
%{_includedir}/KPim6/AkonadiAgentBase/
|
||||||
|
%{_includedir}/KPim6/AkonadiCore/
|
||||||
|
%{_includedir}/KPim6/AkonadiWidgets/
|
||||||
|
%{_includedir}/KPim6/AkonadiXml/
|
||||||
|
%{_includedir}/KPim6/AkonadiAgentWidgetBase/
|
||||||
|
%{_kf6_libdir}/libKPim6Akonadi*.so
|
||||||
|
%{_kf6_libdir}/cmake/KPim6Akonadi/
|
||||||
|
%{_kf6_qtplugindir}/pim6/akonadi/akonadi_test_searchplugin.so
|
||||||
|
%{_kf6_qtplugindir}/pim6/akonadi/config/knutconfig.so
|
||||||
|
%{_kf6_qtplugindir}/designer/akonadi6widgets.so
|
||||||
|
%{_kf6_datadir}/kdevappwizard/templates/akonadiresource.tar.bz2
|
||||||
|
%{_kf6_datadir}/kdevappwizard/templates/akonadiserializer.tar.bz2
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
|
||||||
|
%post mysql
|
||||||
|
/usr/sbin/update-alternatives \
|
||||||
|
--install %{_sysconfdir}/xdg/akonadi/akonadiserverrc \
|
||||||
|
akonadiserverrc \
|
||||||
|
%{_sysconfdir}/xdg/akonadi/akonadiserverrc.mysql \
|
||||||
|
10
|
||||||
|
|
||||||
|
%postun mysql
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
/usr/sbin/update-alternatives \
|
||||||
|
--remove akonadiserverrc \
|
||||||
|
%{_sysconfdir}/xdg/akonadi/akonadiserverrc.mysql
|
||||||
|
fi
|
||||||
|
|
||||||
|
%files mysql
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/akonadi/akonadiserverrc.mysql
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/akonadi/mysql-global.conf
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/akonadi/mysql-local.conf
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Jul 09 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-2
|
||||||
|
- Adding a fix for akonadi killing mysql too quickly
|
||||||
|
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 30 2026 Than Ngo <than@redhat.com> - 26.04.2-2
|
||||||
|
- Fix rhbz#2494531, Use '-any' virtual provide for mariadb / mysql dependencies
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Thu Apr 16 2026 Jan Grulich <jgrulich@redhat.com> - 26.04.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 15 2025 Alessandro Astone <ales.astone@gmail.com> - 25.08.0-2
|
||||||
|
- Backport patch to fix loading the accounts UI
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 25.04.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 25.03.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 24.08.2-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 24.02.1-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Sun Mar 10 2024 Marie Loise Nolden <loise@kde.org> - 24.02.0-3
|
||||||
|
- add missing BuildArch: noarch to -doc package
|
||||||
|
|
||||||
|
* Sun Mar 3 2024 Marie Loise Nolden <loise@kde.org> - 24.02.0-2
|
||||||
|
- move qt designer plugin to -devel
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 24.01.95-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Alessandro Astone <ales.astone@gmail.com> - 24.01.90-5
|
||||||
|
- Generic mysql is no more, switch to requiring mariadb
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 16 2024 Alessandro Astone <ales.astone@gmail.com> - 24.01.90-2
|
||||||
|
- Restore mariadb preference as in KF5 akonadi
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
- Add doc package for KF6 API
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Thu Dec 21 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.80-4
|
||||||
|
- Backport rename translation files
|
||||||
|
|
||||||
|
* Sun Dec 17 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.80-3
|
||||||
|
- Make upgrade path for mysql subpackage
|
||||||
|
|
||||||
|
* Sat Dec 16 2023 Steve Cossette <farchord@gmail.com> - 24.01.80-2
|
||||||
|
- Obsolete the old Akonadi
|
||||||
|
|
||||||
|
* Wed Dec 6 2023 Steve Cossette <farchord@gmail.com> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
2
akonadi-server/akonadiserverrc.mysql
Normal file
2
akonadi-server/akonadiserverrc.mysql
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
[%General]
|
||||||
|
Driver=QMYSQL
|
||||||
2
akonadi-server/akonadiserverrc.sqlite
Normal file
2
akonadi-server/akonadiserverrc.sqlite
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
[%General]
|
||||||
|
Driver=QSQLITE3
|
||||||
874
ark/ark.spec
Normal file
874
ark/ark.spec
Normal file
|
|
@ -0,0 +1,874 @@
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%global p7zip 1
|
||||||
|
%endif
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: ark
|
||||||
|
Summary: Archive manager
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# icons are LGPL-3.0-only
|
||||||
|
# code is GPL-2.0-or-later
|
||||||
|
License: GPL-2.0-or-later AND LGPL-3.0-only
|
||||||
|
URL: https://www.kde.org/applications/utilities/ark/
|
||||||
|
|
||||||
|
%global revision %(echo %{version} | cut -d. -f3)
|
||||||
|
%if %{revision} >= 50
|
||||||
|
%global stable unstable
|
||||||
|
%else
|
||||||
|
%global stable stable
|
||||||
|
%endif
|
||||||
|
Source0: https://download.kde.org/%{stable}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
## upstreamable patches
|
||||||
|
|
||||||
|
## upstream patches
|
||||||
|
|
||||||
|
BuildRequires: bzip2-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules >= 5.71
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6BreezeIcons)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6FileMetaData)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Service)
|
||||||
|
BuildRequires: cmake(KF6Parts)
|
||||||
|
BuildRequires: cmake(KF6Pty)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
BuildRequires: pkgconfig(libarchive)
|
||||||
|
BuildRequires: pkgconfig(liblzma)
|
||||||
|
BuildRequires: pkgconfig(libzip)
|
||||||
|
BuildRequires: qt6-qtbase-devel
|
||||||
|
BuildRequires: zlib-devel
|
||||||
|
|
||||||
|
# when split occured
|
||||||
|
Conflicts: kdeutils-common < 6:4.7.80
|
||||||
|
|
||||||
|
# translations moved here
|
||||||
|
Conflicts: kde-l10n < 17.03
|
||||||
|
|
||||||
|
Obsoletes: kdeutils-ark < 6:4.7.80
|
||||||
|
Provides: kdeutils-ark = 6:%{version}-%{release}
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
# Dependencies for archive plugins.
|
||||||
|
# could split .desktop like okular to support these via
|
||||||
|
# TryExec=<foo> instead someday -- Rex
|
||||||
|
Requires: bzip2
|
||||||
|
Requires: gzip
|
||||||
|
%if 0%{?p7zip}
|
||||||
|
Requires: p7zip-plugins
|
||||||
|
%endif
|
||||||
|
Requires: unzip
|
||||||
|
# optional/soft dependencies
|
||||||
|
%if 0%{?fedora} > 23
|
||||||
|
Suggests: lha
|
||||||
|
Recommends: unar
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Ark is a program for managing various archive formats.
|
||||||
|
|
||||||
|
Archives can be viewed, extracted, created and modified from within Ark.
|
||||||
|
The program can handle various formats such as tar, gzip, bzip2, zip,
|
||||||
|
rar and lha (if appropriate command-line programs are installed).
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Runtime libraries for %{name}
|
||||||
|
# libkerfuffle is BSD-2-Clause, plugins are mix of BSD-2-Clause AND GPL-2.0-or-later
|
||||||
|
# kerfuffle/qstringtokenizer.* is MIT
|
||||||
|
License: BSD-2-Clause AND GPL-2.0-or-later AND MIT
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Obsoletes: kdeutils-ark-libs < 6:4.7.80
|
||||||
|
Provides: kdeutils-ark-libs = 6:%{version}-%{release}
|
||||||
|
Provides: ark-part = %{version}-%{release}
|
||||||
|
Provides: ark-part%{?_isa} = %{version}-%{release}
|
||||||
|
%description libs
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html --with-man
|
||||||
|
|
||||||
|
# unpackaged files
|
||||||
|
rm -fv %{buildroot}%{_kf6_libdir}/libkerfuffle.so
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.ark.appdata.xml ||:
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.ark.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING*
|
||||||
|
%{_sysconfdir}/xdg/arkrc
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{name}*
|
||||||
|
%{_kf6_bindir}/ark
|
||||||
|
%{_kf6_datadir}/config.kcfg/ark.kcfg
|
||||||
|
%{_kf6_metainfodir}/org.kde.ark.appdata.xml
|
||||||
|
%{_kf6_datadir}/applications/org.kde.ark.desktop
|
||||||
|
%{_kf6_datadir}/icons/hicolor/*/apps/ark.*
|
||||||
|
%{_mandir}/man1/ark.1*
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%{_kf6_libdir}/libkerfuffle.so.*
|
||||||
|
%{_kf6_plugindir}/parts/arkpart.so
|
||||||
|
%{_kf6_qtplugindir}/kerfuffle/
|
||||||
|
%{_kf6_plugindir}/kio_dnd/extracthere.so
|
||||||
|
%{_kf6_plugindir}/kfileitemaction/compressfileitemaction.so
|
||||||
|
%{_kf6_plugindir}/kfileitemaction/extractfileitemaction.so
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Sat Sep 14 2024 Pavel Solovev <daron439@gmail.com> - 24.08.0-2
|
||||||
|
- Add optional KF6BreezeIcons
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2024 Miroslav Suchý <msuchy@redhat.com> - 24.05.2-4
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Backport upstream fix for Qt 6.7
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Sat Feb 17 2024 Jan Grulich <jgrulich@redhat.com> - 24.01.95-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Mon Dec 25 2023 Marie Loise Nolden <loise@kde.org> - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sat Oct 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-2
|
||||||
|
- Add upstream patch to fi bzip2 format with shared-mime-info 2.3
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 07 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu Jun 23 2022 Than Ngo <than@redhat.com> - 22.04.2-1
|
||||||
|
- 22.04.2
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 27 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Thu Oct 21 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Mon Apr 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 6 15:05:28 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 31 2020 Than Ngo <than@redhat.com> - 20.08.0-2
|
||||||
|
- backport security fix for CVE-2020-24654
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-4
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-3
|
||||||
|
- backport security fix for CVE-2020-16116
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Wed Jun 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Sat May 04 2019 Mattia Verga <mattia.verga@protonmail.com> - 18.12.3-2
|
||||||
|
- Add libzip to BR for better performance with zip archives
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Mon Dec 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Fri Apr 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Sun Jan 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 17.12.0-2
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Thu Nov 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Fri Sep 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Sat Jun 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Fri Jan 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1, update URL
|
||||||
|
|
||||||
|
* Tue Jan 10 2017 Than Ngo <than@redhat.com> - 16.08.3-2
|
||||||
|
- fix the security issue in ark, stop running executables when opening urls
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Thu Sep 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-2
|
||||||
|
- -libs: move Provides: ark-part here
|
||||||
|
- soft deps: Recommends: unar, Suggests: lha
|
||||||
|
|
||||||
|
* Thu Sep 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-2
|
||||||
|
- respin
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 22 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-1
|
||||||
|
- 15.12.1, -BR: cmake
|
||||||
|
|
||||||
|
* Sun Dec 20 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-2
|
||||||
|
- respin
|
||||||
|
|
||||||
|
* Tue Dec 15 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Mon Nov 16 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.3-2
|
||||||
|
- support kde4 ServiceMenu too
|
||||||
|
|
||||||
|
* Mon Nov 16 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.3-1
|
||||||
|
- 15.08.3, .spec cosmetics, fix appdata name
|
||||||
|
|
||||||
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||||
|
- 15.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||||
|
- 15.04.1
|
||||||
|
|
||||||
|
* Tue Apr 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||||
|
- 15.04.0
|
||||||
|
|
||||||
|
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||||
|
- 14.12.3
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Than Ngo <than@redhat.com> - 14.12.2-1
|
||||||
|
- 14.12.2
|
||||||
|
|
||||||
|
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||||
|
- 14.12.1
|
||||||
|
|
||||||
|
* Tue Dec 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 14.11.97-1
|
||||||
|
- 14.11.97
|
||||||
|
|
||||||
|
* Mon Nov 24 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-3
|
||||||
|
- backport crash fix for nested archives (kde#341187)
|
||||||
|
|
||||||
|
* Tue Nov 18 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-2
|
||||||
|
- omit KXMLGUIClient patch, it was fixed differently upstream (kde#340991)
|
||||||
|
|
||||||
|
* Sat Nov 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Thu Aug 14 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.97-3
|
||||||
|
- add unar support
|
||||||
|
|
||||||
|
* Fri Aug 08 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.97-2
|
||||||
|
- new appdata validation
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Tue Jul 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Fri Apr 04 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sat Mar 22 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- 4.12.95
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||||
|
- 4.12.90
|
||||||
|
|
||||||
|
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||||
|
- 4.12.3
|
||||||
|
|
||||||
|
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||||
|
- 4.12.2
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||||
|
- 4.12.1
|
||||||
|
|
||||||
|
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||||
|
- 4.12.0
|
||||||
|
|
||||||
|
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||||
|
- 4.11.97
|
||||||
|
|
||||||
|
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||||
|
- 4.11.95
|
||||||
|
|
||||||
|
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||||
|
- 4.11.90
|
||||||
|
|
||||||
|
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||||
|
- 4.11.2
|
||||||
|
|
||||||
|
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Thu Aug 08 2013 Than Ngo <than@redhat.com> - 4.11.0-1
|
||||||
|
- 4.11.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.97-1
|
||||||
|
- 4.10.97
|
||||||
|
|
||||||
|
* Tue Jul 23 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.95-1
|
||||||
|
- 4.10.95
|
||||||
|
|
||||||
|
* Fri Jun 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||||
|
- 4.10.90
|
||||||
|
|
||||||
|
* Tue Jun 18 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.4-2
|
||||||
|
- Requires: +bzip2,gzip,unzip
|
||||||
|
|
||||||
|
* Sat Jun 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.4-1
|
||||||
|
- 4.10.4
|
||||||
|
|
||||||
|
* Mon May 06 2013 Than Ngo <than@redhat.com> - 4.10.3-1
|
||||||
|
- 4.10.3
|
||||||
|
|
||||||
|
* Wed Apr 24 2013 Than Ngo <than@redhat.com> - 4.10.2-2
|
||||||
|
- requires p7zip only in fedora
|
||||||
|
|
||||||
|
* Sun Mar 31 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.2-1
|
||||||
|
- 4.10.2
|
||||||
|
|
||||||
|
* Sat Mar 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-1
|
||||||
|
- 4.10.1
|
||||||
|
|
||||||
|
* Fri Feb 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.0-1
|
||||||
|
- 4.10.0
|
||||||
|
|
||||||
|
* Tue Jan 22 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.98-1
|
||||||
|
- 4.9.98
|
||||||
|
- respin reviewboard#107634 patch
|
||||||
|
|
||||||
|
* Thu Jan 17 2013 Tomas Bzatek <tbzatek@redhat.com> - 4.9.97-3
|
||||||
|
- Rebuilt for new libarchive
|
||||||
|
|
||||||
|
* Sat Jan 05 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-2
|
||||||
|
- Ark needs to know about application/x-source-rpm (#885316)
|
||||||
|
- Improve subfolder autodetection (kde review 107634)
|
||||||
|
- Don't delete the KPart in the MainWindow destructor (kde review 107635)
|
||||||
|
|
||||||
|
* Fri Jan 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-1
|
||||||
|
- 4.9.97
|
||||||
|
|
||||||
|
* Thu Dec 20 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.95-1
|
||||||
|
- 4.9.95
|
||||||
|
|
||||||
|
* Tue Dec 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.90-1
|
||||||
|
- 4.9.90
|
||||||
|
|
||||||
|
* Mon Dec 03 2012 Than Ngo <than@redhat.com> - 4.9.4-1
|
||||||
|
- 4.9.4
|
||||||
|
|
||||||
|
* Sat Nov 03 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.3-1
|
||||||
|
- 4.9.3
|
||||||
|
|
||||||
|
* Sat Sep 29 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.2-1
|
||||||
|
- 4.9.2
|
||||||
|
|
||||||
|
* Mon Sep 03 2012 Than Ngo <than@redhat.com> - 4.9.1-1
|
||||||
|
- 4.9.1
|
||||||
|
|
||||||
|
* Thu Jul 26 2012 Lukas Tinkl <ltinkl@redhat.com> - 4.9.0-1
|
||||||
|
- 4.9.0
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.97-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.97-1
|
||||||
|
- 4.8.97
|
||||||
|
|
||||||
|
* Tue Jul 10 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.95-2
|
||||||
|
- update builddeps
|
||||||
|
|
||||||
|
* Thu Jun 28 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.95-1
|
||||||
|
- 4.8.95
|
||||||
|
|
||||||
|
* Sat Jun 09 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.90-1
|
||||||
|
- 4.8.90
|
||||||
|
|
||||||
|
* Fri Jun 01 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.80-1
|
||||||
|
- 4.8.80
|
||||||
|
|
||||||
|
* Mon Apr 30 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.3-1
|
||||||
|
- 4.8.3
|
||||||
|
|
||||||
|
* Fri Mar 30 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.2-1
|
||||||
|
- 4.8.2
|
||||||
|
|
||||||
|
* Mon Mar 05 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.1-1
|
||||||
|
- 4.8.1
|
||||||
|
|
||||||
|
* Thu Jan 26 2012 Tomas Bzatek <tbzatek@redhat.com> - 4.8.0-3
|
||||||
|
- Rebuilt for new libarchive
|
||||||
|
|
||||||
|
* Tue Jan 24 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.0-2
|
||||||
|
- respin
|
||||||
|
|
||||||
|
* Sun Jan 22 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.0-1
|
||||||
|
- 4.8.0
|
||||||
|
|
||||||
|
* Wed Jan 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.7.97-1
|
||||||
|
- 4.7.97
|
||||||
|
|
||||||
|
* Thu Dec 22 2011 Radek Novacek <rnovacek@redhat.com> - 4.7.95-1
|
||||||
|
- 4.7.95
|
||||||
|
|
||||||
|
* Thu Dec 15 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.90-2
|
||||||
|
- %%doc COPYING
|
||||||
|
|
||||||
|
* Thu Dec 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.90-1
|
||||||
|
- 4.7.90
|
||||||
|
|
||||||
|
* Sat Nov 26 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.80-1
|
||||||
|
- first try
|
||||||
|
|
||||||
598
audiocd-kio/audiocd-kio.spec
Normal file
598
audiocd-kio/audiocd-kio.spec
Normal file
|
|
@ -0,0 +1,598 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: audiocd-kio
|
||||||
|
Summary: KF6 Audiocd kio slave
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: BSD-3-Clause AND CC0-1.0 AND LGPL-3.0-or-later
|
||||||
|
URL: https://invent.kde.org/multimedia/audiocd-kio
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
# cdparanoia-devel not on all arches for RHEL8.
|
||||||
|
%if 0%{?rhel} == 8
|
||||||
|
ExclusiveArch: x86_64 ppc64le aarch64 %{arm}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: cdparanoia-devel cdparanoia
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6Core5Compat)
|
||||||
|
|
||||||
|
BuildRequires: cmake(KCddb6)
|
||||||
|
BuildRequires: cmake(KCompactDisc6)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(alsa)
|
||||||
|
BuildRequires: pkgconfig(phonon4qt6)
|
||||||
|
|
||||||
|
# See: https://docs.kde.org/trunk5/en/audiocd-kio/kcontrol/kcmaudiocd/index.html
|
||||||
|
# Those are explicitely required at build time
|
||||||
|
BuildRequires: pkgconfig(flac)
|
||||||
|
BuildRequires: pkgconfig(theora)
|
||||||
|
BuildRequires: pkgconfig(vorbis)
|
||||||
|
# The MP3 and Opus Encoder tabs are only available if the tools are installed
|
||||||
|
Recommends: lame
|
||||||
|
Recommends: opus-tools
|
||||||
|
|
||||||
|
Requires: %{name}-doc = %{version}-%{release}
|
||||||
|
|
||||||
|
|
||||||
|
# when split occurred (kdemultimedia to audiocd-kio rpm)
|
||||||
|
# when split occurred
|
||||||
|
# for the former audiocd-kio-libs rpm
|
||||||
|
Conflicts: kdemultimedia-libs < 6:4.8.80
|
||||||
|
# for the former audiocd-kio rpm
|
||||||
|
Obsoletes: kdemultimedia-kio_audiocd < 6:4.8.80
|
||||||
|
Provides: kdemultimedia-kio_audiocd = 6:%{version}-%{release}
|
||||||
|
Provides: kio_audiocd = %{version}-%{release}
|
||||||
|
# conflicts from later history of kf5-audiocd-kio
|
||||||
|
# when conflicting /usr/share/config.kcfg/audiocd_vorbis_encoder.kcfg was dropped
|
||||||
|
Conflicts: kf5-audiocd-kio < 24.01.85
|
||||||
|
Obsoletes: kf5-audiocd-kio < 24.01.85
|
||||||
|
Conflicts: audiocd-kio-libs < 24.01.85
|
||||||
|
Obsoletes: audiocd-kio-libs < 24.01.85
|
||||||
|
# translations moved here
|
||||||
|
Conflicts: kde-l10n < 17.03
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
# from the former kdemultimedia - audiocd-kio split
|
||||||
|
Conflicts: kdemultimedia-devel < 6:4.8.80
|
||||||
|
# libaudiocdplugins.so symlink conflict (now against kf5-audiocd-kio-devel)
|
||||||
|
Conflicts: kf5-audiocd-kio-devel < 24.01.85
|
||||||
|
Obsoletes: kf5-audiocd-kio-devel < 24.01.85
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for %{name}
|
||||||
|
License: GFDL-1.2-only
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
BuildArch: noarch
|
||||||
|
# now ahead of kf5-libkcddb
|
||||||
|
Conflicts: kf5-audiocd-kio-doc < 24.01.85
|
||||||
|
Obsoletes: kf5-audiocd-kio-doc < 24.01.85
|
||||||
|
%description doc
|
||||||
|
Documentation for %{name}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-man
|
||||||
|
%find_lang %{name}-doc --all-name --with-html --without-mo
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING*
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/*
|
||||||
|
%{_kf6_metainfodir}/org.kde.kio_audiocd.*.xml
|
||||||
|
%{_kf6_libdir}/libaudiocdplugins.so.5*
|
||||||
|
%{_qt6_plugindir}/libaudiocd_encoder_flac.so
|
||||||
|
%{_qt6_plugindir}/libaudiocd_encoder_lame.so
|
||||||
|
%{_qt6_plugindir}/libaudiocd_encoder_opus.so
|
||||||
|
%{_qt6_plugindir}/libaudiocd_encoder_vorbis.so
|
||||||
|
%{_qt6_plugindir}/libaudiocd_encoder_wav.so
|
||||||
|
%{_kf6_plugindir}/kio/audiocd.so
|
||||||
|
%{_kf6_datadir}/config.kcfg/audiocd_*_encoder.kcfg
|
||||||
|
%dir %{_kf6_datadir}/konqsidebartng/
|
||||||
|
%dir %{_kf6_datadir}/konqsidebartng/virtual_folders
|
||||||
|
%dir %{_kf6_datadir}/konqsidebartng/virtual_folders/services/
|
||||||
|
%{_kf6_datadir}/konqsidebartng/virtual_folders/services/audiocd.desktop
|
||||||
|
%{_kf6_datadir}/solid/actions/solid_audiocd.desktop
|
||||||
|
%{_kf6_datadir}/applications/kcm_audiocd.desktop
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings_qwidgets/kcm_audiocd.so
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_libdir}/libaudiocdplugins.so
|
||||||
|
%{_includedir}/audiocdplugins/
|
||||||
|
|
||||||
|
%files doc -f %{name}-doc.lang
|
||||||
|
%license COPYING.DOC
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Tue May 27 2025 Jitka Plesnikova <jplesnik@redhat.com> - 25.04.1-2
|
||||||
|
- Rebuilt for flac 1.5.0
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Tue Apr 29 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.04.0-2
|
||||||
|
- Add obsolete/conflic to audiocd-kio-libs #2265260
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Jan 06 2024 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-2
|
||||||
|
- Also obsolete kf5 devel subpackage for upgrading
|
||||||
|
|
||||||
|
* Sun Dec 31 2023 Marie Loise Nolden <loise@kde.org> - 24.01.85-1
|
||||||
|
- 24.01.85 using Qt6/KF6
|
||||||
|
- add conflicts reverse to kf5-audiocd-kio
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 12 2023 Than Ngo <than@redhat.com> - 16.08.3-20
|
||||||
|
- migrated to SPDX license
|
||||||
|
|
||||||
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Sep 13 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 16.08.3-18
|
||||||
|
- Rebuilt for flac 1.4.0
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-10
|
||||||
|
- %%exclude audiocd*.kcfg (conflicts with kf5-audiocd-kio)
|
||||||
|
- update URL
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-7
|
||||||
|
- Recommends: -doc (#1578084)
|
||||||
|
- .spec cosmetics
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.08.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-2
|
||||||
|
- drop kf5 solid actions (a proper kf5-audiocd-kio is on the way)
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Wed Sep 07 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sat Jul 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-1
|
||||||
|
- 16.07.80
|
||||||
|
|
||||||
|
* Sat Jul 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Mon Apr 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 29 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-2
|
||||||
|
- support kf5 solid/actions
|
||||||
|
|
||||||
|
* Fri Jan 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-1
|
||||||
|
- 15.12.1
|
||||||
|
|
||||||
|
* Tue Dec 29 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Tue Dec 08 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-2
|
||||||
|
- relax deps, kde4 versions won't be changing much anymore
|
||||||
|
- .spec cosmetics
|
||||||
|
- -doc subpkg (separate licensing, easier multilib workaround for conflicts)
|
||||||
|
|
||||||
|
* Sat Dec 05 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-1
|
||||||
|
- 15.08.3
|
||||||
|
|
||||||
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||||
|
- 15.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||||
|
- 15.04.1
|
||||||
|
|
||||||
|
* Tue Apr 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||||
|
- 15.04.0
|
||||||
|
|
||||||
|
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||||
|
- 14.12.3
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Than Ngo <than@redhat.com> - 14.12.2-1
|
||||||
|
- 14.12.2
|
||||||
|
|
||||||
|
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||||
|
- 14.12.1
|
||||||
|
|
||||||
|
* Tue Dec 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 14.11.97-1
|
||||||
|
- 14.11.97
|
||||||
|
|
||||||
|
* Sat Nov 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Mon Jul 14 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Fri Apr 04 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sat Mar 22 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- 4.12.95
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||||
|
- 4.12.90
|
||||||
|
|
||||||
|
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||||
|
- 4.12.3
|
||||||
|
|
||||||
|
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||||
|
- 4.12.2
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||||
|
- 4.12.1
|
||||||
|
|
||||||
|
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||||
|
- 4.12.0
|
||||||
|
|
||||||
|
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||||
|
- 4.11.97
|
||||||
|
|
||||||
|
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||||
|
- 4.11.95
|
||||||
|
|
||||||
|
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||||
|
- 4.11.90
|
||||||
|
|
||||||
|
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||||
|
- 4.11.2
|
||||||
|
|
||||||
|
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Thu Aug 08 2013 Than Ngo <than@redhat.com> - 4.11.0-1
|
||||||
|
- 4.11.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.97-1
|
||||||
|
- 4.10.97
|
||||||
|
|
||||||
|
* Tue Jul 23 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.95-1
|
||||||
|
- 4.10.95
|
||||||
|
|
||||||
|
* Thu Jun 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||||
|
- 4.10.90
|
||||||
|
|
||||||
|
* Sat Jun 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.4-1
|
||||||
|
- 4.10.4
|
||||||
|
|
||||||
|
* Mon May 06 2013 Than Ngo <than@redhat.com> - 4.10.3-1
|
||||||
|
- 4.10.3
|
||||||
|
|
||||||
|
* Wed Apr 24 2013 Than Ngo <than@redhat.com> - 4.10.2-2
|
||||||
|
- fix multilib issue
|
||||||
|
|
||||||
|
* Sun Mar 31 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.2-1
|
||||||
|
- 4.10.2
|
||||||
|
|
||||||
|
* Sat Mar 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-1
|
||||||
|
- 4.10.1
|
||||||
|
|
||||||
|
* Fri Feb 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.0-1
|
||||||
|
- 4.10.0
|
||||||
|
|
||||||
|
* Sun Jan 20 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.98-1
|
||||||
|
- 4.9.98
|
||||||
|
|
||||||
|
* Fri Jan 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-1
|
||||||
|
- 4.9.97
|
||||||
|
|
||||||
|
* Thu Dec 20 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.95-1
|
||||||
|
- 4.9.95
|
||||||
|
|
||||||
|
* Mon Dec 03 2012 Rex Dieter <rdieter@fedoraproject.org> 4.9.90-1
|
||||||
|
- 4.9.90 (4.10 beta2)
|
||||||
|
|
||||||
|
* Mon Dec 03 2012 Than Ngo <than@redhat.com> - 4.9.4-1
|
||||||
|
- 4.9.4
|
||||||
|
|
||||||
|
* Sat Nov 03 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.3-1
|
||||||
|
- 4.9.3
|
||||||
|
|
||||||
|
* Sat Sep 29 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.2-1
|
||||||
|
- 4.9.2
|
||||||
|
|
||||||
|
* Mon Sep 03 2012 Than Ngo <than@redhat.com> - 4.9.1-1
|
||||||
|
- 4.9.1
|
||||||
|
|
||||||
|
* Thu Jul 26 2012 Lukas Tinkl <ltinkl@redhat.com> - 4.9.0-1
|
||||||
|
- 4.9.0
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.97-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.97-1
|
||||||
|
- 4.8.97
|
||||||
|
|
||||||
|
* Wed Jun 27 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.95-1
|
||||||
|
- 4.8.95
|
||||||
|
|
||||||
|
* Wed Jun 13 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.90-2
|
||||||
|
- License: GPLv2+ and GFDL
|
||||||
|
|
||||||
|
* Fri Jun 08 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.90-1
|
||||||
|
- audiocd-kio-4.8.90
|
||||||
|
|
||||||
|
|
||||||
617
baloo-widgets/baloo-widgets.spec
Normal file
617
baloo-widgets/baloo-widgets.spec
Normal file
|
|
@ -0,0 +1,617 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: baloo-widgets
|
||||||
|
Summary: Widgets for Baloo
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# # KDE e.V. may determine that future LGPL versions are accepted
|
||||||
|
License: LGPL-2.0-only OR LGPL-3.0-only
|
||||||
|
URL: https://invent.kde.org/libraries/%{name}
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6Test)
|
||||||
|
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6FileMetaData)
|
||||||
|
BuildRequires: cmake(KF6Baloo)
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Developer files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: qt6-qtbase-devel
|
||||||
|
Requires: kf6-kcoreaddons-devel
|
||||||
|
Requires: kf6-kio-devel
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 -DBUILD_WITH_QT6=ON
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%doc LICENSES/*
|
||||||
|
%{_kf6_libdir}/libKF6BalooWidgets.so.*
|
||||||
|
%{_kf6_bindir}/baloo_filemetadata_temp_extractor
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{name}*
|
||||||
|
%{_kf6_plugindir}/propertiesdialog/
|
||||||
|
%{_kf6_plugindir}/kfileitemaction/
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_kf6_libdir}/cmake/KF6BalooWidgets/
|
||||||
|
%{_kf6_includedir}/BalooWidgets/
|
||||||
|
%{_kf6_libdir}/libKF6BalooWidgets.so
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.80-1
|
||||||
|
- Update to 24.01.80
|
||||||
|
|
||||||
|
* Sat Nov 25 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Mon Jun 12 2023 Than Ngo <than@redhat.com> - 23.04.2-2
|
||||||
|
- migrated to SPDX license
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.1-1
|
||||||
|
- 21.08.1
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||||
|
- 21.08.0
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 14:16:43 CST 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||||
|
- 20.12.1
|
||||||
|
|
||||||
|
* Wed Nov 4 13:51:47 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.0-1
|
||||||
|
- 19.08.0
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.0-1
|
||||||
|
- 18.08.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-1
|
||||||
|
- 17.08.0
|
||||||
|
|
||||||
|
* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 17.04.3-2
|
||||||
|
- Rebuilt for AutoReq cmake-filesystem
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Sun Apr 23 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-2
|
||||||
|
- Conflicts: kde-l10n < 17.04.0-2
|
||||||
|
|
||||||
|
* Fri Apr 14 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-1
|
||||||
|
- 17.04.0, cmake-style deps, includes translations
|
||||||
|
|
||||||
|
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Tue Jan 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1, update URL
|
||||||
|
|
||||||
|
* Mon Dec 26 2016 Rex Dieter <rdieter@math.unl.edu> - 16.12.0-1
|
||||||
|
- 16.12.0
|
||||||
|
|
||||||
|
* Wed Nov 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Tue Sep 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Fri Aug 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Fri Jul 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-1
|
||||||
|
- 16.07.80
|
||||||
|
|
||||||
|
* Fri Jul 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Mon Apr 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Sat Mar 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Sun Feb 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-1
|
||||||
|
- 15.12.1
|
||||||
|
|
||||||
|
* Sun Dec 20 2015 Rex Dieter <rdieter@fedoraproject.org> 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Wed Dec 02 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-1
|
||||||
|
- 15.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.1-1
|
||||||
|
- 15.08.1
|
||||||
|
|
||||||
|
* Tue Sep 01 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.0-3
|
||||||
|
- Provides: kf5-baloo-widgets(-devel)
|
||||||
|
|
||||||
|
* Tue Sep 01 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.0-2
|
||||||
|
- fix -devel deps
|
||||||
|
|
||||||
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 16 2015 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-2
|
||||||
|
- rebuild (gcc5)
|
||||||
|
|
||||||
|
* Sat Nov 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Sat Oct 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Mon Sep 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 14 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Mon Jul 14 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 10 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Thu Apr 03 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sat Mar 22 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- 4.12.95
|
||||||
|
|
||||||
|
* Mon Mar 17 2014 Rex Dieter <rdieter@fedoraproject.org> 4.12.90-1
|
||||||
|
- baloo-widgets-4.12.90, first try
|
||||||
|
|
||||||
|
|
@ -29,6 +29,7 @@ kf6-kcalendarcore
|
||||||
kf6-ktexttemplate
|
kf6-ktexttemplate
|
||||||
kf6-threadweaver
|
kf6-threadweaver
|
||||||
libkdcraw
|
libkdcraw
|
||||||
|
ocean-sound-theme
|
||||||
sddm
|
sddm
|
||||||
sonic-exiv2-library
|
sonic-exiv2-library
|
||||||
sonic-frameworks-archive
|
sonic-frameworks-archive
|
||||||
|
|
@ -65,6 +66,7 @@ sonic-workspace-wallpapers
|
||||||
|
|
||||||
[tier4]
|
[tier4]
|
||||||
kf6-kcontacts
|
kf6-kcontacts
|
||||||
|
kpmcore
|
||||||
ksanecore
|
ksanecore
|
||||||
libkcompactdisc
|
libkcompactdisc
|
||||||
sonic-activities
|
sonic-activities
|
||||||
|
|
@ -86,6 +88,7 @@ sonic-quick-image-editor
|
||||||
sonic-screen-library
|
sonic-screen-library
|
||||||
|
|
||||||
[tier5]
|
[tier5]
|
||||||
|
kalk
|
||||||
kde-gtk-config
|
kde-gtk-config
|
||||||
kde-inotify-survey
|
kde-inotify-survey
|
||||||
sonic-activities-stats
|
sonic-activities-stats
|
||||||
|
|
@ -117,14 +120,23 @@ sonic-ssh-password-prompt
|
||||||
|
|
||||||
[tier8]
|
[tier8]
|
||||||
kdebugsettings
|
kdebugsettings
|
||||||
|
kjournald
|
||||||
|
krfb
|
||||||
sonic-frameworks-bookmarks
|
sonic-frameworks-bookmarks
|
||||||
|
|
||||||
[tier9]
|
[tier9]
|
||||||
|
kcharselect
|
||||||
sonic-frameworks-io
|
sonic-frameworks-io
|
||||||
|
|
||||||
[tier10]
|
[tier10]
|
||||||
|
ffmpegthumbs
|
||||||
kdegraphics-thumbnailers
|
kdegraphics-thumbnailers
|
||||||
kdenetwork-filesharing
|
kdenetwork-filesharing
|
||||||
|
kdialog
|
||||||
|
kdnssd
|
||||||
|
kfind
|
||||||
|
khelpcenter
|
||||||
|
kio-admin
|
||||||
libkgapi
|
libkgapi
|
||||||
sonic-activity-manager-daemon
|
sonic-activity-manager-daemon
|
||||||
sonic-frameworks-feeds
|
sonic-frameworks-feeds
|
||||||
|
|
@ -141,11 +153,15 @@ sonic-qt-theme-bridge
|
||||||
sonic-system-log
|
sonic-system-log
|
||||||
|
|
||||||
[tier11]
|
[tier11]
|
||||||
|
ark
|
||||||
|
baloo-widgets
|
||||||
colord-kde
|
colord-kde
|
||||||
filelight
|
filelight
|
||||||
flatpak-kcm
|
flatpak-kcm
|
||||||
kamera
|
kamera
|
||||||
kde-connect
|
kde-connect
|
||||||
|
keditbookmarks
|
||||||
|
kwalletmanager5
|
||||||
libkcddb
|
libkcddb
|
||||||
okular
|
okular
|
||||||
plasma-systemsettings
|
plasma-systemsettings
|
||||||
|
|
@ -164,6 +180,8 @@ sonic-thunderbolt
|
||||||
xdg-desktop-portal-sonicde
|
xdg-desktop-portal-sonicde
|
||||||
|
|
||||||
[tier12]
|
[tier12]
|
||||||
|
akonadi-server
|
||||||
|
audiocd-kio
|
||||||
aurorae
|
aurorae
|
||||||
kaccounts-providers
|
kaccounts-providers
|
||||||
kate
|
kate
|
||||||
|
|
@ -187,6 +205,7 @@ sonic-welcome-center
|
||||||
[tier13]
|
[tier13]
|
||||||
dolphin-plugins
|
dolphin-plugins
|
||||||
gwenview
|
gwenview
|
||||||
|
kio-gdrive
|
||||||
skanpage
|
skanpage
|
||||||
sonic-breeze
|
sonic-breeze
|
||||||
sonic-oxygen
|
sonic-oxygen
|
||||||
|
|
|
||||||
504
ffmpegthumbs/ffmpegthumbs.spec
Normal file
504
ffmpegthumbs/ffmpegthumbs.spec
Normal file
|
|
@ -0,0 +1,504 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: ffmpegthumbs
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: KDE ffmpegthumbnailer service
|
||||||
|
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
URL: https://apps.kde.org/%{name}/
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: ffmpeg-free-devel
|
||||||
|
|
||||||
|
Provides: kffmpegthumbnailer = %{version}-%{release}
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 -DQT_MAJOR_VERSION=6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.%{name}.metainfo.xml
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSES/GPL-2.0-or-later.txt
|
||||||
|
%{_kf6_plugindir}/thumbcreator/ffmpegthumbs.so
|
||||||
|
%{_kf6_datadir}/config.kcfg/ffmpegthumbnailersettings5.kcfg
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/ffmpegthumbs.categories
|
||||||
|
%{_kf6_metainfodir}/org.kde.%{name}.metainfo.xml
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Oct 02 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-2
|
||||||
|
- Rebuild for ffmpeg 7 (again)
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Mon Sep 23 2024 Fabio Valentini <decathorpe@gmail.com> - 24.08.0-2
|
||||||
|
- Rebuild for ffmpeg 7
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Mon Dec 04 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Tue Mar 21 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Tue Mar 21 2023 Sérgio Basto <sergio@serjux.com> - 22.12.3-3
|
||||||
|
- Rebuild to fix bodhi override of releasever 2 to 1
|
||||||
|
|
||||||
|
* Sun Mar 12 2023 Neal Gompa <ngompa@fedoraproject.org> - 22.12.3-2
|
||||||
|
- Rebuild for ffmpeg 6.0
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Thu Dec 29 2022 Neal Gompa <ngompa@fedoraproject.org> - 22.12.0-1
|
||||||
|
- Update to 22.12.0 and move to Fedora
|
||||||
|
|
||||||
|
* Sat Nov 19 2022 Sérgio Basto <sergio@serjux.com> - 22.08.3-1
|
||||||
|
- Update ffmpegthumbs to 22.08.3
|
||||||
|
|
||||||
|
* Sat Sep 24 2022 Sérgio Basto <sergio@serjux.com> - 22.08.1-1
|
||||||
|
- Update ffmpegthumbs to 22.08.1
|
||||||
|
|
||||||
|
* Sun Aug 07 2022 RPM Fusion Release Engineering <sergiomb@rpmfusion.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
|
||||||
|
5.1
|
||||||
|
|
||||||
|
* Thu Aug 04 2022 Leigh Scott <leigh123linux@gmail.com> - 22.04.3-1
|
||||||
|
- Update ffmpegthumbs to 22.04.3
|
||||||
|
|
||||||
|
* Tue Apr 26 2022 Leigh Scott <leigh123linux@gmail.com> - 22.04.0-1
|
||||||
|
- Update ffmpegthumbs to 22.04.0
|
||||||
|
|
||||||
|
* Sat Feb 26 2022 Sérgio Basto <sergio@serjux.com> - 21.12.2-1
|
||||||
|
- Update ffmpegthumbs to 21.12.2
|
||||||
|
- Add ffmpeg-5 PR
|
||||||
|
- lang has disappear from the package
|
||||||
|
|
||||||
|
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb@rpmfusion.org> - 21.04.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 11 2021 Leigh Scott <leigh123linux@gmail.com> - 21.04.2-3
|
||||||
|
- Rebuilt for new ffmpeg snapshot
|
||||||
|
|
||||||
|
* Mon Aug 02 2021 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 12 2021 Sérgio Basto <sergio@serjux.com> - 21.04.2-1
|
||||||
|
- Update ffmpegthumbs to 21.04.2
|
||||||
|
|
||||||
|
* Sun Feb 21 2021 Sérgio Basto <sergio@serjux.com> - 20.12.2-1
|
||||||
|
- Update ffmpegthumbs to 20.12.2
|
||||||
|
- Add missing dependency on taglib
|
||||||
|
|
||||||
|
* Wed Feb 03 2021 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 20.08.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 31 2020 Leigh Scott <leigh123linux@gmail.com> - 20.08.1-2
|
||||||
|
- Rebuilt for new ffmpeg snapshot
|
||||||
|
|
||||||
|
* Mon Sep 14 2020 Sérgio Basto <sergio@serjux.com> - 20.08.1-1
|
||||||
|
- Update ffmpegthumbs to 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 19.12.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 22 2020 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 19.12.1-3
|
||||||
|
- Rebuild for ffmpeg-4.3 git
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 22 2020 Sérgio Basto <sergio@serjux.com> - 19.12.1-1
|
||||||
|
- Update ffmpegthumbs to 19.12.1
|
||||||
|
- Fix build
|
||||||
|
|
||||||
|
* Wed Sep 25 2019 Leigh Scott <leigh123linux@googlemail.com> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 06 2019 Leigh Scott <leigh123linux@gmail.com> - 18.12.3-2
|
||||||
|
- Rebuild for new ffmpeg version
|
||||||
|
|
||||||
|
* Thu Mar 14 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Mon Mar 04 2019 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 18.12.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Mon Sep 17 2018 Sérgio Basto <sergio@serjux.com> - 18.08.1-1
|
||||||
|
- Update ffmpegthumbs to 18.08.1
|
||||||
|
|
||||||
|
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 17.12.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 08 2018 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 17.12.0-4
|
||||||
|
- Rebuilt for new ffmpeg snapshot
|
||||||
|
|
||||||
|
* Thu Mar 01 2018 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 17.12.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 18 2018 Leigh Scott <leigh123linux@googlemail.com> - 17.12.0-2
|
||||||
|
- Rebuilt for ffmpeg-3.5 git
|
||||||
|
|
||||||
|
* Fri Dec 29 2017 Sérgio Basto <sergio@serjux.com> - 17.12.0-1
|
||||||
|
- Update ffmpegthumbs to 17.12.0
|
||||||
|
|
||||||
|
* Tue Oct 17 2017 Leigh Scott <leigh123linux@googlemail.com> - 17.08.1-2
|
||||||
|
- Rebuild for ffmpeg update
|
||||||
|
|
||||||
|
* Sun Oct 08 2017 Sérgio Basto <sergio@serjux.com> - 17.08.1-1
|
||||||
|
- Update to 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart@rpmfusion.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 11 2017 Sérgio Basto <sergio@serjux.com> - 17.04.2-1
|
||||||
|
- Update to 17.04.2
|
||||||
|
|
||||||
|
* Sat Apr 29 2017 Leigh Scott <leigh123linux@googlemail.com> - 16.12.3-2
|
||||||
|
- Rebuild for ffmpeg update
|
||||||
|
|
||||||
|
* Wed Mar 29 2017 Sérgio Basto <sergio@serjux.com> - 16.12.3-1
|
||||||
|
- Update to 16.12.3
|
||||||
|
|
||||||
|
* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart@rpmfusion.org> - 16.12.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Sérgio Basto <sergio@serjux.com> - 16.12.2-1
|
||||||
|
- Update ffmpegthumbs to 16.12.2 following Fedora KDE applications
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Sérgio Basto <sergio@serjux.com> - 16.08.2-1
|
||||||
|
- Update to 16.08.2
|
||||||
|
|
||||||
|
* Thu Sep 15 2016 Sérgio Basto <sergio@serjux.com> - 16.08.1-1
|
||||||
|
- Update to 16.08.1
|
||||||
|
- Drop Port-to-libavfilter-for-deinterlacing.patch is upstreamed.
|
||||||
|
|
||||||
|
* Sat Aug 20 2016 Sérgio Basto <sergio@serjux.com> - 16.04.3-1
|
||||||
|
- Update to 16.04.3, rfbz #4164, following kdemultimedia of Fedora proper,
|
||||||
|
the ffmpegthumbs package is not ffmpegthumbnailer, neither kffmpegthumbnailer
|
||||||
|
packages, these 3 packages have a very similar names but just ffmpegthumbs is
|
||||||
|
part of kdemultimedia.
|
||||||
|
|
||||||
|
* Sat Jul 30 2016 Julian Sikorski <belegdol@fedoraproject.org> - 16.04.2-3
|
||||||
|
- Rebuilt for ffmpeg-3.1.1
|
||||||
|
|
||||||
|
* Fri Jul 08 2016 Leigh Scott <leigh123linux@googlemail.com> - 16.04.2-2
|
||||||
|
- fix f23 build
|
||||||
|
|
||||||
|
* Fri Jul 08 2016 Leigh Scott <leigh123linux@googlemail.com> - 16.04.2-1
|
||||||
|
- Update to 16.04.2 release
|
||||||
|
- patch for ffmpeg-3.0
|
||||||
|
|
||||||
|
* Sun Oct 19 2014 Sérgio Basto <sergio@serjux.com> - 4.13.97-3
|
||||||
|
- Rebuilt for FFmpeg 2.4.3
|
||||||
|
|
||||||
|
* Fri Sep 26 2014 Nicolas Chauvet <kwizart@gmail.com> - 4.13.97-2
|
||||||
|
- Rebuilt for FFmpeg 2.4.x
|
||||||
|
|
||||||
|
* Wed Aug 06 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Wed Aug 06 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Sat Mar 29 2014 Sérgio Basto <sergio@serjux.com> - 4.11.3-2
|
||||||
|
- Rebuilt for ffmpeg-2.2
|
||||||
|
|
||||||
|
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Tue Oct 01 2013 Rex Dieter <rdieter@fedoraproject.org> 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Thu Aug 15 2013 Nicolas Chauvet <kwizart@gmail.com> - 4.10.1-3
|
||||||
|
- Rebuilt for FFmpeg 2.0.x
|
||||||
|
|
||||||
|
* Sun May 26 2013 Nicolas Chauvet <kwizart@gmail.com> - 4.10.1-2
|
||||||
|
- Rebuilt for x264/FFmpeg
|
||||||
|
|
||||||
|
* Fri Apr 05 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.1-1
|
||||||
|
- 4.10.1
|
||||||
|
|
||||||
|
* Wed Jan 16 2013 Rex Dieter <rdieter@fedoraproject.org> 4.9.97-1
|
||||||
|
- 4.9.97
|
||||||
|
|
||||||
|
* Sat Nov 24 2012 Nicolas Chauvet <kwizart@gmail.com> - 4.9.3-2
|
||||||
|
- Rebuilt for FFmpeg 1.0
|
||||||
|
|
||||||
|
* Thu Nov 08 2012 Rex Dieter <rdieter@fedoraproject.org> 4.9.3-1
|
||||||
|
- 4.9.3
|
||||||
|
|
||||||
|
* Wed Sep 12 2012 Rex Dieter <rdieter@fedoraproject.org> 4.9.1-1
|
||||||
|
- 4.9.1
|
||||||
|
|
||||||
|
* Thu Aug 30 2012 Rex Dieter <rdieter@fedoraproject.org> 4.9.0-1
|
||||||
|
- 4.9.0
|
||||||
|
|
||||||
|
* Mon Jun 18 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.90-4
|
||||||
|
- ffmpegthumbs
|
||||||
|
|
||||||
|
* Fri Mar 02 2012 Nicolas Chauvet <kwizart@gmail.com> - 4.7.2-4
|
||||||
|
- Rebuilt for c++ ABI breakage
|
||||||
|
|
||||||
|
* Tue Feb 28 2012 Nicolas Chauvet <kwizart@gmail.com> - 4.7.2-3
|
||||||
|
- Rebuilt for x264/FFmpeg
|
||||||
|
|
||||||
|
* Wed Feb 08 2012 Nicolas Chauvet <kwizart@gmail.com> - 4.7.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 01 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.2-1
|
||||||
|
- 4.7.2
|
||||||
|
|
||||||
|
* Mon Sep 26 2011 Nicolas Chauvet <kwizart@gmail.com> - 4.7.0-2
|
||||||
|
- Rebuilt for FFmpeg-0.8
|
||||||
|
|
||||||
|
* Fri Aug 12 2011 Magnus Tuominen magnus.tuominen@gmail.com> 4.7.0-1
|
||||||
|
- 4.7.0
|
||||||
|
- patch50 no longer needed
|
||||||
|
|
||||||
|
* Fri Apr 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.6.1-1
|
||||||
|
- 4.6.1
|
||||||
|
|
||||||
|
* Sun Jan 23 2011 Rex Dieter <rdieter@fedoraproject.org> - 4.6.0-1
|
||||||
|
- 4.6.0
|
||||||
|
|
||||||
|
* Thu Dec 09 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.5.85-1
|
||||||
|
- 4.5.85 (4.6beta2)
|
||||||
|
- drop Obsoletes/Provides ffmpegthumnailer
|
||||||
|
|
||||||
|
* Mon Nov 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.5.80-1
|
||||||
|
- 4.5.80 (4.6beta1)
|
||||||
|
|
||||||
|
* Mon Nov 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.5.3-2
|
||||||
|
- Obsoletes: ffmpegthumbnailer-devel too
|
||||||
|
|
||||||
|
* Thu Nov 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.5.3-1
|
||||||
|
- 4.5.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.5.2-1
|
||||||
|
- 4.5.2
|
||||||
|
|
||||||
|
* Sun Sep 19 2010 Magnus Tuominen <magnus.tuominen@gmail.com> - 4.5.1-2
|
||||||
|
- drop patch
|
||||||
|
- obsolete < 15
|
||||||
|
|
||||||
|
* Mon Sep 13 2010 Magnus Tuominen <magnus.tuominen@gmail.com> - 4.5.1-1
|
||||||
|
- first attempt on kdemultimedia-extras-freeworld
|
||||||
289
kalk/kalk.spec
Normal file
289
kalk/kalk.spec
Normal file
|
|
@ -0,0 +1,289 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
%global kf6_min_version 5.240.0
|
||||||
|
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kalk
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later AND GPL-3.0-or-later
|
||||||
|
Summary: %{name} is a convergent calculator for Plasma.
|
||||||
|
Url: https://apps.kde.org/%{name}/
|
||||||
|
Source: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Config) >= %{kf6_min_version}
|
||||||
|
BuildRequires: cmake(KF6I18n) >= %{kf6_min_version}
|
||||||
|
BuildRequires: cmake(KF6CoreAddons) >= %{kf6_min_version}
|
||||||
|
BuildRequires: cmake(KF6UnitConversion) >= %{kf6_min_version}
|
||||||
|
BuildRequires: cmake(KF6Kirigami) >= %{kf6_min_version}
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
BuildRequires: cmake(Qt6Test)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(Qt6QuickControls2)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(libqalculate) > 4.7.0
|
||||||
|
|
||||||
|
# QML module dependencies
|
||||||
|
Requires: kf6-kcoreaddons%{?_isa}
|
||||||
|
Requires: kf6-kirigami%{?_isa}
|
||||||
|
Requires: kf6-kirigami-addons%{?_isa}
|
||||||
|
Requires: kf6-qqc2-desktop-style%{?_isa}
|
||||||
|
Requires: kf6-sonnet%{?_isa}
|
||||||
|
Requires: qt6-qt5compat%{?_isa}
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%{_kf6_bindir}/%{name}
|
||||||
|
|
||||||
|
%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
%{_kf6_datadir}/icons/hicolor/scalable/apps/org.kde.%{name}.svg
|
||||||
|
|
||||||
|
%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
|
||||||
|
%license LICENSES/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Wed Jun 03 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Fri Apr 17 2026 Jan Grulich <jgrulich@redhat.com> - 26.04.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Sat Jul 06 2024 Mukundan Ragavan <nonamedotc@gmail.com> - 24.05.1-2
|
||||||
|
- rebuild for libqalculate soname update
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 13 2023 Justin Zobel <justin.zobel@gmail.com> - 24.01.75-1
|
||||||
|
- Update to 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Thu Apr 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Mon Jan 30 2023 Justin Zobel <justin@1707.io> - 23.01.0-1
|
||||||
|
- Update to 23.01.0
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.11-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 01 2022 Justin Zobel <justin@1707.io> - 22.11-1
|
||||||
|
- Update to 22.11
|
||||||
|
|
||||||
|
* Wed Sep 28 2022 Justin Zobel <justin@1707.io> - 22.09-1
|
||||||
|
- Update to 22.09
|
||||||
|
|
||||||
|
* Thu Aug 25 2022 Justin Zobel <justin@1707.io> - 22.06-1
|
||||||
|
- Update to 22.06
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 16 2022 Onuralp SEZER <thunderbirdtr@fedoraproject.org> - 21.12-1
|
||||||
|
- Initial package
|
||||||
705
kcharselect/kcharselect.spec
Normal file
705
kcharselect/kcharselect.spec
Normal file
|
|
@ -0,0 +1,705 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kcharselect
|
||||||
|
Summary: Character selector
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
URL: https://apps.kde.org/kcharselect/
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6Bookmarks)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
%description
|
||||||
|
KCharSelect is a tool to select special characters from all installed
|
||||||
|
fonts and copy them into the clipboard.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_kf6_bindir}/%{name}
|
||||||
|
%{_kf6_datadir}/applications/org.kde.kcharselect.desktop
|
||||||
|
%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 24.05.2-3
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 18 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 27 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Thu Oct 21 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Mon Apr 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 6 15:07:02 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Wed Jun 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Mon Dec 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Fri Apr 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Thu Nov 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Fri Sep 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Sat Jun 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Fri Jan 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 22 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-1
|
||||||
|
- 15.12.1
|
||||||
|
|
||||||
|
* Sun Dec 20 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||||
|
- 15.04.2
|
||||||
|
|
||||||
|
* Thu May 28 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||||
|
- 15.04.1
|
||||||
|
|
||||||
|
* Fri Apr 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||||
|
- 15.04.0
|
||||||
|
|
||||||
|
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||||
|
- 14.12.3
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Than Ngo <than@redhat.com> - 14.12.2-1
|
||||||
|
- 14.12.2
|
||||||
|
|
||||||
|
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||||
|
- 14.12.1
|
||||||
|
|
||||||
|
* Sun Nov 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Tue Jul 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Fri Apr 04 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sun Mar 23 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- 4.12.95
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||||
|
- 4.12.90
|
||||||
|
|
||||||
|
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||||
|
- 4.12.3
|
||||||
|
|
||||||
|
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||||
|
- 4.12.2
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||||
|
- 4.12.1
|
||||||
|
|
||||||
|
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||||
|
- 4.12.0
|
||||||
|
|
||||||
|
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||||
|
- 4.11.97
|
||||||
|
|
||||||
|
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||||
|
- 4.11.95
|
||||||
|
|
||||||
|
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||||
|
- 4.11.90
|
||||||
|
|
||||||
|
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||||
|
- 4.11.2
|
||||||
|
|
||||||
|
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Thu Aug 08 2013 Than Ngo <than@redhat.com> - 4.11.0-1
|
||||||
|
- 4.11.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.97-1
|
||||||
|
- 4.10.97
|
||||||
|
|
||||||
|
* Tue Jul 23 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.95-1
|
||||||
|
- 4.10.95
|
||||||
|
|
||||||
|
* Fri Jun 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||||
|
- 4.10.90
|
||||||
|
|
||||||
|
* Sat Jun 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.4-1
|
||||||
|
- 4.10.4
|
||||||
|
|
||||||
|
* Mon May 06 2013 Than Ngo <than@redhat.com> - 4.10.3-1
|
||||||
|
- 4.10.3
|
||||||
|
|
||||||
|
* Sun Mar 31 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.2-1
|
||||||
|
- 4.10.2
|
||||||
|
|
||||||
|
* Sat Mar 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-1
|
||||||
|
- 4.10.1
|
||||||
|
|
||||||
|
* Fri Feb 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.0-1
|
||||||
|
- 4.10.0
|
||||||
|
|
||||||
|
* Tue Jan 22 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.98-1
|
||||||
|
- 4.9.98
|
||||||
|
|
||||||
|
* Fri Jan 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.9.97-1
|
||||||
|
- 4.9.97
|
||||||
|
|
||||||
|
* Thu Dec 20 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.95-1
|
||||||
|
- 4.9.95
|
||||||
|
|
||||||
|
* Tue Dec 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.90-1
|
||||||
|
- 4.9.90
|
||||||
|
|
||||||
|
* Mon Dec 03 2012 Than Ngo <than@redhat.com> - 4.9.4-1
|
||||||
|
- 4.9.4
|
||||||
|
|
||||||
|
* Sat Nov 03 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.3-1
|
||||||
|
- 4.9.3
|
||||||
|
|
||||||
|
* Sat Sep 29 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.9.2-1
|
||||||
|
- 4.9.2
|
||||||
|
|
||||||
|
* Mon Sep 03 2012 Than Ngo <than@redhat.com> - 4.9.1-1
|
||||||
|
- 4.9.1
|
||||||
|
|
||||||
|
* Thu Jul 26 2012 Lukas Tinkl <ltinkl@redhat.com> - 4.9.0-1
|
||||||
|
- 4.9.0
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.97-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 12 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.97-1
|
||||||
|
- 4.8.97
|
||||||
|
|
||||||
|
* Wed Jun 27 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.95-1
|
||||||
|
- 4.8.95
|
||||||
|
|
||||||
|
* Sat Jun 09 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.90-1
|
||||||
|
- 4.8.90
|
||||||
|
|
||||||
|
* Tue Jun 05 2012 Rex Dieter <rdieter@fedoraproject.org> 4.8.80-2
|
||||||
|
- fix %%_kde_version macro usage
|
||||||
|
|
||||||
|
* Fri Jun 01 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.80-1
|
||||||
|
- 4.8.80
|
||||||
|
|
||||||
|
* Mon Apr 30 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.3-1
|
||||||
|
- 4.8.3
|
||||||
|
|
||||||
|
* Fri Mar 30 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.2-1
|
||||||
|
- 4.8.2
|
||||||
|
|
||||||
|
* Mon Mar 05 2012 Jaroslav Reznik <jreznik@redhat.com> - 4.8.1-1
|
||||||
|
- 4.8.1
|
||||||
|
|
||||||
|
* Sun Jan 22 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.8.0-1
|
||||||
|
- 4.8.0
|
||||||
|
|
||||||
|
* Wed Jan 04 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.7.97-1
|
||||||
|
- 4.7.97
|
||||||
|
|
||||||
|
* Thu Dec 22 2011 Radek Novacek <rnovacek@redhat.com> - 4.7.95-1
|
||||||
|
- 4.7.95
|
||||||
|
|
||||||
|
* Thu Dec 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.90-1
|
||||||
|
- 4.7.90
|
||||||
|
|
||||||
|
* Sat Nov 26 2011 Rex Dieter <rdieter@fedoraproject.org> 4.7.80-1
|
||||||
|
- first try
|
||||||
|
|
||||||
495
kdialog/kdialog.spec
Normal file
495
kdialog/kdialog.spec
Normal file
|
|
@ -0,0 +1,495 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: kdialog
|
||||||
|
Summary: Nice dialog boxes from shell scripts
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Automatically converted from old format: GPLv2+ and GFDL - review is highly recommended.
|
||||||
|
License: GPL-2.0-or-later AND LicenseRef-Callaway-GFDL
|
||||||
|
URL: https://www.kde.org/
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6TextWidgets)
|
||||||
|
BuildRequires: cmake(KF6Notifications)
|
||||||
|
BuildRequires: cmake(KF6GuiAddons)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
|
||||||
|
%description
|
||||||
|
KDialog can be used to show nice dialog boxes from shell scripts.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --with-html --with-man
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING*
|
||||||
|
%{_kf6_bindir}/kdialog
|
||||||
|
%{_kf6_bindir}/kdialog_progress_helper
|
||||||
|
%{_kf6_datadir}/dbus-1/interfaces/org.kde.kdialog.ProgressDialog.xml
|
||||||
|
%{_kf6_datadir}/applications/org.kde.kdialog.desktop
|
||||||
|
%{_kf6_metainfodir}/org.kde.kdialog.metainfo.xml
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Mon Sep 02 2024 Miroslav Suchý <msuchy@redhat.com> - 24.08.0-2
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.1-1
|
||||||
|
- 21.08.1
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||||
|
- 21.08.0
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 14:19:56 CST 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||||
|
- 20.12.1
|
||||||
|
|
||||||
|
* Wed Nov 4 13:55:40 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Mon Aug 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-3
|
||||||
|
- .spec cosmetics
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.0-1
|
||||||
|
- 19.08.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.0-1
|
||||||
|
- 18.08.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Sun Aug 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-2
|
||||||
|
- cosmetics
|
||||||
|
|
||||||
|
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-1
|
||||||
|
- 17.08.0
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Tue Apr 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-1
|
||||||
|
- 17.04.0
|
||||||
|
|
||||||
|
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Sat Jan 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- import changelog, -Requires: kf5-filesystem
|
||||||
|
|
||||||
|
* Fri Jan 20 2017 Christian Dersch <lupinix@mailbox.org> - 16.12.1-0.1
|
||||||
|
- initial packaging effort
|
||||||
|
|
||||||
616
kdnssd/kdnssd.spec
Normal file
616
kdnssd/kdnssd.spec
Normal file
|
|
@ -0,0 +1,616 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
%global base_name kio-zeroconf
|
||||||
|
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kdnssd
|
||||||
|
Summary: KDE Network Monitor for DNS-SD services (Zeroconf)
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: GPL-2.0-or-later AND LGPL-2.0-only
|
||||||
|
URL: https://invent.kde.org/network/%{base_name}
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{base_name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
# new upstream name in 4.12.95
|
||||||
|
Provides: %{base_name} = %{version}-%{release}
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6DNSSD)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(avahi-compat-libdns_sd)
|
||||||
|
|
||||||
|
# when split occurred
|
||||||
|
Conflicts: kdenetwork-common < 7:4.10.80
|
||||||
|
Obsoletes: kdenetwork-kdnssd < 7:4.10.80
|
||||||
|
Conflicts: kdenetwork-common <= 22.04.3
|
||||||
|
Obsoletes: kdenetwork-kdnssd <= 22.04.3
|
||||||
|
Provides: kdenetwork-kdnssd = 7:%{version}-%{release}
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{base_name}-%{version} -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 -DBUILD_WITH_QT6=ON
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_kf6_plugindir}/kded/dnssdwatcher.so
|
||||||
|
%{_kf6_plugindir}/kio/zeroconf.so
|
||||||
|
%{_kf6_datadir}/dbus-1/interfaces/org.kde.kdnssd.xml
|
||||||
|
%dir %{_kf6_datadir}/remoteview/
|
||||||
|
%{_kf6_datadir}/remoteview/zeroconf.desktop
|
||||||
|
%{_kf6_metainfodir}/org.kde.kio_zeroconf.metainfo.xml
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sun Jan 07 2024 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Thu Apr 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Thu Dec 22 2022 Justin Zobel <justin@1707.io> - 22.12.0-1
|
||||||
|
- Update to 22.12.0 & package rename/obsolete https://community.kde.org/KDE_Gear/22.08_Release_notes
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 18 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 27 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Thu Oct 21 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Mon Apr 19 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 6 15:18:05 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Sat May 02 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 13 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Wed May 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sun Dec 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Mon Oct 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Thu Apr 19 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Thu Dec 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0, kf5-ized
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Thu Sep 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Tue Jan 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Wed Sep 07 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sun Jul 31 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-1
|
||||||
|
- 16.07.80
|
||||||
|
|
||||||
|
* Sat Jul 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-1
|
||||||
|
- 15.12.1
|
||||||
|
|
||||||
|
* Tue Dec 22 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Sat Dec 05 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-1
|
||||||
|
- 15.08.3
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||||
|
- 15.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||||
|
- 15.04.1
|
||||||
|
|
||||||
|
* Tue Apr 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||||
|
- 15.04.0
|
||||||
|
|
||||||
|
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||||
|
- 14.12.3
|
||||||
|
|
||||||
|
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||||
|
- 14.12.1
|
||||||
|
|
||||||
|
* Mon Dec 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 14.11.97-1
|
||||||
|
- 14.11.97
|
||||||
|
|
||||||
|
* Sat Nov 08 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 14 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Mon Jul 14 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Thu Apr 03 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sun Mar 23 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- zeroconf-ioslave-4.12.95
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||||
|
- 4.12.90
|
||||||
|
|
||||||
|
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||||
|
- 4.12.3
|
||||||
|
|
||||||
|
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||||
|
- 4.12.2
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||||
|
- 4.12.1
|
||||||
|
|
||||||
|
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||||
|
- 4.12.0
|
||||||
|
|
||||||
|
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||||
|
- 4.11.97
|
||||||
|
|
||||||
|
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||||
|
- 4.11.95
|
||||||
|
|
||||||
|
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||||
|
- 4.11.90
|
||||||
|
|
||||||
|
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||||
|
- 4.11.2
|
||||||
|
|
||||||
|
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Sun Aug 11 2013 Rex Dieter <rdieter@fedoraproject.org> 4.11.0-1
|
||||||
|
- 4.11.0
|
||||||
|
|
||||||
|
* Mon Aug 05 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.97-2
|
||||||
|
- fix Obsoletes/Provides to not self-obsolete
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.97-1
|
||||||
|
- 4.9.97
|
||||||
|
|
||||||
|
* Fri Jun 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||||
|
- 4.10.90
|
||||||
519
keditbookmarks/keditbookmarks.spec
Normal file
519
keditbookmarks/keditbookmarks.spec
Normal file
|
|
@ -0,0 +1,519 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: keditbookmarks
|
||||||
|
Summary: Bookmark organizer and editor
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Documentation is GFDL, rest GPLv2 and GPLv3 (note: NOT any later version)
|
||||||
|
# Automatically converted from old format: GPLv2 and GPLv3 and GFDL - review is highly recommended.
|
||||||
|
License: GPL-2.0-only AND GPL-3.0-only AND LicenseRef-Callaway-GFDL
|
||||||
|
URL: https://www.kde.org/
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6Bookmarks)
|
||||||
|
BuildRequires: cmake(KF6Codecs)
|
||||||
|
BuildRequires: cmake(KF6ConfigWidgets)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6IconThemes)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Parts)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description
|
||||||
|
keditbookmarks is a bookmark organizer and editor.
|
||||||
|
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Runtime libraries for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
%description libs
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html --with-man
|
||||||
|
|
||||||
|
## unpackaged files
|
||||||
|
rm -fv %{buildroot}%{_kf6_libdir}/libkbookmarkmodel_private.so
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING*
|
||||||
|
%{_kf6_bindir}/keditbookmarks
|
||||||
|
%{_kf6_bindir}/kbookmarkmerger
|
||||||
|
%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
%{_kf6_datadir}/config.kcfg/keditbookmarks.kcfg
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{name}*
|
||||||
|
%{_mandir}/man1/kbookmarkmerger.1*
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%{_kf6_libdir}/libkbookmarkmodel_private.so.*
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Mon Sep 02 2024 Miroslav Suchý <msuchy@redhat.com> - 24.08.0-2
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.1-1
|
||||||
|
- 21.08.1
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||||
|
- 21.08.0
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 14:19:34 CST 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||||
|
- 20.12.1
|
||||||
|
|
||||||
|
* Wed Nov 4 13:55:17 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.0-1
|
||||||
|
- 19.08.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.0-1
|
||||||
|
- 18.08.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Sun Aug 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-2
|
||||||
|
- cosmetics
|
||||||
|
|
||||||
|
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-1
|
||||||
|
- 17.08.0
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Sat Apr 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-2
|
||||||
|
- use %%find_lang for handbooks
|
||||||
|
|
||||||
|
* Tue Apr 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-1
|
||||||
|
- 17.04.0
|
||||||
|
|
||||||
|
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Sat Jan 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- import
|
||||||
|
|
||||||
|
* Fri Jan 20 2017 Christian Dersch <lupinix@mailbox.org> - 16.12.1-0.1
|
||||||
|
- initial packaging effort
|
||||||
503
kfind/kfind.spec
Normal file
503
kfind/kfind.spec
Normal file
|
|
@ -0,0 +1,503 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: kfind
|
||||||
|
Summary: KDE Find File Utility
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Documentation is GFDL, rest GPLv2+
|
||||||
|
# Automatically converted from old format: GPLv2+ and GFDL - review is highly recommended.
|
||||||
|
License: GPL-2.0-or-later AND LicenseRef-Callaway-GFDL
|
||||||
|
URL: https://www.kde.org/applications/utilities/kfind/
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6Archive)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6FileMetaData)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Concurrent)
|
||||||
|
BuildRequires: cmake(Qt6Core5Compat)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
|
||||||
|
%description
|
||||||
|
KFind allows you to search for directories and files.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --with-html --with-man
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kfind.*
|
||||||
|
%{_kf6_bindir}/%{name}
|
||||||
|
%{_kf6_metainfodir}/org.kde.%{name}.appdata.xml
|
||||||
|
%{_kf6_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
%{_kf6_datadir}/icons/hicolor/*/apps/kfind.*
|
||||||
|
%{_mandir}/man1/kfind.1*
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Mon Sep 02 2024 Miroslav Suchý <msuchy@redhat.com> - 24.08.0-2
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.1-1
|
||||||
|
- 21.08.1
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.0-1
|
||||||
|
- 21.08.0
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 14:19:13 CST 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.1-1
|
||||||
|
- 20.12.1
|
||||||
|
|
||||||
|
* Wed Nov 4 13:54:50 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.0-1
|
||||||
|
- 19.08.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.0-1
|
||||||
|
- 18.08.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 17.12.0-2
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.0-1
|
||||||
|
- 17.08.0
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Sat Apr 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-2
|
||||||
|
- use %%find_lang for handbooks
|
||||||
|
|
||||||
|
* Tue Apr 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.0-1
|
||||||
|
- 17.04.0
|
||||||
|
|
||||||
|
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Sat Jan 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- import
|
||||||
|
|
||||||
|
* Fri Jan 20 2017 Christian Dersch <lupinix@mailbox.org> - 16.12.1-0.1
|
||||||
|
- initial packaging effort
|
||||||
715
khelpcenter/khelpcenter.spec
Normal file
715
khelpcenter/khelpcenter.spec
Normal file
|
|
@ -0,0 +1,715 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: khelpcenter
|
||||||
|
Summary: Show documentation for KDE applications
|
||||||
|
# Override khelpcenter subpackage from kde-runtime-15.04 (no longer built)
|
||||||
|
Epoch: 1
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Automatically converted from old format: GPLv2 or GPLv3 - review is highly recommended.
|
||||||
|
License: GPL-2.0-only OR GPL-3.0-only
|
||||||
|
URL: https://invent.kde.org/system/%{name}
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6Xml)
|
||||||
|
BuildRequires: cmake(Qt6WebEngineWidgets)
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6Archive)
|
||||||
|
BuildRequires: cmake(KF6Bookmarks)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6ConfigWidgets)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6Completion)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6Service)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6TextTemplate)
|
||||||
|
|
||||||
|
BuildRequires: libxml2-devel
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: xapian-core-devel
|
||||||
|
|
||||||
|
# handled by qt6-srpm-macros, which defines %%qt6_qtwebengine_arches
|
||||||
|
# Package doesn't build on arches that qtwebengine is not built on.
|
||||||
|
ExclusiveArch: %{qt6_qtwebengine_arches}
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
# Provide khelpcenter service for KDE 3/4/5 applications
|
||||||
|
install -D -m0644 -t %{buildroot}%{_datadir}/services/ khelpcenter.desktop
|
||||||
|
install -D -m0644 -t %{buildroot}%{_datadir}/kde4/services/ khelpcenter.desktop
|
||||||
|
install -D -m0644 -t %{buildroot}%{_datadir}/kservices5/ khelpcenter.desktop
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.%{name}.metainfo.xml
|
||||||
|
## currently fails on all RHEL releases
|
||||||
|
# RHEL8: https://bugzilla.redhat.com/show_bug.cgi?id=2107277
|
||||||
|
# RHEL9: https://bugzilla.redhat.com/show_bug.cgi?id=2107278
|
||||||
|
%if !0%{?rhel}
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%doc README.metadata
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/%{name}.*
|
||||||
|
%{_libexecdir}/khc_mansearch.py
|
||||||
|
%{_libexecdir}/khc_xapianindexer
|
||||||
|
%{_libexecdir}/khc_xapiansearch
|
||||||
|
%{_kf6_datadir}/%{name}/
|
||||||
|
%{_kf6_metainfodir}/org.kde.%{name}.metainfo.xml
|
||||||
|
%{_datadir}/applications/org.kde.%{name}.desktop
|
||||||
|
%{_datadir}/config.kcfg/%{name}.kcfg
|
||||||
|
%{_datadir}/dbus-1/services/org.kde.%{name}.service
|
||||||
|
%{_datadir}/kservices5/%{name}.desktop
|
||||||
|
%{_datadir}/services/%{name}.desktop
|
||||||
|
%{_datadir}/kde4/services/%{name}.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 1:26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 1:26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 1:26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 1:26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 1:26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 1:25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 1:25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 1:25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1:25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 1:25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 1:25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 1:25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 1:25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 1:25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 1:25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 1:25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 1:25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 1:25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 1:25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 1:25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 1:25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 1:25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 1:25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 1:25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 1:24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 1:24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 1:24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1:24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 1:24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 1:24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Fri Oct 11 2024 Timothée Ravier <tim@siosm.fr> - 1:24.08.2-2
|
||||||
|
- Backport Perl->Python manpage search conversion
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 1:24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 1:24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 1:24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Wed Aug 07 2024 Miroslav Suchý <msuchy@redhat.com> - 1:24.05.2-3
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Thu Apr 11 2024 Adam Williamson <awilliam@redhat.com> - 24.02.1-3
|
||||||
|
- Backport better fix for subpage opening (#2271837)
|
||||||
|
|
||||||
|
* Sat Apr 06 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.02.1-2
|
||||||
|
- Backport fix to open subpages
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 1:24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 1:24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 1:24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Wed Mar 22 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Wed Mar 22 2023 Jan Grulich <jgrulich@redhat.com> - 1:22.12.3-2
|
||||||
|
- Rebuild (grantlee-qt5)
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 1:22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 1:22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 1:22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 07 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu Jun 23 2022 Than Ngo <than@redhat.com> - 22.04.2-1
|
||||||
|
- 22.04.2
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 1:21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Rex Dieter <rdieter@fedoraproject.org> - 1:21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 1:21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Sep 01 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.08.1-1
|
||||||
|
- 21.08.1
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.08.0-1
|
||||||
|
- 21.08.0
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Sat Apr 17 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Tue Mar 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:20.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 15 14:18:24 CST 2021 Rex Dieter <rdieter@fedoraproject.org> - 1:20.12.1-1
|
||||||
|
- 20.12.1
|
||||||
|
|
||||||
|
* Wed Nov 4 13:53:57 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Tue May 26 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Thu Apr 23 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 1:19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Mon Nov 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Sat Sep 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Tue Aug 13 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.08.0-1
|
||||||
|
- 19.08.0
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Tue May 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Thu Mar 07 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 1:18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Wed Aug 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.08.0-1
|
||||||
|
- 18.08.0
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Tue Jun 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Tue May 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Sat Apr 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Tue Feb 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 1:17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Tue Dec 12 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.08.0-1
|
||||||
|
- 17.08.0
|
||||||
|
|
||||||
|
* Fri Jul 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Thu May 25 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.1-3
|
||||||
|
- bump Conflicts
|
||||||
|
|
||||||
|
* Wed May 24 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.1-2
|
||||||
|
- Conflicts: kde-l10n < 17.04.1 (#1455328)
|
||||||
|
|
||||||
|
* Wed May 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Sat Apr 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.0-2
|
||||||
|
- use %%find_lang for handbooks
|
||||||
|
|
||||||
|
* Tue Apr 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:17.04.0-1
|
||||||
|
- 17.04.0
|
||||||
|
|
||||||
|
* Wed Mar 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Wed Feb 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Tue Jan 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 1:16.12.1-1
|
||||||
|
- 16.12.1
|
||||||
|
|
||||||
|
* Sat Dec 24 2016 Rex Dieter <rdieter@math.unl.edu> - 1:16.12.0-1
|
||||||
|
- 16.12.0
|
||||||
|
|
||||||
|
* Fri Dec 23 2016 Rex Dieter <rdieter@math.unl.edu> - 1:16.08.3-2
|
||||||
|
- rebuild (xapian)
|
||||||
|
|
||||||
|
* Wed Nov 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Tue Sep 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Fri Aug 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Fri Jul 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.07.80-1
|
||||||
|
- 16.07.80
|
||||||
|
|
||||||
|
* Fri Jul 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* 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> - 5.6.1-1
|
||||||
|
- Plasma 5.6.1
|
||||||
|
|
||||||
|
* Tue Mar 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.5.5-2
|
||||||
|
- .spec cosmetics, BR: grantlee-qt5-devel perl libxml2-devel xapian-core-devel
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Wed Jan 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 1:5.5.2-2
|
||||||
|
- .spec cosmetics, (re)enable all HTML docs
|
||||||
|
|
||||||
|
* 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-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 1:5.3.1-3
|
||||||
|
- (re)enable en-only HTML docs (others provided by kde-l10n)
|
||||||
|
- +%%{?kf5_kinit_requires},
|
||||||
|
- .spec cosmetics
|
||||||
|
|
||||||
|
* Fri May 29 2015 Daniel Vrátil <dvratil@redhat.com> - 1:5.3.1-2
|
||||||
|
- bump Epoch to override khelpcenter subpackage from kde-runtime-15.04
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Mon Jan 26 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.0-1
|
||||||
|
- Plasma 5.2.0
|
||||||
|
|
||||||
|
* Tue Jan 13 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.95-2.beta
|
||||||
|
- Updated tarball
|
||||||
|
|
||||||
|
* Mon Jan 12 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.95-1.beta
|
||||||
|
- Plasma 5.1.95 Beta
|
||||||
|
|
||||||
|
* Tue Jan 06 2015 Daniel Vrátil <dvratil@redhat.com> - 5.1.2-3
|
||||||
|
- better URL
|
||||||
|
- remove unnecessary scriptlets
|
||||||
|
- validate desktop files
|
||||||
|
- ship service files for KDE 3 and KDE 4
|
||||||
|
- fix license
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Wed Aug 06 2014 Daniel Vrátil <dvratil@redhat.com> - 5.0.0-2
|
||||||
|
- No longer obsoletes kde-runtime-khelpcenter
|
||||||
|
|
||||||
|
* 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.20140514git6bfae0d
|
||||||
|
- Intial snapshot
|
||||||
247
kio-admin/kio-admin.spec
Normal file
247
kio-admin/kio-admin.spec
Normal file
|
|
@ -0,0 +1,247 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kio-admin
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Manage files as administrator using the admin:// KIO protocol
|
||||||
|
License: (GPL-2.0-only or GPL-3.0-only) and BSD-3-Clause and CC0-1.0 and FSFAP
|
||||||
|
URL: https://invent.kde.org/system/kio-admin
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: zstd
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(PolkitQt6-1)
|
||||||
|
BuildRequires: libatomic
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
kio-admin implements a new protocol "admin:///"
|
||||||
|
which gives administrative access
|
||||||
|
to the entire system. This is achieved by talking,
|
||||||
|
over dbus, with a root-level
|
||||||
|
helper binary that in turn uses
|
||||||
|
existing KIO infrastructure to run file://
|
||||||
|
operations in root-scope.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 \
|
||||||
|
-DQT_MAJOR_VERSION=6
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang kio6_admin %{name}.lang
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_kf6_metainfodir}/org.kde.kio.admin.metainfo.xml
|
||||||
|
%dir %{_kf6_plugindir}/kfileitemaction/
|
||||||
|
%{_kf6_plugindir}/kfileitemaction/kio-admin.so
|
||||||
|
%dir %{_kf6_plugindir}/kio/
|
||||||
|
%{_kf6_plugindir}/kio/admin.so
|
||||||
|
%{_kf6_libexecdir}/kio-admin-helper
|
||||||
|
%{_kf6_datadir}/dbus-1/system.d/org.kde.kio.admin.conf
|
||||||
|
%{_kf6_datadir}/dbus-1/system-services/org.kde.kio.admin.service
|
||||||
|
%{_kf6_datadir}/polkit-1/actions/org.kde.kio.admin.policy
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Wed Jun 03 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sun Dec 31 2023 Marie Loise Nolden <loise@kde.org> - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Thu Apr 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Mon Jan 23 2023 Onuralp SEZER <thunderbirdtr@fedoraproject.org> - 1.0.0-1
|
||||||
|
- initial kio-admin package
|
||||||
436
kio-gdrive/kio-gdrive.spec
Normal file
436
kio-gdrive/kio-gdrive.spec
Normal file
|
|
@ -0,0 +1,436 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: kio-gdrive
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: An Google Drive KIO slave for KDE
|
||||||
|
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
URL: https://community.kde.org/KIO_GDrive
|
||||||
|
# use releaseme
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
|
||||||
|
# handled by qt6-srpm-macros, which defines %%qt6_qtwebengine_arches
|
||||||
|
# arch's where libkgapi is available (due to inderect dependencies on qtwebengine)
|
||||||
|
%{?qt6_qtwebengine_arches:ExclusiveArch: %{qt6_qtwebengine_arches}}
|
||||||
|
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Notifications)
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: cmake(KAccounts6)
|
||||||
|
BuildRequires: libkgapi-devel
|
||||||
|
BuildRequires: libaccounts-glib-devel
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
BuildRequires: intltool
|
||||||
|
BuildRequires: cmake(KF6Purpose)
|
||||||
|
Requires: kaccounts-providers
|
||||||
|
|
||||||
|
# QML SSO.OnlineAccounts
|
||||||
|
Requires: accounts-qml-module-qt6
|
||||||
|
|
||||||
|
%description
|
||||||
|
Provides KIO Access to Google Drive using the gdrive:/// protocol.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang kio6_gdrive --all-name --with-html
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/remoteview/*.desktop
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainfo.xml ||:
|
||||||
|
|
||||||
|
%files -f kio6_gdrive.lang
|
||||||
|
%license COPYING
|
||||||
|
%doc HACKING README.md
|
||||||
|
%{_qt6_plugindir}/kaccounts/daemonplugins/gdrive.so
|
||||||
|
%{_kf6_plugindir}/kfileitemaction/gdrivecontextmenuaction.so
|
||||||
|
%{_kf6_plugindir}/propertiesdialog/gdrivepropertiesplugin.so
|
||||||
|
%{_kf6_plugindir}/purpose/purpose_gdrive.so
|
||||||
|
%{_kf6_datadir}/accounts/services/kde/google-drive.service
|
||||||
|
%{_kf6_datadir}/knotifications6/gdrive.notifyrc
|
||||||
|
%{_kf6_datadir}/remoteview/gdrive-network.desktop
|
||||||
|
%{_kf6_datadir}/metainfo/org.kde.kio_gdrive.metainfo.xml
|
||||||
|
%{_kf6_qtplugindir}/kf6/kio/gdrive.so
|
||||||
|
%{_datadir}/purpose/purpose_gdrive_config.qml
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Wed Jun 03 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Tue Dec 26 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-2
|
||||||
|
- Depend on accounts-qml-module
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Thu Dec 7 2023 Steve Cossette <farchord@gmail.com> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Wed Apr 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-3
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Mon Apr 24 2023 Vasiliy N. Glazov <vascom2@gmail.com> - 23.04.0-2
|
||||||
|
- Fix license
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Sun Aug 21 2022 Vasiliy N. Glazov <vascom2@gmail.com> - 22.08.0-1
|
||||||
|
- Update to 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 18 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Tue May 24 2022 Vasiliy N. Glazov <vascom2@gmail.com> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Tue Apr 26 2022 Vasiliy N. Glazov <vascom2@gmail.com> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Thu Mar 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Vasiliy N. Glazov <vascom2@gmail.com> - 21.12.2-1
|
||||||
|
- Update to 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 11 2022 Vasiliy N. Glazov <vascom2@gmail.com> - 21.12.1-1
|
||||||
|
- Update to 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 13 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.12.0-1
|
||||||
|
- Update to 21.12.0
|
||||||
|
|
||||||
|
* Fri Sep 24 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.08.1-1
|
||||||
|
- Update to 21.08.1
|
||||||
|
|
||||||
|
* Mon Aug 23 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.08.0-1
|
||||||
|
- Update to 21.08.0
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 15 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.04.3-1
|
||||||
|
- Update to 21.04.3
|
||||||
|
|
||||||
|
* Fri Jun 11 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.04.2-1
|
||||||
|
- Update to 21.04.2
|
||||||
|
|
||||||
|
* Wed May 19 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.04.1-1
|
||||||
|
- Update to 21.04.1
|
||||||
|
|
||||||
|
* Thu Apr 22 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 21.04.0-1
|
||||||
|
- Update to 21.04.0
|
||||||
|
|
||||||
|
* Mon Mar 15 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 20.12.3-1
|
||||||
|
- Update to 20.12.3
|
||||||
|
|
||||||
|
* Mon Feb 22 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 20.12.2-1
|
||||||
|
- Update to 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 17 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 20.12.1-2
|
||||||
|
- Add kaccounts-providers to requires
|
||||||
|
|
||||||
|
* Sun Jan 10 2021 Vasiliy N. Glazov <vascom2@gmail.com> - 20.12.1-1
|
||||||
|
- Update to 20.12.1
|
||||||
|
|
||||||
|
* Fri Dec 11 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 20.12.0-1
|
||||||
|
- Update to 20.12.0
|
||||||
|
|
||||||
|
* Sat Nov 07 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 20.08.3-1
|
||||||
|
- Update to 20.08.3
|
||||||
|
|
||||||
|
* Wed Oct 21 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 20.08.2-1
|
||||||
|
- Update to 20.08.2
|
||||||
|
|
||||||
|
* Wed Sep 23 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 20.08.1-1
|
||||||
|
- Update to 20.08.1
|
||||||
|
|
||||||
|
* Thu Aug 20 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 20.08.0-1
|
||||||
|
- Update to 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-2
|
||||||
|
- rebuild (kaccounts)
|
||||||
|
|
||||||
|
* Mon May 25 2020 Vasiliy N. Glazov <vascom2@gmail.com> - 1.3.0-1
|
||||||
|
- Update to 1.3.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 08 2019 Vasiliy N. Glazov <vascom2@gmail.com> - 1.2.7-2
|
||||||
|
- Enable LTO
|
||||||
|
|
||||||
|
* Fri Sep 06 2019 Vasiliy N. Glazov <vascom2@gmail.com> - 1.2.7-1
|
||||||
|
- Update to 1.2.7
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 24 2019 Vasiliy N. Glazov <vascom2@gmail.com> 1.2.6-2
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Mon May 20 2019 Vasiliy N. Glazov <vascom2@gmail.com> 1.2.6-1
|
||||||
|
- Update to 1.2.6
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Oct 24 2018 Vasiliy N. Glazov <vascom2@gmail.com> 1.2.5-1
|
||||||
|
- Update to 1.2.5
|
||||||
|
|
||||||
|
* Mon Jul 16 2018 Vasiliy N. Glazov <vascom2@gmail.com> 1.2.4-1
|
||||||
|
- Update to 1.2.4
|
||||||
|
- Clean spec and BRs
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Oct 1 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.2.1-2
|
||||||
|
- Fix bogus date
|
||||||
|
|
||||||
|
* Sun Oct 1 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.2.1-1
|
||||||
|
- Build fixes
|
||||||
|
- Updated translations
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 22 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.2.0-1
|
||||||
|
- Integration with KAccounts
|
||||||
|
- Google Drive free space is now reported
|
||||||
|
|
||||||
|
* Wed May 17 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.1.2-2
|
||||||
|
- rebuild (libkgapi), use %%find_lang for HTML docs too
|
||||||
|
- ExclusiveArch: %%{?qt5_qtwebengine_arches}
|
||||||
|
|
||||||
|
* Mon May 15 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.1.2-1
|
||||||
|
- Updated translations - v1.1.2
|
||||||
|
* Fri Feb 17 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.1.1-1
|
||||||
|
- Fixed wrong write permissions in the top-level accounts folder - v1.1.1
|
||||||
|
* Sun Jan 29 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.1.0-1
|
||||||
|
- update version 1.1
|
||||||
|
* Sat Jan 28 2017 Wolnei Tomazelli Junior <wolnei@fedoraproject.org> - 1.0.5-2
|
||||||
|
- Initial version of the package
|
||||||
259
kjournald/kjournald.spec
Normal file
259
kjournald/kjournald.spec
Normal file
|
|
@ -0,0 +1,259 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kjournald
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Framework for interacting with systemd-journald
|
||||||
|
|
||||||
|
License: BSD-3-Clause and CC0-1.0 and MIT and LGPL-2.1-or-later and MIT
|
||||||
|
URL: https://invent.kde.org/system/%{name}
|
||||||
|
|
||||||
|
Source: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: systemd-devel
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Quick)
|
||||||
|
BuildRequires: cmake(Qt6QuickControls2)
|
||||||
|
BuildRequires: cmake(Qt6Test)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6Kirigami)
|
||||||
|
BuildRequires: cmake(KF6KirigamiAddons)
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
|
||||||
|
# QML module dependencies
|
||||||
|
Requires: kf6-kirigami%{?_isa}
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Library files for kjournald
|
||||||
|
%description libs
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
# Building on Qt 6.9.1 crashed the qml compiler. This is a (...temporary?) workaround.
|
||||||
|
%cmake_kf6 -DQT_QML_NO_CACHEGEN=ON
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang %{name} --with-kde --with-man --all-name
|
||||||
|
# unpackaged (headers not installed, no stable API)
|
||||||
|
rm -f %{buildroot}%{_kf6_libdir}/libkjournald.so
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}/%{_kf6_datadir}/applications/org.kde.kjournaldbrowser.desktop
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.kjournaldbrowser.appdata.xml
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%doc README.md
|
||||||
|
%{_kf6_bindir}/kjournaldbrowser
|
||||||
|
%{_kf6_datadir}/applications/org.kde.kjournaldbrowser.desktop
|
||||||
|
%{_kf6_metainfodir}/org.kde.kjournaldbrowser.appdata.xml
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kjournald.categories
|
||||||
|
%{_kf6_qmldir}/org/kde/kjournald/
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%{_kf6_libdir}/libkjournald.so.0
|
||||||
|
%{_kf6_libdir}/libkjournald.so.%{version}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Wed Jun 03 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 15 2025 Neal Gompa <ngompa@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Add patch to restore the libkjournal library
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Mon Nov 27 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 23 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-2
|
||||||
|
- Rebuild(extra-cmake-modules)
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Thu Jun 8 2023 Steve Cossette <farchord@gmail.com> - 23.04.2-1
|
||||||
|
- Initial release
|
||||||
517
kpmcore/kpmcore.spec
Normal file
517
kpmcore/kpmcore.spec
Normal file
|
|
@ -0,0 +1,517 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
%global kf6min 5.240.0
|
||||||
|
%global qt6min 6.5.0
|
||||||
|
%global sover 13
|
||||||
|
|
||||||
|
Name: kpmcore
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Library for managing partitions by KDE programs
|
||||||
|
License: GPL-3.0-or-later AND MIT AND CC-BY-4.0 AND CC0-1.0
|
||||||
|
URL: https://github.com/KDE/kpmcore
|
||||||
|
Source: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
|
||||||
|
BuildRequires: cmake >= 3.16
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Core) >= %{qt6min}
|
||||||
|
BuildRequires: cmake(Qt6DBus) >= %{qt6min}
|
||||||
|
BuildRequires: cmake(Qt6Gui) >= %{qt6min}
|
||||||
|
BuildRequires: cmake(Qt6Widgets) >= %{qt6min}
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6CoreAddons) >= %{kf6min}
|
||||||
|
BuildRequires: cmake(KF6I18n) >= %{kf6min}
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons) >= %{kf6min}
|
||||||
|
|
||||||
|
BuildRequires: cmake(PolkitQt6-1)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: pkgconfig(blkid) >= 2.33.2
|
||||||
|
|
||||||
|
Requires: e2fsprogs
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
|
||||||
|
Recommends: dosfstools
|
||||||
|
Recommends: exfatprogs
|
||||||
|
Recommends: f2fs-tools
|
||||||
|
Recommends: fatresize
|
||||||
|
Recommends: hfsutils
|
||||||
|
Recommends: hfsplus-tools
|
||||||
|
Recommends: jfsutils
|
||||||
|
Recommends: nilfs-utils
|
||||||
|
Recommends: ocfs2-tools
|
||||||
|
Recommends: udftools
|
||||||
|
|
||||||
|
%description
|
||||||
|
KPMcore contains common code for managing partitions by KDE Partition Manager
|
||||||
|
and other KDE projects
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: cmake(Qt6Core) >= %{qt6min}
|
||||||
|
|
||||||
|
%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 %{name}
|
||||||
|
%find_lang %{name}._policy_
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang -f %{name}._policy_.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%doc README.md
|
||||||
|
%{_kf6_libdir}/libkpmcore.so.%{sover}
|
||||||
|
%{_kf6_libdir}/libkpmcore.so.%{version}
|
||||||
|
%{_kf6_qtplugindir}/kpmcore
|
||||||
|
%{_libexecdir}/kpmcore_externalcommand
|
||||||
|
%{_datadir}/dbus-1/system.d/org.kde.kpmcore.*.conf
|
||||||
|
%{_datadir}/dbus-1/system-services/org.kde.kpmcore.*.service
|
||||||
|
%{_datadir}/polkit-1/actions/org.kde.kpmcore.externalcommand.policy
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/%{name}/
|
||||||
|
%{_kf6_libdir}/cmake/KPMcore
|
||||||
|
%{_kf6_libdir}/libkpmcore.so
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Wed Jun 03 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Neal Gompa <ngompa@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Undo RPMAutoSpec conversion
|
||||||
|
|
||||||
|
* Sat Aug 09 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Sat Jul 26 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 14 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Thu Jun 05 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Mon Apr 28 2025 Mattia Verga <mattia.verga@proton.me> - 25.04.0-2
|
||||||
|
- Backport patch to fix reported crashes
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Sun Mar 23 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80
|
||||||
|
|
||||||
|
* Wed Mar 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Thu Feb 06 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Wed Nov 20 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Wed Nov 06 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Thu Sep 26 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Fri Aug 23 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Sat Jun 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Sun May 19 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Sat Apr 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Fri Feb 23 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Thu Feb 01 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 13 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Wed Dec 06 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Sun Oct 15 2023 Mattia Verga <mattia.verga@proton.me> - 23.08.2-2
|
||||||
|
- Use qt6/kf6 for Fedora >= 40
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sun May 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Sat Apr 08 2023 Mattia Verga <mattia.verga@proton.me> - 23.03.90-4
|
||||||
|
- Update min requirements in specfile and set unstable var
|
||||||
|
|
||||||
|
* Sat Apr 08 2023 Mattia Verga <mattia.verga@proton.me> - 23.03.90-3
|
||||||
|
- Update license tag to SPDX
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 27 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- feat: 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1 and remove extraneous changelog
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.0-2
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Sat Oct 15 2022 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- fix: update spec file
|
||||||
|
|
||||||
|
* Sat Oct 15 2022 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.08.1-2
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Sun Aug 21 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 18 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Sat May 14 2022 Mattia Verga <mattia.verga@protonmail.com> - 22.04.1-1
|
||||||
|
- Release stable version 22.04.1
|
||||||
|
|
||||||
|
* Sat Mar 19 2022 Mattia Verga <mattia.verga@protonmail.com> - 22.03.80-1
|
||||||
|
- Unstable version 22.03.80
|
||||||
|
|
||||||
|
* Thu Mar 03 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Mon Feb 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Mattia Verga <mattia.verga@protonmail.com> - 21.12.1-1
|
||||||
|
- Release stable version 21.12.1
|
||||||
|
|
||||||
|
* Thu Dec 16 2021 Mattia Verga <mattia.verga@protonmail.com> - 21.12.0-1
|
||||||
|
- Release stable version 21.12.0
|
||||||
|
|
||||||
|
* Mon Nov 15 2021 Mattia Verga <mattia.verga@protonmail.com> - 21.11.80-1
|
||||||
|
- Release development version 21.11.80
|
||||||
|
- Remove retired reiserfs-utils from Recommends
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Apr 25 2021 Mattia Verga <mattia.verga@protonmail.com> - 21.04.0-1
|
||||||
|
- Release stable version 21.04.0
|
||||||
|
- Bump soname number to 11
|
||||||
|
- Initial support for dosfstools
|
||||||
|
|
||||||
|
* Sat Mar 06 2021 Mattia Verga <mattia.verga@protonmail.com> - 20.12.3-1
|
||||||
|
- Release stable version 20.12.3
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.12.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Dec 13 2020 Mattia Verga <mattia.verga@protonmail.com> - 20.12.0-1
|
||||||
|
- Release stable version 20.12.0
|
||||||
|
|
||||||
|
* Sun Dec 06 2020 Mattia Verga <mattia.verga@protonmail.com> - 20.11.90-1
|
||||||
|
- Update to unstable release 20.11.90
|
||||||
|
|
||||||
|
* Tue Nov 17 2020 Mattia Verga <mattia.verga@protonmail.com> - 20.11.80-2
|
||||||
|
- Removed Kauth BuildRequires
|
||||||
|
|
||||||
|
* Sat Nov 14 2020 Mattia Verga <mattia.verga@protonmail.com> - 20.11.80-1
|
||||||
|
- Update to unstable release 20.11.80
|
||||||
|
- Move to KDE release-service versioning
|
||||||
|
|
||||||
|
* Sat Oct 17 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.2.0-1
|
||||||
|
- Update to stable release 4.2.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Feb 10 2020 Mattia Verga <mattia.verga@protonmail.com> - 4.1.0-1
|
||||||
|
- Update to stable release 4.1.0
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Oct 12 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.0.1-1
|
||||||
|
- Update to stable release 4.0.1
|
||||||
|
|
||||||
|
* Mon Aug 05 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.0.0-5
|
||||||
|
- Fix again %%files section
|
||||||
|
|
||||||
|
* Sun Aug 04 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.0.0-4
|
||||||
|
- Fix %%files section RHBZ#1735969
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 11 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.0.0-2
|
||||||
|
- Backport patch to fix partition restoring RHBZ#1639021
|
||||||
|
|
||||||
|
* Sun May 05 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.0.0-1
|
||||||
|
- Update to stable release 4.0.0
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 30 2018 Mattia Verga <mattia.verga@yandex.com> - 3.3.0-3
|
||||||
|
- Remove ldconfig scriptlets
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Dec 26 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.3.0-1
|
||||||
|
- Update to stable release 3.3.0
|
||||||
|
- Soname bump to libkpmcore.so.7
|
||||||
|
|
||||||
|
* Wed Nov 01 2017 Mattia Verga <mattia.verga@email.it> - 3.2.1-1
|
||||||
|
- Update to stable release 3.2.1
|
||||||
|
|
||||||
|
* Sun Oct 01 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.2.0-1
|
||||||
|
- Update to stable release 3.2.0
|
||||||
|
- Soname bump to libkpmcore.so.6
|
||||||
|
- Remove kf5-kio-devel dependency
|
||||||
|
- Add udftools as recommended package
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 06 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.1.2-1
|
||||||
|
- Update to stable release 3.1.2
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.1.0-1
|
||||||
|
- Update to stable release 3.1.0
|
||||||
|
- Soname bump to libkpmcore.so.5
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.0.3-1
|
||||||
|
- Update to stable release 3.0.3
|
||||||
|
|
||||||
|
* Sun Jan 15 2017 Kevin Kofler <Kevin@tigcc.ticalc.org> - 3.0.2-1
|
||||||
|
- Update to stable release 3.0.2 (additional bug fixes for Calamares)
|
||||||
|
|
||||||
|
* Sun Jan 01 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.0.1-1
|
||||||
|
- Update to stable release 3.0.1 to fix possible data loss
|
||||||
|
|
||||||
|
* Wed Dec 21 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.0.0-1
|
||||||
|
- Update to stable release 3.0.0
|
||||||
|
|
||||||
|
* Fri Nov 25 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.9.90-2
|
||||||
|
- Backport patch from upstream to fix Calamares bug CAL-416
|
||||||
|
|
||||||
|
* Wed Nov 9 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.9.90-1
|
||||||
|
- Update to unstable 2.9.90
|
||||||
|
- Soname bump to libkpmcore.so.4
|
||||||
|
- Add LVM support
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.2.1-1
|
||||||
|
- Update to stable 2.2.1
|
||||||
|
- Switch to hfsplus-tools
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.2.0-2
|
||||||
|
- Add weak dependencies to less used filesystem tools
|
||||||
|
|
||||||
|
* Sat Jun 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.2.0-1
|
||||||
|
- Update to stable 2.2.0
|
||||||
|
- Soname bump to libkpmcore.so.3
|
||||||
|
|
||||||
|
* Sun May 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.1.1-1
|
||||||
|
- Update to stable 2.1.1
|
||||||
|
|
||||||
|
* Sun Mar 13 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.1.0-1
|
||||||
|
- Update to stable 2.1.0
|
||||||
|
- Use pkgconfig for libparted
|
||||||
|
|
||||||
|
* Sun Feb 28 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.0.1-1
|
||||||
|
- Update to stable 2.0.1
|
||||||
|
- Use pkgconfig for libraries
|
||||||
|
- Alphabetically ordered BR
|
||||||
|
- Fix Provides and Obsoletes also for -devel package
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 16 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.0.0-2
|
||||||
|
- Rename from KPMcore to kpmcore
|
||||||
|
|
||||||
|
* Thu Jan 14 2016 Mattia Verga <mattia.verga@tiscali.it> - 2.0.0-1
|
||||||
|
- Update to stable 2.0.0
|
||||||
|
|
||||||
|
* Sun Nov 29 2015 Mattia Verga <mattia.verga@tiscali.it> - 1.9.50-5
|
||||||
|
- Fix package naming
|
||||||
|
|
||||||
|
* Sun Nov 29 2015 Mattia Verga <mattia.verga@tiscali.it> - 1.9.50-4
|
||||||
|
- Replace Obsoletes with Conflicts
|
||||||
|
|
||||||
|
* Wed Nov 25 2015 Mattia Verga <mattia.verga@tiscali.it> - 1.9.50-3
|
||||||
|
- Patch to fix soname versioning
|
||||||
|
|
||||||
|
* Mon Nov 23 2015 Mattia Verga <mattia.verga@tiscali.it> - 1.9.50-2
|
||||||
|
- Make a devel subpackage
|
||||||
|
|
||||||
|
* Sun Nov 22 2015 Mattia Verga <mattia.verga@tiscali.it> - 1.9.50-1
|
||||||
|
- Initial release
|
||||||
780
krfb/krfb.spec
Normal file
780
krfb/krfb.spec
Normal file
|
|
@ -0,0 +1,780 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: krfb
|
||||||
|
Summary: Desktop sharing
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
License: GPL-2.0-only AND LGPL-2.1-only AND GFDL-1.2-no-invariants-only
|
||||||
|
URL: https://apps.kde.org/krfb/
|
||||||
|
|
||||||
|
Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: hicolor-icon-theme
|
||||||
|
|
||||||
|
BuildRequires: cmake(PlasmaWaylandProtocols)
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6WaylandClient)
|
||||||
|
BuildRequires: qt6-qtbase-private-devel
|
||||||
|
BuildRequires: lzo-devel
|
||||||
|
BuildRequires: libpng-devel
|
||||||
|
BuildRequires: libgcrypt-devel
|
||||||
|
BuildRequires: openssl-devel
|
||||||
|
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6DNSSD)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6Notifications)
|
||||||
|
BuildRequires: cmake(KF6Wallet)
|
||||||
|
BuildRequires: cmake(KF6WidgetsAddons)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6StatusNotifierItem)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KPipeWire)
|
||||||
|
BuildRequires: cmake(KWayland)
|
||||||
|
|
||||||
|
BuildRequires: pipewire-devel
|
||||||
|
BuildRequires: pkgconfig(zlib)
|
||||||
|
BuildRequires: pkgconfig(libvncserver)
|
||||||
|
BuildRequires: pkgconfig(x11)
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
BuildRequires: pkgconfig(xcb-damage)
|
||||||
|
BuildRequires: pkgconfig(xcb-image)
|
||||||
|
BuildRequires: pkgconfig(xcb-render)
|
||||||
|
BuildRequires: pkgconfig(xcb-shape)
|
||||||
|
BuildRequires: pkgconfig(xcb-shm)
|
||||||
|
BuildRequires: pkgconfig(xcb-xfixes)
|
||||||
|
BuildRequires: pkgconfig(xdamage)
|
||||||
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig(xtst)
|
||||||
|
BuildRequires: libjpeg-devel
|
||||||
|
BuildRequires: libepoxy-devel
|
||||||
|
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
# when split occurred
|
||||||
|
Conflicts: kdenetwork-common < 7:4.10.80
|
||||||
|
Obsoletes: kdenetwork-krfb < 7:4.10.80
|
||||||
|
Provides: kdenetwork-krfb = 7:%{version}-%{release}
|
||||||
|
|
||||||
|
# translations moved here
|
||||||
|
Conflicts: kde-l10n < 17.03
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Runtime libraries for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Obsoletes: kdenetwork-krfb-libs < 7:4.10.80
|
||||||
|
Provides: kdenetwork-krfb-libs = 7:%{version}-%{release}
|
||||||
|
%description libs
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.krfb.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING*
|
||||||
|
%doc README AUTHORS
|
||||||
|
%{_kf6_bindir}/krfb
|
||||||
|
# package seperately? -- rdieter
|
||||||
|
%{_kf6_bindir}/krfb-virtualmonitor
|
||||||
|
%{_kf6_datadir}/krfb/
|
||||||
|
%{_kf6_datadir}/applications/org.kde.krfb.desktop
|
||||||
|
%{_kf6_datadir}/applications/org.kde.krfb.virtualmonitor.desktop
|
||||||
|
%{_kf6_metainfodir}/org.kde.krfb.appdata.xml
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/*categories
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/krfb.*
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%{_kf6_libdir}/libkrfbprivate.so.5*
|
||||||
|
%{_kf6_qtplugindir}/krfb/
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 26.04.3-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 26.04.2-2
|
||||||
|
- Rebuilt for openssl 4.0
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Thu Apr 16 2026 Jan Grulich <jgrulich@redhat.com> - 26.04.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Thu Oct 30 2025 Jan Grulich <jgrulich@redhat.com> - 25.08.2-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Tue Sep 30 2025 Jan Grulich <jgrulich@redhat.com> - 25.08.1-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Mon Apr 14 2025 Jan Grulich <jgrulich@redhat.com> - 25.04.0-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Tue Mar 25 2025 Jan Grulich <jgrulich@redhat.com> - 25.03.80-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Mon Oct 14 2024 Jan Grulich <jgrulich@redhat.com> - 24.08.2-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Thu May 23 2024 Alessandro Astone <ales.astone@gmail.com> - 24.05.0-2
|
||||||
|
- Respin tarball with stable release
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Tue Apr 30 2024 Than Ngo <than@redhat.com> - 24.02.2-2
|
||||||
|
- fixed bz#2270892 - backport fix, krfb asserts in PWFrameBuffer::cursorPosition
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Thu Apr 04 2024 Jan Grulich <jgrulich@redhat.com> - 24.02.1-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Fri Feb 16 2024 Jan Grulich <jgrulich@redhat.com> - 24.01.95-2
|
||||||
|
- Rebuild (qt6)
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Steve Cossette <farchord@gmail.com> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Mon Jan 01 2024 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-2
|
||||||
|
- Build against the kpipewire5 compat package
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Sun Nov 19 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.75-1
|
||||||
|
- 24.01.75
|
||||||
|
- Disable kpipewire integration until this is ported to Qt6
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 04 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 07 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- Update to 22.04.3
|
||||||
|
|
||||||
|
* Thu Jun 23 2022 Than Ngo <than@redhat.com> - 22.04.2-1
|
||||||
|
- Update to 22.04.2
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Tue May 03 2022 Than Ngo <than@redhat.com> - 22.04.0-1
|
||||||
|
- 22.04.0
|
||||||
|
|
||||||
|
* Fri Mar 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.3-2
|
||||||
|
- fix startup via menu (kde#451140, #2060441)
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 27 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Thu Oct 21 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Mon Apr 19 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 6 15:21:25 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Tue Aug 25 2020 Than Ngo <than@redhat.com> - 20.08.0-2
|
||||||
|
- add BR on zlib
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Mon Aug 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-4
|
||||||
|
- use new cmake macros
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Sat May 02 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.0-1
|
||||||
|
- 20.04.0
|
||||||
|
|
||||||
|
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 13 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Fri Aug 09 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-3
|
||||||
|
- +BR: pipewire-devel, -BR: python2
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Tue Jun 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Wed May 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.1-1
|
||||||
|
- 19.04.1
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Sun Dec 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Mon Oct 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-1
|
||||||
|
- 18.08.1
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Thu Apr 19 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Thu Mar 15 2018 Iryna Shcherbina <ishcherb@redhat.com> - 17.12.3-2
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 17.12.0-2
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Thu Dec 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Wed Oct 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.2-1
|
||||||
|
- 17.08.2
|
||||||
|
|
||||||
|
* Thu Sep 28 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Tue Feb 14 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-2
|
||||||
|
- rebuild (libvncserver)
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Tue Jan 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1, update URL, use %%autosetup
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Wed Sep 07 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sun Jul 31 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.80-1
|
||||||
|
- 16.07.80
|
||||||
|
|
||||||
|
* Sat Jul 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Thu Feb 18 2016 Than Ngo <than@redhat.com> - 15.12.2-2
|
||||||
|
- fix build failure with gcc6
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-2
|
||||||
|
- -BR: cmake
|
||||||
|
|
||||||
|
* Sun Jan 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.1-1
|
||||||
|
- 15.12.1
|
||||||
|
|
||||||
|
* Tue Dec 22 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.12.0-1
|
||||||
|
- 15.12.0, kf5-ize
|
||||||
|
|
||||||
|
* Sat Dec 05 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.3-1
|
||||||
|
- 15.08.3
|
||||||
|
|
||||||
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.2-1
|
||||||
|
- 15.04.2
|
||||||
|
|
||||||
|
* Thu May 28 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.1-1
|
||||||
|
- 15.04.1
|
||||||
|
|
||||||
|
* Sat Apr 18 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.0-1
|
||||||
|
- 15.04.0
|
||||||
|
|
||||||
|
* Sun Mar 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.3-1
|
||||||
|
- 14.12.3
|
||||||
|
|
||||||
|
* Tue Feb 24 2015 Than Ngo <than@redhat.com> - 14.12.2-1
|
||||||
|
- 14.12.2
|
||||||
|
|
||||||
|
* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> - 14.12.1-1
|
||||||
|
- 14.12.1
|
||||||
|
|
||||||
|
* Sun Nov 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.3-1
|
||||||
|
- 4.14.3
|
||||||
|
|
||||||
|
* Thu Oct 23 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.2-2
|
||||||
|
- fix %%description
|
||||||
|
|
||||||
|
* Sun Oct 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.2-1
|
||||||
|
- 4.14.2
|
||||||
|
|
||||||
|
* Thu Sep 25 2014 Rex Dieter <rdieter@fedoraproject.org> 4.14.1-1.1
|
||||||
|
- unbundle libvncserver for < f21 too
|
||||||
|
|
||||||
|
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
|
||||||
|
- 4.14.1
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.14.0-1
|
||||||
|
- 4.14.0
|
||||||
|
|
||||||
|
* Tue Aug 05 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.97-1
|
||||||
|
- 4.13.97
|
||||||
|
|
||||||
|
* Mon Aug 04 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.3-4
|
||||||
|
- fix system_libvncserver (f21+), else use system minilzo
|
||||||
|
|
||||||
|
* Mon Aug 04 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.3-3
|
||||||
|
- system libvncserver on f21+ only, update bundled lzo
|
||||||
|
|
||||||
|
* Sun Aug 03 2014 Rex Dieter <rdieter@fedoraproject.org> 4.13.3-2
|
||||||
|
- krfb: unbundle libvncserver (CVE-2014-4607, #655844)
|
||||||
|
|
||||||
|
* Tue Jul 15 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.3-1
|
||||||
|
- 4.13.3
|
||||||
|
|
||||||
|
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.2-1
|
||||||
|
- 4.13.2
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 11 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.1-1
|
||||||
|
- 4.13.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.13.0-1
|
||||||
|
- 4.13.0
|
||||||
|
|
||||||
|
* Fri Apr 04 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.97-1
|
||||||
|
- 4.12.97
|
||||||
|
|
||||||
|
* Sun Mar 23 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.95-1
|
||||||
|
- 4.12.95
|
||||||
|
|
||||||
|
* Wed Mar 19 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.90-1
|
||||||
|
- 4.12.90
|
||||||
|
|
||||||
|
* Sun Mar 02 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.3-1
|
||||||
|
- 4.12.3
|
||||||
|
|
||||||
|
* Fri Jan 31 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.2-1
|
||||||
|
- 4.12.2
|
||||||
|
|
||||||
|
* Fri Jan 10 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-1
|
||||||
|
- 4.12.1
|
||||||
|
|
||||||
|
* Thu Dec 19 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.12.0-1
|
||||||
|
- 4.12.0
|
||||||
|
|
||||||
|
* Sun Dec 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.97-1
|
||||||
|
- 4.11.97
|
||||||
|
|
||||||
|
* Thu Nov 21 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.95-1
|
||||||
|
- 4.11.95
|
||||||
|
|
||||||
|
* Sat Nov 16 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.90-1
|
||||||
|
- 4.11.90
|
||||||
|
|
||||||
|
* Sat Nov 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.3-1
|
||||||
|
- 4.11.3
|
||||||
|
|
||||||
|
* Sat Sep 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
|
||||||
|
- 4.11.2
|
||||||
|
|
||||||
|
* Wed Sep 04 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
|
||||||
|
- 4.11.1
|
||||||
|
|
||||||
|
* Thu Aug 22 2013 Rex Dieter <rdieter@fedoraproject.org> 4.11.0-2
|
||||||
|
- %%doc COPYING COPYING.DOC
|
||||||
|
|
||||||
|
* Sun Aug 11 2013 Rex Dieter <rdieter@fedoraproject.org> 4.11.0-1
|
||||||
|
- 4.11.0
|
||||||
|
|
||||||
|
* Tue Jul 30 2013 Rex Dieter <rdieter@fedoraproject.org> 4.10.97-1
|
||||||
|
- 4.10.97
|
||||||
|
|
||||||
|
* Fri Jun 28 2013 Rex Dieter <rdieter@fedoraproject.org> - 4.10.90-1
|
||||||
|
- 4.10.90
|
||||||
16
kwalletmanager5/kwalletmanager-15.12.1-defaults.patch
Normal file
16
kwalletmanager5/kwalletmanager-15.12.1-defaults.patch
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
diff -up kwalletmanager-15.12.1/src/konfigurator/konfigurator.cpp.defaults kwalletmanager-15.12.1/src/konfigurator/konfigurator.cpp
|
||||||
|
--- kwalletmanager-15.12.1/src/konfigurator/konfigurator.cpp.defaults 2016-01-07 16:07:00.000000000 -0600
|
||||||
|
+++ kwalletmanager-15.12.1/src/konfigurator/konfigurator.cpp 2016-01-21 13:56:20.437957588 -0600
|
||||||
|
@@ -347,10 +347,10 @@ void KWalletConfig::defaults()
|
||||||
|
{
|
||||||
|
_wcw->_enabled->setChecked(true);
|
||||||
|
_wcw->_openPrompt->setChecked(false);
|
||||||
|
- _wcw->_launchManager->setChecked(true);
|
||||||
|
+ _wcw->_launchManager->setChecked(false);
|
||||||
|
_wcw->_autocloseManager->setChecked(false);
|
||||||
|
_wcw->_screensaverLock->setChecked(false);
|
||||||
|
- _wcw->_autoclose->setChecked(true);
|
||||||
|
+ _wcw->_autoclose->setChecked(false);
|
||||||
|
_wcw->_closeIdle->setChecked(false);
|
||||||
|
_wcw->_idleTime->setValue(10);
|
||||||
|
_wcw->_defaultWallet->setCurrentIndex(0);
|
||||||
582
kwalletmanager5/kwalletmanager5.spec
Normal file
582
kwalletmanager5/kwalletmanager5.spec
Normal file
|
|
@ -0,0 +1,582 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%global base_name kwalletmanager
|
||||||
|
|
||||||
|
# replace kde4-based kwalletmanager
|
||||||
|
%global kwalletmanager 1
|
||||||
|
|
||||||
|
|
||||||
|
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||||
|
ExcludeArch: %{ix86}
|
||||||
|
|
||||||
|
Name: kwalletmanager5
|
||||||
|
Summary: Manage KDE passwords
|
||||||
|
Version: 26.04.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
|
||||||
|
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||||
|
License: GPL-2.0-or-later
|
||||||
|
URL: https://apps.kde.org/kwalletmanager5/
|
||||||
|
Source: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%{base_name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
# upstream patches
|
||||||
|
|
||||||
|
## upstreamable patches
|
||||||
|
# better/sane defaults (no autoclose mostly)
|
||||||
|
Patch1: kwalletmanager-15.12.1-defaults.patch
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: libappstream-glib
|
||||||
|
|
||||||
|
BuildRequires: cmake(Qt6Core)
|
||||||
|
BuildRequires: cmake(Qt6Gui)
|
||||||
|
BuildRequires: cmake(Qt6Widgets)
|
||||||
|
BuildRequires: cmake(Qt6DBus)
|
||||||
|
|
||||||
|
%if ! 0%{?flatpak}
|
||||||
|
BuildRequires: cmake(KF6Auth)
|
||||||
|
%endif
|
||||||
|
BuildRequires: cmake(KF6Archive)
|
||||||
|
BuildRequires: cmake(KF6Config)
|
||||||
|
BuildRequires: cmake(KF6ConfigWidgets)
|
||||||
|
BuildRequires: cmake(KF6CoreAddons)
|
||||||
|
BuildRequires: cmake(KF6DBusAddons)
|
||||||
|
BuildRequires: cmake(KF6DocTools)
|
||||||
|
BuildRequires: cmake(KF6I18n)
|
||||||
|
BuildRequires: cmake(KF6KCMUtils)
|
||||||
|
BuildRequires: cmake(KF6KIO)
|
||||||
|
BuildRequires: cmake(KF6Wallet)
|
||||||
|
BuildRequires: cmake(KF6WindowSystem)
|
||||||
|
BuildRequires: cmake(KF6XmlGui)
|
||||||
|
BuildRequires: cmake(KF6Crash)
|
||||||
|
BuildRequires: cmake(KF6StatusNotifierItem)
|
||||||
|
|
||||||
|
%if 0%{?kwalletmanager}
|
||||||
|
Obsoletes: kwalletmanager < 15.04.3-100
|
||||||
|
Provides: kwalletmanager = %{version}-%{release}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
KDE Wallet Manager is a tool to manage the passwords on your KDE system.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{base_name}-%{version} -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake_kf6 %{?flatpak:-DENABLE_KAUTH=OFF}
|
||||||
|
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%find_lang %{name} --all-name --with-html
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/org.kde.kwalletmanager.desktop
|
||||||
|
desktop-file-validate %{buildroot}%{_kf6_datadir}/applications/kwalletmanager5-kwalletd.desktop
|
||||||
|
appstream-util validate-relax --nonet %{buildroot}%{_kf6_metainfodir}/org.kde.kwalletmanager5.appdata.xml
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license LICENSES/*
|
||||||
|
%{_datadir}/dbus-1/services/org.kde.kwalletmanager.service
|
||||||
|
%{_kf6_bindir}/kwalletmanager5
|
||||||
|
%{_kf6_datadir}/applications/kwalletmanager5-kwalletd.desktop
|
||||||
|
%{_kf6_datadir}/applications/org.kde.kwalletmanager.desktop
|
||||||
|
%{_kf6_datadir}/icons/hicolor/*/actions/wallet-*
|
||||||
|
%{_kf6_datadir}/icons/hicolor/*/apps/kwalletmanager*.*
|
||||||
|
%{_kf6_datadir}/qlogging-categories6/kwalletmanager*
|
||||||
|
%{_kf6_metainfodir}/org.kde.kwalletmanager5.appdata.xml
|
||||||
|
%if ! 0%{?flatpak}
|
||||||
|
%{_datadir}/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service
|
||||||
|
%{_datadir}/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf
|
||||||
|
%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy
|
||||||
|
%{_kf6_libexecdir}/kauth/kcm_kwallet_helper5
|
||||||
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings_qwidgets/kcm_kwallet5.so
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jun 30 2026 Steve Cossette <farchord@gmail.com> - 26.04.3-1
|
||||||
|
- 26.04.3
|
||||||
|
|
||||||
|
* Tue Jun 02 2026 Steve Cossette <farchord@gmail.com> - 26.04.2-1
|
||||||
|
- 26.04.2
|
||||||
|
|
||||||
|
* Wed May 06 2026 Steve Cossette <farchord@gmail.com> - 26.04.1-1
|
||||||
|
- 26.04.1
|
||||||
|
|
||||||
|
* Sat Apr 11 2026 Steve Cossette <farchord@gmail.com> - 26.04.0-1
|
||||||
|
- 26.04.0
|
||||||
|
|
||||||
|
* Mon Mar 16 2026 Steve Cossette <farchord@gmail.com> - 26.03.80-1
|
||||||
|
- 26.03.80
|
||||||
|
|
||||||
|
* Sun Mar 08 2026 Steve Cossette <farchord@gmail.com> - 25.12.3-1
|
||||||
|
- 25.12.3
|
||||||
|
|
||||||
|
* Thu Feb 12 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-2
|
||||||
|
- Full Stack Rebuild (kio abi break)
|
||||||
|
|
||||||
|
* Wed Feb 04 2026 Steve Cossette <farchord@gmail.com> - 25.12.2-1
|
||||||
|
- 25.12.2
|
||||||
|
|
||||||
|
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 25.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 07 2026 farchord@gmail.com - 25.12.1-1
|
||||||
|
- 25.12.1
|
||||||
|
|
||||||
|
* Sat Dec 06 2025 Steve Cossette <farchord@gmail.com> - 25.12.0-1
|
||||||
|
- 25.12.0
|
||||||
|
|
||||||
|
* Fri Nov 28 2025 Steve Cossette <farchord@gmail.com> - 25.11.90-1
|
||||||
|
- 25.11.90
|
||||||
|
|
||||||
|
* Sat Nov 15 2025 Steve Cossette <farchord@gmail.com> - 25.11.80-1
|
||||||
|
- 25.11.80
|
||||||
|
|
||||||
|
* Tue Nov 04 2025 Steve Cossette <farchord@gmail.com> - 25.08.3-1
|
||||||
|
- 25.08.3
|
||||||
|
|
||||||
|
* Wed Oct 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.2-1
|
||||||
|
- 25.08.2
|
||||||
|
|
||||||
|
* Sun Sep 21 2025 Steve Cossette <farchord@gmail.com> - 25.08.1-1
|
||||||
|
- 25.08.1
|
||||||
|
|
||||||
|
* Sat Aug 16 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 25.08.0-2
|
||||||
|
- Drop i686 support (leaf package)
|
||||||
|
|
||||||
|
* Fri Aug 08 2025 Steve Cossette <farchord@gmail.com> - 25.08.0-1
|
||||||
|
- 25.08.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Steve Cossette <farchord@gmail.com> - 25.07.90-1
|
||||||
|
- 25.07.90
|
||||||
|
|
||||||
|
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 25.07.80-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 11 2025 Steve Cossette <farchord@gmail.com> - 25.07.80-1
|
||||||
|
- 25.07.80
|
||||||
|
|
||||||
|
* Thu Jul 03 2025 Steve Cossette <farchord@gmail.com> - 25.04.3-1
|
||||||
|
- 25.04.3
|
||||||
|
|
||||||
|
* Wed Jun 04 2025 Steve Cossette <farchord@gmail.com> - 25.04.2-1
|
||||||
|
- 25.04.2
|
||||||
|
|
||||||
|
* Wed May 14 2025 Steve Cossette <farchord@gmail.com> - 25.04.1-1
|
||||||
|
- 25.04.1
|
||||||
|
|
||||||
|
* Sat Apr 12 2025 Steve Cossette <farchord@gmail.com> - 25.04.0-1
|
||||||
|
- 25.04.0
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Steve Cossette <farchord@gmail.com> - 25.03.80-1
|
||||||
|
- 25.03.80 (Beta)
|
||||||
|
|
||||||
|
* Tue Mar 04 2025 Steve Cossette <farchord@gmail.com> - 24.12.3-1
|
||||||
|
- 24.12.3
|
||||||
|
|
||||||
|
* Fri Feb 21 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-2
|
||||||
|
- Rebuild for ppc64le enablement
|
||||||
|
|
||||||
|
* Wed Feb 05 2025 Steve Cossette <farchord@gmail.com> - 24.12.2-1
|
||||||
|
- 24.12.2
|
||||||
|
|
||||||
|
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 24.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2025 Steve Cossette <farchord@gmail.com> - 24.12.1-1
|
||||||
|
- 24.12.1
|
||||||
|
|
||||||
|
* Sat Dec 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.12.0-1
|
||||||
|
- 24.12.0
|
||||||
|
|
||||||
|
* Fri Nov 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.90-1
|
||||||
|
- 24.11.90
|
||||||
|
|
||||||
|
* Fri Nov 15 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.11.80-1
|
||||||
|
- 24.11.80
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Steve Cossette <farchord@gmail.com> - 24.08.3-1
|
||||||
|
- 24.08.3
|
||||||
|
|
||||||
|
* Tue Oct 08 2024 Steve Cossette <farchord@gmail.com> - 24.08.2-1
|
||||||
|
- 24.08.2
|
||||||
|
|
||||||
|
* Wed Sep 25 2024 Alessandro Astone <ales.astone@gmail.com> - 24.08.1-1
|
||||||
|
- 24.08.1
|
||||||
|
|
||||||
|
* Thu Aug 29 2024 Adam Williamson <awilliam@redhat.com> - 24.08.0-2
|
||||||
|
- Backport MR #50 to fix app launch from menus (#2308275)
|
||||||
|
|
||||||
|
* Thu Aug 22 2024 Steve Cossette <farchord@gmail.com> - 24.08.0-1
|
||||||
|
- 24.08.0
|
||||||
|
|
||||||
|
* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 24.05.2-3
|
||||||
|
- convert license to SPDX
|
||||||
|
|
||||||
|
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.05.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 07 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.2-1
|
||||||
|
- 24.05.2
|
||||||
|
|
||||||
|
* Fri Jun 14 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.1-1
|
||||||
|
- 24.05.1
|
||||||
|
|
||||||
|
* Fri May 17 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.05.0-1
|
||||||
|
- 24.05.0
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.2-1
|
||||||
|
- 24.02.2
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.1-1
|
||||||
|
- 24.02.1
|
||||||
|
|
||||||
|
* Wed Feb 21 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.02.0-1
|
||||||
|
- 24.02.0
|
||||||
|
|
||||||
|
* Wed Jan 31 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.95-1
|
||||||
|
- 24.01.95
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 24.01.90-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2024 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 24.01.90-1
|
||||||
|
- 24.01.90
|
||||||
|
|
||||||
|
* Sat Dec 23 2023 ales.astone@gmail.com - 24.01.85-1
|
||||||
|
- 24.01.85
|
||||||
|
|
||||||
|
* Wed Dec 06 2023 Yaakov Selkowitz <yselkowitz@fedoraproject.org> - 24.01.80-1
|
||||||
|
- 24.01.80
|
||||||
|
|
||||||
|
* Thu Oct 12 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.2-1
|
||||||
|
- 23.08.2
|
||||||
|
|
||||||
|
* Tue Oct 03 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-2
|
||||||
|
- Add patch from upstream
|
||||||
|
|
||||||
|
* Sat Sep 16 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.1-1
|
||||||
|
- 23.08.1
|
||||||
|
|
||||||
|
* Sat Aug 26 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.08.0-1
|
||||||
|
- 23.08.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 23.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 08 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.3-1
|
||||||
|
- 23.04.3
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.2-1
|
||||||
|
- 23.04.2
|
||||||
|
|
||||||
|
* Sat May 13 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.1-1
|
||||||
|
- 23.04.1
|
||||||
|
|
||||||
|
* Fri Apr 14 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.04.0-1
|
||||||
|
- 23.04.0
|
||||||
|
|
||||||
|
* Fri Mar 31 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.90-1
|
||||||
|
- 23.03.90
|
||||||
|
|
||||||
|
* Mon Mar 20 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 23.03.80-1
|
||||||
|
- 23.03.80
|
||||||
|
|
||||||
|
* Thu Mar 02 2023 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 22.12.3-1
|
||||||
|
- 22.12.3
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Marc Deop <marcdeop@fedoraproject.org> - 22.12.2-1
|
||||||
|
- 22.12.2
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 22.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 03 2023 Justin Zobel <justin@1707.io> - 22.12.1-1
|
||||||
|
- Update to 22.12.1
|
||||||
|
|
||||||
|
* Mon Dec 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.12.0-1
|
||||||
|
- 22.12.0
|
||||||
|
|
||||||
|
* Fri Nov 04 2022 Marc Deop i Argemí (Private) <marc@marcdeop.com> - 22.08.3-1
|
||||||
|
- 22.08.3
|
||||||
|
|
||||||
|
* Fri Oct 14 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.2-1
|
||||||
|
- 22.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.1-1
|
||||||
|
- 22.08.1
|
||||||
|
|
||||||
|
* Fri Aug 19 2022 Marc Deop <marcdeop@fedoraproject.org> - 22.08.0-1
|
||||||
|
- 22.08.0
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 22.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 11 2022 Than Ngo <than@redhat.com> - 22.04.3-1
|
||||||
|
- 22.04.3
|
||||||
|
|
||||||
|
* Thu May 12 2022 Justin Zobel <justin@1707.io> - 22.04.1-1
|
||||||
|
- Update to 22.04.1
|
||||||
|
|
||||||
|
* Mon May 09 2022 Justin Zobel <justin@1707.io> - 22.04.0-1
|
||||||
|
- Update to 22.04.0
|
||||||
|
|
||||||
|
* Wed Mar 02 2022 Marc Deop <marcdeop@fedoraproject.org> - 21.12.3-1
|
||||||
|
- 21.12.3
|
||||||
|
|
||||||
|
* Fri Feb 04 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.2-1
|
||||||
|
- 21.12.2
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 06 2022 Rex Dieter <rdieter@fedoraproject.org> - 21.12.1-1
|
||||||
|
- 21.12.1
|
||||||
|
|
||||||
|
* Mon Dec 27 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.12.0-1
|
||||||
|
- 21.12.0
|
||||||
|
|
||||||
|
* Tue Nov 02 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.3-1
|
||||||
|
- 21.08.3
|
||||||
|
|
||||||
|
* Thu Oct 21 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.08.2-1
|
||||||
|
- 21.08.2
|
||||||
|
|
||||||
|
* Wed Jul 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.3-1
|
||||||
|
- 21.04.3
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 10 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.2-1
|
||||||
|
- 21.04.2
|
||||||
|
|
||||||
|
* Tue May 11 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-1
|
||||||
|
- 21.04.1
|
||||||
|
|
||||||
|
* Mon Apr 26 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.0-1
|
||||||
|
- 21.04.0
|
||||||
|
- cleanup, update URL
|
||||||
|
|
||||||
|
* Wed Mar 03 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.3-1
|
||||||
|
- 20.12.3
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 Rex Dieter <rdieter@fedoraproject.org> - 20.12.2-1
|
||||||
|
- 20.12.2
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 6 15:10:24 CST 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.3-1
|
||||||
|
- 20.08.3
|
||||||
|
|
||||||
|
* Tue Sep 15 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.1-1
|
||||||
|
- 20.08.1
|
||||||
|
|
||||||
|
* Tue Aug 18 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.08.0-1
|
||||||
|
- 20.08.0
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.3-1
|
||||||
|
- 20.04.3
|
||||||
|
|
||||||
|
* Fri Jun 12 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.2-1
|
||||||
|
- 20.04.2
|
||||||
|
|
||||||
|
* Wed May 27 2020 Rex Dieter <rdieter@fedoraproject.org> - 20.04.1-1
|
||||||
|
- 20.04.1
|
||||||
|
|
||||||
|
* Sat Mar 07 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.3-1
|
||||||
|
- 19.12.3
|
||||||
|
|
||||||
|
* Tue Feb 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-1
|
||||||
|
- 19.12.2
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.1-1
|
||||||
|
- 19.12.1
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.08.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.3-1
|
||||||
|
- 19.08.3
|
||||||
|
|
||||||
|
* Thu Oct 17 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.2-1
|
||||||
|
- 19.08.2
|
||||||
|
|
||||||
|
* Fri Oct 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.08.1-1
|
||||||
|
- 19.08.1
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.04.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.3-1
|
||||||
|
- 19.04.3
|
||||||
|
|
||||||
|
* Wed Jun 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 19.04.2-1
|
||||||
|
- 19.04.2
|
||||||
|
|
||||||
|
* Fri Mar 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.3-1
|
||||||
|
- 18.12.3
|
||||||
|
|
||||||
|
* Tue Feb 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.2-1
|
||||||
|
- 18.12.2
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 08 2019 Rex Dieter <rdieter@fedoraproject.org> - 18.12.1-1
|
||||||
|
- 18.12.1
|
||||||
|
|
||||||
|
* Mon Dec 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.12.0-1
|
||||||
|
- 18.12.0
|
||||||
|
|
||||||
|
* Tue Nov 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.3-1
|
||||||
|
- 18.08.3
|
||||||
|
|
||||||
|
* Wed Oct 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.2-1
|
||||||
|
- 18.08.2
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
||||||
|
- 18.04.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.2-1
|
||||||
|
- 18.04.2
|
||||||
|
|
||||||
|
* Wed May 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.1-1
|
||||||
|
- 18.04.1
|
||||||
|
|
||||||
|
* Fri Apr 20 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.0-1
|
||||||
|
- 18.04.0
|
||||||
|
|
||||||
|
* Wed Mar 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-2
|
||||||
|
- Obsoletes: kwalletmanager (f28+)
|
||||||
|
- use %%make_build
|
||||||
|
- %%check: make .desktop validation fatal
|
||||||
|
|
||||||
|
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.3-1
|
||||||
|
- 17.12.3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.2-1
|
||||||
|
- 17.12.2
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 17.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 17.12.1-1
|
||||||
|
- 17.12.1
|
||||||
|
|
||||||
|
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 17.12.0-2
|
||||||
|
- Remove obsolete scriptlets
|
||||||
|
|
||||||
|
* Fri Dec 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.12.0-1
|
||||||
|
- 17.12.0
|
||||||
|
|
||||||
|
* Thu Nov 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.3-1
|
||||||
|
- 17.08.3
|
||||||
|
|
||||||
|
* Fri Sep 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.08.1-1
|
||||||
|
- 17.08.1
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.3-1
|
||||||
|
- 17.04.3
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 17.04.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 15 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.2-1
|
||||||
|
- 17.04.2
|
||||||
|
|
||||||
|
* Sat Jun 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 17.04.1-1
|
||||||
|
- 17.04.1
|
||||||
|
|
||||||
|
* Thu Mar 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.3-1
|
||||||
|
- 16.12.3
|
||||||
|
|
||||||
|
* Thu Feb 09 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.2-1
|
||||||
|
- 16.12.2
|
||||||
|
|
||||||
|
* Fri Jan 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 16.12.1-1
|
||||||
|
- 16.12.1
|
||||||
|
|
||||||
|
* Mon Dec 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.3-1
|
||||||
|
- 16.08.3
|
||||||
|
|
||||||
|
* Thu Oct 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.2-1
|
||||||
|
- 16.08.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.1-1
|
||||||
|
- 16.08.1
|
||||||
|
|
||||||
|
* Sat Aug 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.08.0-1
|
||||||
|
- 16.08.0
|
||||||
|
|
||||||
|
* Sat Aug 06 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.07.90-1
|
||||||
|
- 16.07.90
|
||||||
|
|
||||||
|
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-1
|
||||||
|
- 16.04.3
|
||||||
|
|
||||||
|
* Sun Jun 12 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.2-1
|
||||||
|
- 16.04.2
|
||||||
|
|
||||||
|
* Sun May 08 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.1-1
|
||||||
|
- 16.04.1
|
||||||
|
|
||||||
|
* Tue Apr 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-1
|
||||||
|
- 16.04.0
|
||||||
|
|
||||||
|
* Mon Apr 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-2
|
||||||
|
- update URL (#1325290)
|
||||||
|
|
||||||
|
* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.3-1
|
||||||
|
- 15.12.3
|
||||||
|
|
||||||
|
* Mon Feb 15 2016 Rex Dieter <rdieter@fedoraproject.org> - 15.12.2-1
|
||||||
|
- 15.12.2
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 15.12.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 21 2016 Rex Dieter <rdieter@fedoraproject.org> 15.12.1-1
|
||||||
|
- 15.12.1, better defaults
|
||||||
|
|
||||||
|
* Sun Dec 20 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.12.0-1
|
||||||
|
- 15.12.0
|
||||||
|
|
||||||
|
* Mon Nov 16 2015 Rex Dieter <rdieter@fedoraproject.org> 15.08.3-1
|
||||||
|
- 15.08.3, .spec cosmetics
|
||||||
|
|
||||||
|
* Wed Aug 26 2015 Daniel Vrátil <dvratil@redhat.com> - 15.08.0-1
|
||||||
|
- 15.08.0
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 15.04.0-3.20150501git
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 28 2015 Rex Dieter <rdieter@fedoraproject.org> 15.04.0-2.20150501git
|
||||||
|
- Add Comment= key to org.kde.kwalletmanager5.desktop
|
||||||
|
|
||||||
|
* Mon May 04 2015 Jan Grulich <jgrulich@redhat.com> - 15.04.0-1.20150501git
|
||||||
|
- 15.04.0 - git snapshot of frameworks branch
|
||||||
259
ocean-sound-theme/ocean-sound-theme.spec
Normal file
259
ocean-sound-theme/ocean-sound-theme.spec
Normal file
|
|
@ -0,0 +1,259 @@
|
||||||
|
%global debug_package %{nil}
|
||||||
|
Name: ocean-sound-theme
|
||||||
|
Summary: Ocean Sound Theme for Plasma
|
||||||
|
Version: 6.7.4
|
||||||
|
Release: 1%{?dist}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
License: CC0-1.0 AND BSD-2-Clause AND CC-BY-SA-4.0
|
||||||
|
URL: https://invent.kde.org/plasma/%{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
|
||||||
|
|
||||||
|
BuildRequires: sonic-frameworks-cmake-modules
|
||||||
|
BuildRequires: sonic-rpm-macros
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: cmake(Qt6)
|
||||||
|
BuildRequires: cmake(Qt6CoreTools)
|
||||||
|
|
||||||
|
Requires: kf6-filesystem
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{cmake_kf6}
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSES/*.txt
|
||||||
|
%{_datadir}/sounds/ocean/
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 31 2026 Anders da Silva Rytter Hansen <andersrh@users.noreply.github.com> - 6.7.4-1
|
||||||
|
- Built for SonicDE from Fedora EPEL 10.3
|
||||||
|
* Tue Jul 14 2026 Steve Cossette <farchord@gmail.com> - 6.7.3-1
|
||||||
|
- 6.7.3
|
||||||
|
|
||||||
|
* Wed Jul 01 2026 Steve Cossette <farchord@gmail.com> - 6.7.2-1
|
||||||
|
- 6.7.2
|
||||||
|
|
||||||
|
* Tue Jun 23 2026 Steve Cossette <farchord@gmail.com> - 6.7.1-1
|
||||||
|
- 6.7.1
|
||||||
|
|
||||||
|
* Thu Jun 11 2026 Steve Cossette <farchord@gmail.com> - 6.7.0-1
|
||||||
|
- 6.7.0
|
||||||
|
|
||||||
|
* Fri May 29 2026 Steve Cossette <farchord@gmail.com> - 6.6.91-1
|
||||||
|
- 6.6.91
|
||||||
|
|
||||||
|
* Sat May 16 2026 Steve Cossette <farchord@gmail.com> - 6.6.90-1
|
||||||
|
- 6.6.90
|
||||||
|
|
||||||
|
* Thu May 14 2026 Steve Cossette <farchord@gmail.com> - 6.6.5-1
|
||||||
|
- 6.6.5
|
||||||
|
|
||||||
|
* 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 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
|
||||||
|
|
||||||
|
* Wed Apr 02 2025 Marc Deop i Argemí <marcdeop@fedoraproject.org> - 6.3.4-1
|
||||||
|
- 6.3.4
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Sun Dec 03 2023 Justin Zobel <justin.zobel@gmail.com> - 5.90.0-1
|
||||||
|
- Update to 5.90.0
|
||||||
|
|
||||||
|
* Fri Nov 10 2023 Alessandro Astone <ales.astone@gmail.com> - 5.27.80-1
|
||||||
|
- 5.27.80
|
||||||
|
|
||||||
|
* Fri Sep 22 2023 Steve Cossette <farchord@gmail.com> - 5.27.80^20230706.180800.683acbb-1
|
||||||
|
- Initial build
|
||||||
Loading…
Add table
Add a link
Reference in a new issue