Accepting request 686719 from KDE:Frameworks5
KDE Frameworks 5.56.0 OBS-URL: https://build.opensuse.org/request/show/686719 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kauth?expand=0&rev=69
This commit is contained in:
commit
5b8cbc38a1
@ -1,3 +1,6 @@
|
|||||||
|
libKF5AuthCore5
|
||||||
libKF5Auth5
|
libKF5Auth5
|
||||||
|
requires "libKF5AuthCore5-<targettype> = <version>"
|
||||||
kauth-devel
|
kauth-devel
|
||||||
|
requires "libKF5AuthCore5-<targettype> = <version>"
|
||||||
requires "libKF5Auth5-<targettype> = <version>"
|
requires "libKF5Auth5-<targettype> = <version>"
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ec8f6bc9486c82045e3190609c528fc09897f115f4397328235687bba6b8cbf0
|
|
||||||
size 84920
|
|
3
kauth-5.56.0.tar.xz
Normal file
3
kauth-5.56.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cbcca13064b112dff26d1f78b1e77c8ad263cb663aab6329bc6e0a6505f4613d
|
||||||
|
size 85156
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 10 20:15:35 UTC 2019 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 5.56.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/kde-frameworks-5.56.0.php
|
||||||
|
- Changes since 5.55.0:
|
||||||
|
* Tell people they should mostly be using KF5::AuthCore
|
||||||
|
* Namespace find_file result
|
||||||
|
* Compile our own helper against AuthCore and not Auth
|
||||||
|
* Fix Windows build [hopefully]
|
||||||
|
* Introduce KF5AuthCore
|
||||||
|
- Add a new subpackage for the KF5AuthCore5 library
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 15 09:25:42 UTC 2019 - alarrosa@suse.com
|
Fri Feb 15 09:25:42 UTC 2019 - alarrosa@suse.com
|
||||||
|
|
||||||
|
23
kauth.spec
23
kauth.spec
@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
|
|
||||||
%define lname libKF5Auth5
|
%define lname libKF5Auth5
|
||||||
%define _tar_path 5.55
|
%define _tar_path 5.56
|
||||||
# Full KF5 version (e.g. 5.33.0)
|
# Full KF5 version (e.g. 5.33.0)
|
||||||
%{!?_kf5_version: %global _kf5_version %{version}}
|
%{!?_kf5_version: %global _kf5_version %{version}}
|
||||||
# Last major and minor KF5 version (e.g. 5.33)
|
# Last major and minor KF5 version (e.g. 5.33)
|
||||||
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')}
|
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')}
|
||||||
%bcond_without lang
|
%bcond_without lang
|
||||||
Name: kauth
|
Name: kauth
|
||||||
Version: 5.55.0
|
Version: 5.56.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Framework which lets applications perform actions as a privileged user
|
Summary: Framework which lets applications perform actions as a privileged user
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
@ -47,9 +47,18 @@ BuildRequires: cmake(Qt5LinguistTools) >= 5.6.0
|
|||||||
%description
|
%description
|
||||||
KAuth is a framework to let applications perform actions as a privileged user.
|
KAuth is a framework to let applications perform actions as a privileged user.
|
||||||
|
|
||||||
|
%package -n libKF5AuthCore5
|
||||||
|
Summary: Framework which lets applications perform actions as a privileged user
|
||||||
|
Group: System/GUI/KDE
|
||||||
|
Recommends: %{lname}-lang = %{version}
|
||||||
|
|
||||||
|
%description -n libKF5AuthCore5
|
||||||
|
KAuth is a framework to let applications perform actions as a privileged user.
|
||||||
|
|
||||||
%package -n %{lname}
|
%package -n %{lname}
|
||||||
Summary: Framework which lets applications perform actions as a privileged user
|
Summary: Framework which lets applications perform actions as a privileged user
|
||||||
Group: System/GUI/KDE
|
Group: System/GUI/KDE
|
||||||
|
Requires: libKF5AuthCore5 = %{version}
|
||||||
Recommends: %{lname}-lang = %{version}
|
Recommends: %{lname}-lang = %{version}
|
||||||
Obsoletes: libKF5Auth4
|
Obsoletes: libKF5Auth4
|
||||||
|
|
||||||
@ -89,14 +98,14 @@ sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 5.9.0)/
|
|||||||
|
|
||||||
%post -n %{lname} -p /sbin/ldconfig
|
%post -n %{lname} -p /sbin/ldconfig
|
||||||
%postun -n %{lname} -p /sbin/ldconfig
|
%postun -n %{lname} -p /sbin/ldconfig
|
||||||
|
%post -n libKF5AuthCore5 -p /sbin/ldconfig
|
||||||
|
%postun -n libKF5AuthCore5 -p /sbin/ldconfig
|
||||||
|
|
||||||
%if %{with lang}
|
%if %{with lang}
|
||||||
%files -n %{lname}-lang -f %{name}5.lang
|
%files -n %{lname}-lang -f %{name}5.lang
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -n %{lname}
|
%files -n %{lname}
|
||||||
%license COPYING*
|
|
||||||
%doc README*
|
|
||||||
%{_kf5_libdir}/libKF5Auth.so.*
|
%{_kf5_libdir}/libKF5Auth.so.*
|
||||||
%{_kf5_plugindir}/
|
%{_kf5_plugindir}/
|
||||||
%dir %{_kf5_libdir}/libexec
|
%dir %{_kf5_libdir}/libexec
|
||||||
@ -104,8 +113,14 @@ sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 5.9.0)/
|
|||||||
%config %{_kf5_sysconfdir}/dbus-1/system.d/org.kde.kf5auth.conf
|
%config %{_kf5_sysconfdir}/dbus-1/system.d/org.kde.kf5auth.conf
|
||||||
%{_kf5_debugdir}/kauth.categories
|
%{_kf5_debugdir}/kauth.categories
|
||||||
|
|
||||||
|
%files -n libKF5AuthCore5
|
||||||
|
%license COPYING*
|
||||||
|
%doc README*
|
||||||
|
%{_kf5_libdir}/libKF5AuthCore.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_kf5_libdir}/libKF5Auth.so
|
%{_kf5_libdir}/libKF5Auth.so
|
||||||
|
%{_kf5_libdir}/libKF5AuthCore.so
|
||||||
%{_kf5_libdir}/cmake/KF5Auth/
|
%{_kf5_libdir}/cmake/KF5Auth/
|
||||||
%dir %{_kf5_includedir}/*/
|
%dir %{_kf5_includedir}/*/
|
||||||
%{_kf5_includedir}/*/
|
%{_kf5_includedir}/*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user