638 lines
18 KiB
RPMSpec
638 lines
18 KiB
RPMSpec
%bcond_with gcc
|
|
%bcond_without kf5
|
|
|
|
Name: kaccounts-integration
|
|
Version: 24.08.3
|
|
Release: 1%{?dist}
|
|
Summary: Small system to administer web accounts across the KDE desktop
|
|
License: CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later
|
|
URL: https://invent.kde.org/network/%{name}
|
|
|
|
Source0: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz
|
|
|
|
## upstream fixes
|
|
|
|
## upstreamable fixes
|
|
|
|
%if %{with gcc}
|
|
BuildRequires: gcc-toolset-14-gcc-c++
|
|
%else
|
|
BuildRequires: clang
|
|
%endif
|
|
|
|
BuildRequires: extra-cmake-modules
|
|
BuildRequires: kf6-rpm-macros
|
|
BuildRequires: kf6-kcmutils-devel
|
|
BuildRequires: kf6-kdeclarative-devel
|
|
BuildRequires: kf6-kio-devel
|
|
BuildRequires: kf6-ki18n-devel
|
|
BuildRequires: kf6-kwidgetsaddons-devel
|
|
BuildRequires: kf6-kcoreaddons-devel
|
|
BuildRequires: kf6-kiconthemes-devel
|
|
BuildRequires: kf6-kconfig-devel
|
|
BuildRequires: kf6-kwallet-devel
|
|
BuildRequires: kf6-kdbusaddons-devel
|
|
BuildRequires: cmake(QCoro6)
|
|
%if %{with kf5}
|
|
BuildRequires: kf5-rpm-macros
|
|
BuildRequires: kf5-kcmutils-devel
|
|
BuildRequires: kf5-kdeclarative-devel
|
|
BuildRequires: kf5-kio-devel
|
|
BuildRequires: kf5-ki18n-devel
|
|
BuildRequires: kf5-kwidgetsaddons-devel
|
|
BuildRequires: kf5-kcoreaddons-devel
|
|
BuildRequires: kf5-kiconthemes-devel
|
|
BuildRequires: kf5-kconfig-devel
|
|
BuildRequires: kf5-kwallet-devel
|
|
BuildRequires: kf5-kdbusaddons-devel
|
|
BuildRequires: cmake(QCoro5)
|
|
|
|
BuildRequires: pkgconfig(Qt5Gui)
|
|
BuildRequires: pkgconfig(Qt5Qml)
|
|
BuildRequires: qt5-qtbase-private-devel
|
|
|
|
BuildRequires: pkgconfig(accounts-qt5)
|
|
BuildRequires: cmake(SignOnQt5)
|
|
%endif
|
|
|
|
BuildRequires: pkgconfig(Qt6Gui)
|
|
BuildRequires: pkgconfig(Qt6Qml)
|
|
BuildRequires: qt6-qtbase-private-devel
|
|
|
|
BuildRequires: pkgconfig(accounts-qt6)
|
|
BuildRequires: pkgconfig(libaccounts-glib) >= 1.21
|
|
BuildRequires: cmake(SignOnQt6)
|
|
|
|
# For AutoReq cmake-filesystem
|
|
BuildRequires: cmake
|
|
|
|
%description
|
|
Small system to administer web accounts for the sites and services
|
|
across the KDE desktop.
|
|
|
|
%if %{with kf5}
|
|
%package qt5
|
|
Summary: qt5 runtime for %{name}
|
|
Obsoletes: kaccounts < 15.03
|
|
Provides: kaccounts = %{version}-%{release}
|
|
Obsoletes: kaccounts-integration < 24.01.75
|
|
Provides: kaccounts-integration = %{version}-%{release}
|
|
# translations moved here
|
|
Conflicts: kde-l10n < 17.03
|
|
|
|
%description qt5
|
|
Small system to administer web accounts for the sites and services
|
|
across the KDE desktop.
|
|
|
|
%package qt5-devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}-qt5%{?_isa} = %{version}-%{release}
|
|
Requires: cmake(Qt5Widgets)
|
|
Requires: cmake(KF5CoreAddons)
|
|
Requires: cmake(AccountsQt5)
|
|
Requires: cmake(SignOnQt5)
|
|
Requires: pkgconfig(libaccounts-glib)
|
|
Requires: intltool
|
|
Obsoletes: kaccounts-integration-devel < 24.01.75
|
|
|
|
%description qt5-devel
|
|
Headers, development libraries and documentation for %{name}.
|
|
%endif
|
|
|
|
%package qt6
|
|
Summary: qt6 runtime for %{name}
|
|
|
|
%description qt6
|
|
Small system to administer web accounts for the sites and services
|
|
across the KDE desktop.
|
|
|
|
%package qt6-devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}-qt6%{?_isa} = %{version}-%{release}
|
|
Requires: cmake(Qt6Widgets)
|
|
Requires: cmake(KF6CoreAddons)
|
|
Requires: cmake(AccountsQt6)
|
|
Requires: cmake(SignOnQt6)
|
|
Requires: pkgconfig(libaccounts-glib)
|
|
Requires: intltool
|
|
|
|
%description qt6-devel
|
|
Headers, development libraries and documentation for %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
|
|
%build
|
|
%if %{with gcc}
|
|
%enable_devtoolset14
|
|
export CC=gcc
|
|
export CXX=c++
|
|
%else
|
|
%global optflags %(echo %{optflags}) -Qunused-arguments
|
|
%endif
|
|
|
|
|
|
mkdir %{name}_qt6
|
|
pushd %{name}_qt6
|
|
%cmake_kf6 -S ..
|
|
%cmake_build
|
|
popd
|
|
|
|
%if %{with kf5}
|
|
mkdir %{name}_qt5
|
|
pushd %{name}_qt5
|
|
%cmake_kf5 -DKF6_COMPAT_BUILD=ON -S ..
|
|
%cmake_build
|
|
popd
|
|
%endif
|
|
|
|
%install
|
|
pushd %{name}_qt6
|
|
%cmake_install
|
|
popd
|
|
%find_lang %{name} --all-name --with-html
|
|
%if %{with kf5}
|
|
pushd %{name}_qt5
|
|
%cmake_install
|
|
popd
|
|
%endif
|
|
|
|
%files qt6 -f %{name}.lang
|
|
%doc README*
|
|
%license LICENSES/*
|
|
%{_kf6_datadir}/applications/kcm_kaccounts.desktop
|
|
%{_kf6_qtplugindir}/plasma/kcms/systemsettings/kcm_kaccounts.so
|
|
%{_kf6_plugindir}/kded/kded_accounts.so
|
|
%{_qt6_plugindir}/kaccounts/daemonplugins/kaccounts_kio_webdav_plugin.so
|
|
%{_kf6_libdir}/libkaccounts6.so.*
|
|
%{_kf6_qmldir}/org/kde/kaccounts/
|
|
%{_datadir}/qlogging-categories5/kaccounts.categories
|
|
%{_datadir}/qlogging-categories6/kaccounts.categories
|
|
|
|
%files qt6-devel
|
|
%{_kf6_libdir}/libkaccounts6.so
|
|
%{_kf6_libdir}/cmake/KAccounts6/
|
|
%{_includedir}/KAccounts6/
|
|
|
|
%if %{with kf5}
|
|
%files qt5 -f %{name}.lang
|
|
%doc README*
|
|
%license LICENSES/*
|
|
%{_kf5_libdir}/libkaccounts.so.*
|
|
%{_kf5_qmldir}/org/kde/kaccounts/
|
|
|
|
%files qt5-devel
|
|
%{_kf5_libdir}/libkaccounts.so
|
|
%{_kf5_libdir}/cmake/KAccounts/
|
|
%{_includedir}/KAccounts/
|
|
%endif
|
|
|
|
|
|
%changelog
|
|
* Thu Nov 7 2024 Raven <raven@sysadmins.ws> - 24.08.3-1
|
|
- 24.08.3
|
|
|
|
* Fri Oct 11 2024 Raven <raven@sysadmins.ws> - 24.08.2-1
|
|
- 24.08.2
|
|
|
|
* Fri Sep 13 2024 Raven <raven@sysadmins.ws> - 24.08.1-1
|
|
- 24.08.1
|
|
|
|
* Fri Aug 23 2024 Raven <raven@sysadmins.ws> - 24.08.0-1
|
|
- 24.08.0
|
|
|
|
* Wed Jul 10 2024 Raven <raven@sysadmins.ws> - 24.05.2-1
|
|
- 24.05.2
|
|
|
|
* Fri Jun 28 2024 Raven <raven@sysadmins.ws> - 24.05.1-4
|
|
- rebuild (libxkbcommon)
|
|
|
|
* Wed Jun 26 2024 Raven <raven@sysadmins.ws> - 24.05.1-3
|
|
- Rebuild (qt6)
|
|
|
|
* Mon Jun 3 2024 Raven <raven@sysadmins.ws> - 24.05.0-1
|
|
- 24.05.0
|
|
|
|
* Thu May 2 2024 Raven <raven@sysadmins.ws> - 24.02.2-1
|
|
- 24.02.2
|
|
|
|
* 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 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
|
|
|
|
* Tue Dec 26 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-2
|
|
- Use the correct libsignon-qt subpacakges
|
|
- Remove signon-oauth2-plugin and accounts-qml-module requirements
|
|
|
|
* Sat Dec 23 2023 Alessandro Astone <ales.astone@gmail.com> - 24.01.85-1
|
|
- 24.01.85
|
|
|
|
* Mon Dec 4 2023 Steve Cossette <farchord@gmail.com> - 24.01.80^20231204.133905.fe713c7-1
|
|
- Using a git commit to fix co-instability
|
|
|
|
* Sun Dec 3 2023 Steve Cossette <farchord@gmail.com> - 24.01.80-1
|
|
- 24.01.80
|
|
|
|
* Tue Nov 28 2023 Steve Cossette <farchord@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
|
|
|
|
* 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-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
* Tue Jul 19 2022 Than Ngo <than@redhat.com> - 22.04.3-3
|
|
- 22.04.3
|
|
|
|
* Thu Jul 14 2022 Jan Grulich <jgrulich@redhat.com> - 22.04.1-3
|
|
- Rebuild (qt5)
|
|
|
|
* Tue May 17 2022 Jan Grulich <jgrulich@redhat.com> - 22.04.1-2
|
|
- Rebuild (qt5)
|
|
|
|
* 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
|
|
|
|
* Tue Mar 08 2022 Jan Grulich <jgrulich@redhat.com> - 21.12.3-2
|
|
- Rebuild (qt5)
|
|
|
|
* 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
|
|
|
|
* Sat May 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 21.04.1-2
|
|
- -devel: Requires: intltool
|
|
|
|
* 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:16: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 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
|
|
|
|
* Fri Feb 14 2020 Mohan Boddu <mboddu@bhujji.com> - 19.12.2-3
|
|
- Fixing a typo of Requires: accounts-qml-module
|
|
|
|
* Thu Feb 13 2020 Rex Dieter <rdieter@fedoraproject.org> - 19.12.2-2
|
|
- Requires: accounts-qml-module (#1794594)
|
|
|
|
* 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
|
|
|
|
* Fri Oct 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.08.1-2
|
|
- devel: Requires: libaccounts-glib
|
|
|
|
* 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-3
|
|
- rebuild
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 18.04.3-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Fri Jul 13 2018 Rex Dieter <rdieter@fedoraproject.org> - 18.04.3-1
|
|
- 18.04.3
|
|
|
|
* 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-2
|
|
- cleanup, use %%ldconfig_scriptlets %%make_build
|
|
|
|
* 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
|
|
|
|
* 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
|
|
|
|
* Mon Aug 07 2017 Björn Esser <besser82@fedoraproject.org> - 17.04.3-2
|
|
- Rebuilt for AutoReq cmake-filesystem
|
|
|
|
* 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
|
|
|
|
* Fri Jul 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-3
|
|
- better/upstreamable KAccountsConfig fix
|
|
|
|
* Sun Jul 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.3-2
|
|
- fix KAccountsConfig to not make any assumptions about relative/full paths
|
|
- drop akonadi conditionals
|
|
|
|
* 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 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 16.04.0-2
|
|
- bump minimal build deps, track library soname
|
|
|
|
* Mon Apr 18 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
|
|
|
|
* Mon Dec 21 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, backport gtalk auth fix (#1288646,kde#354949)
|
|
|
|
* Wed Oct 14 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.2-1
|
|
- 15.08.2
|
|
|
|
* Mon Sep 28 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.08.1-1
|
|
- 15.08.1
|
|
- .spec cosmetics
|
|
|
|
* Thu Aug 20 2015 Than Ngo <than@redhat.com> - 15.08.0-1
|
|
- 15.08.0
|
|
|
|
* Mon Jun 29 2015 Rex Dieter <rdieter@fedoraproject.org> - 15.04.3-1
|
|
- 15.04.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
|
|
|
|
* Tue Mar 31 2015 Daniel Vrátil <dvratil@redhat.com> - 15.03.95-1
|
|
- update to latest beta
|
|
|
|
* Wed Mar 25 2015 Daniel Vrátil <dvratil@redhat.com> - 15.03.90-2
|
|
- fix license
|
|
- fix summary
|
|
- fix typos in changelog
|
|
- use %%license
|
|
|
|
* Tue Mar 17 2015 Daniel Vrátil <dvratil@redhat.com> - 15.03.90-1
|
|
- Initial version
|