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
|
||||
Loading…
Add table
Add a link
Reference in a new issue