2014-02-07 22:42:17 +01:00
|
|
|
#
|
|
|
|
# spec file for package kdbusaddons
|
|
|
|
#
|
2021-01-09 13:18:45 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2014-02-07 22:42:17 +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:24:18 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2014-02-07 22:42:17 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2014-03-01 19:33:14 +01:00
|
|
|
%define lname libKF5DBusAddons5
|
2017-09-13 14:18:02 +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:51 +02:00
|
|
|
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')}
|
2024-01-15 15:08:56 +01:00
|
|
|
%define qt5_version 5.15.2
|
2022-01-09 11:15:01 +01:00
|
|
|
%bcond_without released
|
2014-02-07 22:42:17 +01:00
|
|
|
Name: kdbusaddons
|
2024-05-19 11:35:29 +02:00
|
|
|
Version: 5.116.0
|
2014-02-07 22:42:17 +01:00
|
|
|
Release: 0
|
2018-08-20 14:58:36 +02:00
|
|
|
Summary: Convenience classes for QtDBus
|
|
|
|
License: LGPL-2.1-or-later
|
2018-10-16 14:24:18 +02:00
|
|
|
URL: https://www.kde.org
|
2021-11-12 13:20:51 +01:00
|
|
|
Source: %{name}-%{version}.tar.xz
|
2022-01-09 11:15:01 +01:00
|
|
|
%if %{with released}
|
2021-11-12 13:20:51 +01:00
|
|
|
Source1: %{name}-%{version}.tar.xz.sig
|
2019-08-11 23:07:09 +02:00
|
|
|
Source2: frameworks.keyring
|
|
|
|
%endif
|
2024-01-15 15:08:56 +01:00
|
|
|
BuildRequires: extra-cmake-modules >= %{_kf5_version}
|
2014-02-07 22:42:17 +01:00
|
|
|
BuildRequires: fdupes
|
2024-01-15 15:08:56 +01:00
|
|
|
BuildRequires: cmake(Qt5DBus) >= %{qt5_version}
|
|
|
|
BuildRequires: cmake(Qt5LinguistTools) >= %{qt5_version}
|
|
|
|
BuildRequires: cmake(Qt5Test) >= %{qt5_version}
|
|
|
|
BuildRequires: cmake(Qt5X11Extras) >= %{qt5_version}
|
2014-02-07 22:42:17 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
KDBusAddons provides convenience classes on top of QtDBus, as well as an API to
|
|
|
|
create KDED modules.
|
|
|
|
|
2018-08-20 14:58:36 +02:00
|
|
|
%package -n %{lname}
|
2014-02-07 22:42:17 +01:00
|
|
|
Summary: Convenience classes for QtDBus
|
2018-08-20 14:58:36 +02:00
|
|
|
%requires_ge libQt5DBus5
|
2014-08-14 23:01:29 +02:00
|
|
|
Recommends: %{name}-tools = %{version}
|
2014-02-07 22:42:17 +01:00
|
|
|
|
2018-08-20 14:58:36 +02:00
|
|
|
%description -n %{lname}
|
2014-02-07 22:42:17 +01:00
|
|
|
KDBusAddons provides convenience classes on top of QtDBus, as well as an API to
|
|
|
|
create KDED modules.
|
|
|
|
|
2014-08-14 23:01:29 +02:00
|
|
|
%package tools
|
|
|
|
Summary: Convenience classes for QtDBus: CLI tools
|
|
|
|
|
|
|
|
%description tools
|
|
|
|
KDBusAddons provides convenience classes on top of QtDBus, as well as an API to
|
|
|
|
create KDED modules. Aditional CLI tools.
|
|
|
|
|
2014-02-07 22:42:17 +01:00
|
|
|
%package devel
|
|
|
|
Summary: Convenience classes for QtDBus: Build Environment
|
2018-08-20 14:58:36 +02:00
|
|
|
Requires: %{lname} = %{version}
|
2024-01-15 15:08:56 +01:00
|
|
|
Requires: cmake(Qt5DBus) >= %{qt5_version}
|
2014-02-07 22:42:17 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
KDBusAddons provides convenience classes on top of QtDBus, as well as an API to
|
|
|
|
create KDED modules. Development files.
|
|
|
|
|
2018-08-20 14:58:36 +02:00
|
|
|
%lang_package -n %{lname}
|
|
|
|
|
2014-02-07 22:42:17 +01:00
|
|
|
%prep
|
2021-05-09 09:41:56 +02:00
|
|
|
%autosetup -p1
|
2014-02-07 22:42:17 +01:00
|
|
|
|
|
|
|
%build
|
2021-05-09 09:41:56 +02:00
|
|
|
%cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert
|
|
|
|
%cmake_build
|
2014-02-07 22:42:17 +01:00
|
|
|
|
|
|
|
%install
|
2021-05-09 09:41:56 +02:00
|
|
|
%kf5_makeinstall -C build
|
|
|
|
%fdupes %{buildroot}
|
2014-05-05 04:25:18 +02:00
|
|
|
|
2022-10-08 19:27:51 +02:00
|
|
|
%find_lang kdbusaddons5 --with-qt --without-mo
|
2014-02-07 22:42:17 +01:00
|
|
|
|
2023-02-12 10:52:54 +01:00
|
|
|
%ldconfig_scriptlets -n %{lname}
|
2014-02-07 22:42:17 +01:00
|
|
|
|
2022-10-08 19:27:51 +02:00
|
|
|
%files -n %{lname}-lang -f kdbusaddons5.lang
|
2014-05-05 04:25:18 +02:00
|
|
|
|
2018-08-20 14:58:36 +02:00
|
|
|
%files -n %{lname}
|
2020-07-11 12:30:45 +02:00
|
|
|
%license LICENSES/*
|
2018-08-20 14:58:36 +02:00
|
|
|
%doc README*
|
2017-12-22 17:25:17 +01:00
|
|
|
%{_kf5_debugdir}/*.categories
|
2020-08-09 09:39:37 +02:00
|
|
|
%{_kf5_debugdir}/*.renamecategories
|
2020-07-11 12:30:45 +02:00
|
|
|
%{_kf5_libdir}/libKF5DBusAddons.so.*
|
2014-02-07 22:42:17 +01:00
|
|
|
|
2014-08-14 23:01:29 +02:00
|
|
|
%files tools
|
2014-03-01 19:33:14 +01:00
|
|
|
%{_kf5_bindir}/kquitapp5
|
2014-08-14 23:01:29 +02:00
|
|
|
|
|
|
|
%files devel
|
2014-08-07 22:59:32 +02:00
|
|
|
%{_kf5_includedir}/
|
2020-07-11 12:30:45 +02:00
|
|
|
%{_kf5_libdir}/cmake/KF5DBusAddons/
|
|
|
|
%{_kf5_libdir}/libKF5DBusAddons.so
|
2014-02-07 22:42:17 +01:00
|
|
|
%{_kf5_mkspecsdir}/qt_KDBusAddons.pri
|
|
|
|
|
|
|
|
%changelog
|