Compare commits
43 Commits
4.13.1-1ma
...
20.04.0-1m
Author | SHA1 | Date | |
---|---|---|---|
cf3f03d99e | |||
d16b8a78b8 | |||
230f47cfe6 | |||
79e6c25371 | |||
14c6a0d34c | |||
fe91050d5c | |||
905f6fafbb | |||
96b6c4e2f3 | |||
cbf3db19c2 | |||
7af097d958 | |||
d71225c477 | |||
68c93449d4 | |||
6443d8ec2e | |||
50bd863268 | |||
4615e2a1aa | |||
fc9cf7d4f5 | |||
58adc2dbd4 | |||
1cc8bc1bf7 | |||
d95d791f98 | |||
afc48d6a23 | |||
2658fe3bea | |||
5b227e660c | |||
45e8c860f5 | |||
8bbafab76f | |||
9fb6b73d08 | |||
a9d7721c61 | |||
48a7bc769d | |||
01b54705dc | |||
4c2bdc0678 | |||
50ece28916 | |||
70a1ac1d2d | |||
65259ca85c | |||
83272a45a2 | |||
7fed7e3e20 | |||
cd55bf0267 | |||
f6d79939e7 | |||
007ee6e278 | |||
ca0f37cc57 | |||
70e54b3acb | |||
284cee615b | |||
8a0011151a | |||
454845ea2f | |||
519b75a44e |
@ -1,5 +1,5 @@
|
||||
Name: kwalletmanager
|
||||
Version: 4.13.1
|
||||
Version: 20.04.0
|
||||
Release: 1mamba
|
||||
Summary: Wallet Management Tool
|
||||
Group: Graphical Desktop/Applications/Utilities
|
||||
@ -7,23 +7,45 @@ Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
||||
URL: http://www.kde.org
|
||||
Source: http://download.kde.org/stable/%{version}/src/kwalletmanager-%{version}.tar.xz
|
||||
Source: http://download.kde.org/stable/release-service/%{version}/src/kwalletmanager-%{version}.tar.xz
|
||||
License: GPL
|
||||
BuildRequires: cmake
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: kdelibs-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libqt4-devel
|
||||
BuildRequires: libkarchive-devel
|
||||
BuildRequires: libkauth-devel
|
||||
BuildRequires: libkbookmarks-devel
|
||||
BuildRequires: libkcmutils-devel
|
||||
BuildRequires: libkcodecs-devel
|
||||
BuildRequires: libkcompletion-devel
|
||||
BuildRequires: libkconfig-devel
|
||||
BuildRequires: libkconfigwidgets-devel
|
||||
BuildRequires: libkcoreaddons-devel
|
||||
BuildRequires: libkcrash-devel
|
||||
BuildRequires: libkdbusaddons-devel
|
||||
BuildRequires: libkdelibs4support-devel
|
||||
BuildRequires: libkguiaddons-devel
|
||||
BuildRequires: libki18n-devel
|
||||
BuildRequires: libkiconthemes-devel
|
||||
BuildRequires: libkio-devel
|
||||
BuildRequires: libkitemviews-devel
|
||||
BuildRequires: libkjobwidgets-devel
|
||||
BuildRequires: libknotifications-devel
|
||||
BuildRequires: libkparts-devel
|
||||
BuildRequires: libkservice-devel
|
||||
BuildRequires: libktextwidgets-devel
|
||||
BuildRequires: libkunitconversion-devel
|
||||
BuildRequires: libkwallet-devel
|
||||
BuildRequires: libkwidgetsaddons-devel
|
||||
BuildRequires: libkwindowsystem-devel
|
||||
BuildRequires: libkxmlgui-devel
|
||||
BuildRequires: libqt5-devel
|
||||
BuildRequires: libsolid-devel
|
||||
BuildRequires: libsonnet-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Requires: kde-workspace
|
||||
Provides: kwalletmanager4 = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Obsoletes: kwalletmanager4
|
||||
Provides: kwalletmanager = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Obsoletes: kwalletmanager
|
||||
Provides: kwallet
|
||||
Obsoletes: kwallet
|
||||
#Requires: kde-workspace
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
@ -35,58 +57,237 @@ KDE Wallet Management Tool.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake_kde4 -d build
|
||||
%cmake_kde5 -d build
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
mv %{buildroot}%{_kde4_sharedir}/polkit-1 %{buildroot}%{_datadir}
|
||||
%find_lang %{name}5_qt --with-qt --all-name || touch %{name}5_qt.lang
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post
|
||||
touch --no-create %{_kde4_icondir}/hicolor >/dev/null 2>&1
|
||||
touch --no-create %{_kde5_icondir}/hicolor >/dev/null 2>&1
|
||||
exit 0
|
||||
|
||||
%posttrans
|
||||
update-desktop-database -q >/dev/null 2>&1
|
||||
update-mime-database %{_kde4_mimedir} >/dev/null 2>&1
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor >/dev/null 2>&1
|
||||
update-mime-database %{_kde5_mimedir} >/dev/null 2>&1
|
||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor >/dev/null 2>&1
|
||||
exit 0
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ]; then
|
||||
update-desktop-database -q >/dev/null 2>&1
|
||||
update-mime-database %{_kde4_mimedir} >/dev/null 2>&1
|
||||
touch --no-create %{_kde4_icondir}/hicolor >/dev/null 2>&1
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor >/dev/null 2>&1
|
||||
update-mime-database %{_kde5_mimedir} >/dev/null 2>&1
|
||||
touch --no-create %{_kde5_icondir}/hicolor >/dev/null 2>&1
|
||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%files
|
||||
%files -f %{name}5_qt.lang
|
||||
%defattr(-,root,root)
|
||||
%{_sysconfdir}/dbus-1/system.d/org.kde.kcontrol.kcmkwallet.conf
|
||||
%{_kde4_bindir}/kwalletmanager
|
||||
%{_kde4_libdir}/kde4/kcm_kwallet.so
|
||||
%{_datadir}/dbus-1/system-services/org.kde.kcontrol.kcmkwallet.service
|
||||
%{_datadir}/polkit-1/actions/org.kde.kcontrol.kcmkwallet.policy
|
||||
%{_kde4_libexecdir}/kcm_kwallet_helper
|
||||
%{_kde4_xdgappsdir}/kwalletmanager-kwalletd.desktop
|
||||
%{_kde4_xdgappsdir}/kwalletmanager.desktop
|
||||
%{_kde4_datadir}/kwalletmanager/icons/hicolor/*/actions/folder_*.png
|
||||
#%{_kde4_datadir}/kwalletmanager/kwalleteditor.rc
|
||||
%{_kde4_datadir}/kwalletmanager/kwalletmanager.rc
|
||||
%doc %lang(en) %{_kde4_htmldir}/en/kwallet
|
||||
%{_kde4_icondir}/hicolor/*/apps/kwalletmanager*.png
|
||||
%{_kde4_servicesdir}/kwalletconfig.desktop
|
||||
%{_kde4_servicesdir}/kwalletmanager_show.desktop
|
||||
%{_bindir}/kwalletmanager5
|
||||
%{_libdir}/qt5/plugins/kcm_kwallet5.so
|
||||
%{_libexecdir}/kf5/kauth/kcm_kwallet_helper5
|
||||
%{_datadir}/applications/kwalletmanager5-kwalletd.desktop
|
||||
%{_datadir}/applications/org.kde.kwalletmanager5.desktop
|
||||
%{_datadir}/metainfo/org.kde.kwalletmanager5.appdata.xml
|
||||
%{_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
|
||||
%{_datadir}/qlogging-categories5/kwalletmanager.categories
|
||||
%dir %{_datadir}/doc/HTML/en/kwallet5
|
||||
%{_datadir}/doc/HTML/en/kwallet5/*
|
||||
%{_datadir}/icons/hicolor/*/apps/kwalletmanager.png
|
||||
%{_datadir}/icons/hicolor/*/apps/kwalletmanager2.png
|
||||
%{_datadir}/icons/hicolor/*/actions/*
|
||||
%{_datadir}/kservices5/kwalletconfig5.desktop
|
||||
%{_datadir}/kservices5/kwalletmanager5_show.desktop
|
||||
%{_datadir}/kxmlgui5/kwalletmanager5/kwalletmanager.rc
|
||||
%lang(ca) %{_datadir}/doc/HTML/ca/kwallet5
|
||||
%lang(de) %{_datadir}/doc/HTML/de/kwallet5
|
||||
%lang(es) %{_datadir}/doc/HTML/es/kwallet5
|
||||
%lang(it) %{_datadir}/doc/HTML/it/kwallet5
|
||||
%lang(nl) %{_datadir}/doc/HTML/nl/kwallet5
|
||||
%lang(pt) %{_datadir}/doc/HTML/pt/kwallet5
|
||||
%lang(pt_BR) %{_datadir}/doc/HTML/pt_BR/kwallet5
|
||||
%lang(ru) %{_datadir}/doc/HTML/ru/kwallet5
|
||||
%lang(sr) %{_datadir}/doc/HTML/sr/kwallet5
|
||||
%lang(sb) %{_datadir}/doc/HTML/sv/kwallet5
|
||||
%lang(uk) %{_datadir}/doc/HTML/uk/kwallet5
|
||||
%doc COPYING COPYING.LIB
|
||||
# %doc TODO
|
||||
|
||||
%changelog
|
||||
* Fri Apr 24 2020 Automatic Build System <autodist@mambasoft.it> 20.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 06 2020 Automatic Build System <autodist@mambasoft.it> 19.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 07 2020 Automatic Build System <autodist@mambasoft.it> 19.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 10 2020 Automatic Build System <autodist@mambasoft.it> 19.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Dec 30 2019 Automatic Build System <autodist@mambasoft.it> 19.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 08 2019 Automatic Build System <autodist@mambasoft.it> 19.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 11 2019 Automatic Build System <autodist@mambasoft.it> 19.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 10 2019 Automatic Build System <autodist@mambasoft.it> 19.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 02 2019 Automatic Build System <autodist@mambasoft.it> 19.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 14 2019 Automatic Build System <autodist@mambasoft.it> 19.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 07 2019 Automatic Build System <autodist@mambasoft.it> 19.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 11 2019 Automatic Build System <autodist@mambasoft.it> 19.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 19 2019 Automatic Build System <autodist@mambasoft.it> 19.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Mar 07 2019 Automatic Build System <autodist@mambasoft.it> 18.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Feb 09 2019 Automatic Build System <autodist@mambasoft.it> 18.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 11 2019 Automatic Build System <autodist@mambasoft.it> 18.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 18 2018 Automatic Build System <autodist@mambasoft.it> 18.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 12 2018 Automatic Build System <autodist@mambasoft.it> 18.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 12 2018 Automatic Build System <autodist@mambasoft.it> 18.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 07 2018 Automatic Build System <autodist@mambasoft.it> 18.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 22 2018 Automatic Build System <autodist@mambasoft.it> 18.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 13 2018 Automatic Build System <autodist@mambasoft.it> 18.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 08 2018 Automatic Build System <autodist@mambasoft.it> 18.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 10 2018 Automatic Build System <autodist@mambasoft.it> 18.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 22 2018 Automatic Build System <autodist@mambasoft.it> 18.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 09 2018 Automatic Build System <autodist@mambasoft.it> 17.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 09 2018 Automatic Build System <autodist@mambasoft.it> 17.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 11 2018 Automatic Build System <autodist@mambasoft.it> 17.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 21 2017 Automatic Build System <autodist@mambasoft.it> 17.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 10 2017 Automatic Build System <autodist@mambasoft.it> 17.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 12 2017 Automatic Build System <autodist@mambasoft.it> 17.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 08 2017 Automatic Build System <autodist@mambasoft.it> 17.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 25 2017 Automatic Build System <autodist@mambasoft.it> 17.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 06 2017 Automatic Build System <autodist@mambasoft.it> 17.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 10 2017 Automatic Build System <autodist@mambasoft.it> 16.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 10 2017 Automatic Build System <autodist@mambasoft.it> 16.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 13 2017 Automatic Build System <autodist@mambasoft.it> 16.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Dec 18 2016 Automatic Build System <autodist@mambasoft.it> 16.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 11 2016 Automatic Build System <autodist@mambasoft.it> 16.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 14 2016 Automatic Build System <autodist@mambasoft.it> 16.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 11 2016 Automatic Build System <autodist@mambasoft.it> 16.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 29 2016 Automatic Build System <autodist@mambasoft.it> 16.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 13 2016 Automatic Build System <autodist@mambasoft.it> 16.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 15 2016 Automatic Build System <autodist@mambasoft.it> 16.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 11 2016 Automatic Build System <autodist@mambasoft.it> 16.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 23 2016 Automatic Build System <autodist@mambasoft.it> 16.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Mar 16 2016 Automatic Build System <autodist@mambasoft.it> 15.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Feb 23 2016 Automatic Build System <autodist@mambasoft.it> 15.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Nov 20 2014 Automatic Build System <autodist@mambasoft.it> 4.14.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Oct 25 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 4.14.2-2mamba
|
||||
- remove obsolete to package name kwalletmanager itself
|
||||
|
||||
* Mon Oct 20 2014 Automatic Build System <autodist@mambasoft.it> 4.14.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 28 2014 Automatic Build System <autodist@mambasoft.it> 4.14.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 21 2014 Automatic Build System <autodist@mambasoft.it> 4.14.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 16 2014 Automatic Build System <autodist@mambasoft.it> 4.13.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 13 2014 Automatic Build System <autodist@mambasoft.it> 4.13.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 19 2014 Automatic Build System <autodist@mambasoft.it> 4.13.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user