2014-02-07 22:41:57 +01:00
|
|
|
#
|
|
|
|
# spec file for package kauth
|
|
|
|
#
|
2021-01-09 13:18:41 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2014-02-07 22:41:57 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-10-16 14:23:44 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2014-02-07 22:41:57 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2014-03-01 19:32:17 +01:00
|
|
|
%define lname libKF5Auth5
|
2023-04-08 16:35:43 +02:00
|
|
|
%define _tar_path 5.103
|
2017-09-13 12:16:54 +02:00
|
|
|
# Full KF5 version (e.g. 5.33.0)
|
|
|
|
%{!?_kf5_version: %global _kf5_version %{version}}
|
|
|
|
# Last major and minor KF5 version (e.g. 5.33)
|
2018-07-17 10:57:46 +02:00
|
|
|
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')}
|
2022-01-09 11:14:59 +01:00
|
|
|
%bcond_without released
|
2014-02-07 22:41:57 +01:00
|
|
|
Name: kauth
|
2023-09-10 10:28:32 +02:00
|
|
|
Version: 5.110.0
|
2014-02-07 22:41:57 +01:00
|
|
|
Release: 0
|
2018-08-20 14:58:34 +02:00
|
|
|
Summary: Framework which lets applications perform actions as a privileged user
|
|
|
|
License: LGPL-2.1-or-later
|
2018-10-16 14:23:44 +02:00
|
|
|
URL: https://www.kde.org
|
2021-11-12 13:20:49 +01:00
|
|
|
Source: %{name}-%{version}.tar.xz
|
2022-01-09 11:14:59 +01:00
|
|
|
%if %{with released}
|
2021-11-12 13:20:49 +01:00
|
|
|
Source1: %{name}-%{version}.tar.xz.sig
|
2019-08-11 23:06:58 +02:00
|
|
|
Source2: frameworks.keyring
|
|
|
|
%endif
|
2017-09-13 12:16:54 +02:00
|
|
|
BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version}
|
2014-02-07 22:41:57 +01:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: kf5-filesystem
|
2014-06-12 00:29:35 +02:00
|
|
|
BuildRequires: libpolkit-qt5-1-devel
|
2019-09-13 09:44:48 +02:00
|
|
|
BuildRequires: cmake(KF5CoreAddons) >= %{_kf5_bugfix_version}
|
2021-05-09 09:41:54 +02:00
|
|
|
BuildRequires: cmake(Qt5DBus) >= 5.15.0
|
|
|
|
BuildRequires: cmake(Qt5LinguistTools) >= 5.15.0
|
2022-10-08 19:27:48 +02:00
|
|
|
BuildRequires: cmake(Qt5Widgets) >= 5.15.0
|
2014-02-07 22:41:57 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
KAuth is a framework to let applications perform actions as a privileged user.
|
|
|
|
|
2019-03-17 18:01:29 +01:00
|
|
|
%package -n libKF5AuthCore5
|
|
|
|
Summary: Framework which lets applications perform actions as a privileged user
|
|
|
|
Recommends: %{lname}-lang = %{version}
|
|
|
|
|
|
|
|
%description -n libKF5AuthCore5
|
|
|
|
KAuth is a framework to let applications perform actions as a privileged user.
|
|
|
|
|
2018-08-20 14:58:34 +02:00
|
|
|
%package -n %{lname}
|
2014-02-07 22:41:57 +01:00
|
|
|
Summary: Framework which lets applications perform actions as a privileged user
|
2019-03-17 18:01:29 +01:00
|
|
|
Requires: libKF5AuthCore5 = %{version}
|
2014-03-01 19:32:17 +01:00
|
|
|
Obsoletes: libKF5Auth4
|
2014-02-07 22:41:57 +01:00
|
|
|
|
2018-08-20 14:58:34 +02:00
|
|
|
%description -n %{lname}
|
2014-02-07 22:41:57 +01:00
|
|
|
KAuth is a framework to let applications perform actions as a privileged user.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Framework which lets applications perform actions as a privileged user
|
2018-08-20 14:58:34 +02:00
|
|
|
Requires: %{lname} = %{version}
|
2014-02-07 22:41:57 +01:00
|
|
|
Requires: extra-cmake-modules
|
2019-09-13 09:44:48 +02:00
|
|
|
Requires: cmake(KF5CoreAddons) >= %{_kf5_bugfix_version}
|
2014-02-07 22:41:57 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
KAuth is a framework to let applications perform actions as a privileged user.
|
|
|
|
Development files.
|
|
|
|
|
2018-08-20 14:58:34 +02:00
|
|
|
%lang_package -n %{lname}
|
|
|
|
|
2014-02-07 22:41:57 +01:00
|
|
|
%prep
|
2021-05-09 09:41:54 +02:00
|
|
|
%autosetup -p1
|
2014-02-07 22:41:57 +01:00
|
|
|
|
|
|
|
%build
|
2021-05-09 09:41:54 +02:00
|
|
|
%cmake_kf5 -d build -- -DSYSCONF_INSTALL_DIR=%{_kf5_sysconfdir}
|
|
|
|
%cmake_build
|
2014-02-07 22:41:57 +01:00
|
|
|
|
|
|
|
%install
|
2021-05-09 09:41:54 +02:00
|
|
|
%kf5_makeinstall -C build
|
|
|
|
%fdupes %{buildroot}
|
2014-05-05 10:51:29 +02:00
|
|
|
|
2022-01-09 11:14:59 +01:00
|
|
|
%find_lang kauth5 --with-qt --without-mo
|
2014-02-07 22:41:57 +01:00
|
|
|
|
2023-02-12 10:52:49 +01:00
|
|
|
%ldconfig_scriptlets -n %{lname}
|
|
|
|
%ldconfig_scriptlets -n libKF5AuthCore5
|
2014-02-07 22:41:57 +01:00
|
|
|
|
2022-01-09 11:14:59 +01:00
|
|
|
%files -n %{lname}-lang -f kauth5.lang
|
2014-05-05 10:51:29 +02:00
|
|
|
|
2018-08-20 14:58:34 +02:00
|
|
|
%files -n %{lname}
|
2022-03-07 22:43:56 +01:00
|
|
|
%dir %{_libexecdir}/kauth
|
2019-06-13 19:56:33 +02:00
|
|
|
%{_kf5_dbuspolicydir}/org.kde.kf5auth.conf
|
2018-06-14 00:10:55 +02:00
|
|
|
%{_kf5_debugdir}/kauth.categories
|
2020-08-09 09:39:33 +02:00
|
|
|
%{_kf5_debugdir}/*.renamecategories
|
2020-07-11 12:30:42 +02:00
|
|
|
%{_kf5_libdir}/libKF5Auth.so.*
|
2022-03-07 22:43:56 +01:00
|
|
|
%{_kf5_plugindir}/kauth/
|
|
|
|
%{_libexecdir}/kauth/kauth-policy-gen
|
2014-02-07 22:41:57 +01:00
|
|
|
|
2019-03-17 18:01:29 +01:00
|
|
|
%files -n libKF5AuthCore5
|
2020-07-11 12:30:42 +02:00
|
|
|
%license LICENSES/*
|
2019-03-17 18:01:29 +01:00
|
|
|
%doc README*
|
|
|
|
%{_kf5_libdir}/libKF5AuthCore.so.*
|
|
|
|
|
2014-02-07 22:41:57 +01:00
|
|
|
%files devel
|
2020-07-11 12:30:42 +02:00
|
|
|
%{_kf5_datadir}/kauth/
|
2022-02-14 13:07:11 +01:00
|
|
|
%{_kf5_includedir}/KAuth/
|
2022-03-12 11:26:19 +01:00
|
|
|
%{_kf5_includedir}/KAuthCore/
|
|
|
|
%{_kf5_includedir}/KAuthWidgets/
|
2020-07-11 12:30:42 +02:00
|
|
|
%{_kf5_libdir}/cmake/KF5Auth/
|
|
|
|
%{_kf5_libdir}/libKF5Auth.so
|
|
|
|
%{_kf5_libdir}/libKF5AuthCore.so
|
2014-02-07 22:41:57 +01:00
|
|
|
%{_kf5_mkspecsdir}/qt_KAuth.pri
|
2019-12-13 16:17:20 +01:00
|
|
|
%{_kf5_mkspecsdir}/qt_KAuthCore.pri
|
2014-02-07 22:41:57 +01:00
|
|
|
|
|
|
|
%changelog
|