built by this source package: It does not work, as the package in question is not installed and thus not identifable as part of the rpm database. OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kconfig?expand=0&rev=321
188 lines
6.1 KiB
RPMSpec
188 lines
6.1 KiB
RPMSpec
#
|
|
# spec file for package kconfig
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define sonum 5
|
|
# Full KF5 version (e.g. 5.33.0)
|
|
%{!?_kf5_version: %global _kf5_version %{version}}
|
|
# 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}')}
|
|
%define qt5_version 5.15.2
|
|
%bcond_without released
|
|
Name: kconfig
|
|
Version: 5.116.0
|
|
Release: 0
|
|
Summary: Advanced configuration system
|
|
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
|
URL: https://www.kde.org
|
|
Source: %{name}-%{version}.tar.xz
|
|
%if %{with released}
|
|
Source1: %{name}-%{version}.tar.xz.sig
|
|
Source2: frameworks.keyring
|
|
%endif
|
|
# PATCH-FEATURE-OPENSUSE
|
|
Patch0: kconfig-desktop-translations.patch
|
|
BuildRequires: extra-cmake-modules >= %{_kf5_version}
|
|
BuildRequires: fdupes
|
|
BuildRequires: cmake(Qt5Core) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5DBus) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5Gui) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5LinguistTools) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5Qml) >= %{qt5_version}
|
|
BuildRequires: cmake(Qt5Xml) >= %{qt5_version}
|
|
|
|
%description
|
|
KConfig provides an advanced configuration system. It is made of three parts:
|
|
KConfigCore, KConfigGui and KConfigQml.
|
|
|
|
KConfigCore provides access to the configuration files themselves. It features:
|
|
|
|
- centralized definition: define your configuration in an XML file and use
|
|
`kconfig_compiler` to generate classes to read and write configuration entries.
|
|
|
|
- lock-down (kiosk) support.
|
|
|
|
KConfigGui provides a way to hook widgets to the configuration so that they are
|
|
automatically initialized from the configuration and automatically propagate
|
|
their changes to their respective configuration files.
|
|
|
|
KConfigQml provides QtQuick bindings to KConfig, allowing it to be used with QML.
|
|
|
|
%package -n libKF5ConfigCore%{sonum}
|
|
Summary: System for configuration files
|
|
%requires_ge libQt5Core5
|
|
Recommends: kconf_update5 = %{version}
|
|
|
|
%description -n libKF5ConfigCore%{sonum}
|
|
KConfig provides an advanced configuration system. It is made of two parts:
|
|
KConfigCore and KConfigGui.
|
|
|
|
KConfigCore provides access to the configuration files themselves.
|
|
|
|
%package -n libKF5ConfigGui%{sonum}
|
|
Summary: Widgets hooks for configuration entities
|
|
Requires: libKF5ConfigCore%{sonum} >= %{version}
|
|
%requires_ge libQt5Core5
|
|
%requires_ge libQt5Gui5
|
|
%requires_ge libQt5Xml5
|
|
|
|
%description -n libKF5ConfigGui%{sonum}
|
|
KConfigGui provides a way to hook widgets to the configuration so that they are
|
|
automatically initialized from the configuration and automatically propagate
|
|
their changes to their respective configuration files.
|
|
|
|
%package -n libKF5ConfigQml%{sonum}
|
|
Summary: QtQuick bindings for configuration entities
|
|
Requires: libKF5ConfigCore5 >= %{version}
|
|
Requires: libKF5ConfigGui5 >= %{version}
|
|
%requires_ge libQt5Core5
|
|
%requires_ge libQt5Gui5
|
|
%requires_ge libQt5Xml5
|
|
|
|
%description -n libKF5ConfigQml%{sonum}
|
|
KConfigQml provides QtQuick bindings to KConfig, which allows using the library with
|
|
QML.
|
|
|
|
%package -n kconf_update5
|
|
Summary: Configuration file access
|
|
Requires: libKF5ConfigCore%{sonum} = %{version}
|
|
|
|
%description -n kconf_update5
|
|
KConfig provides an advanced configuration system. It is made of two parts:
|
|
KConfigCore and KConfigGui.
|
|
|
|
This package contains the kconf_update tool.
|
|
|
|
%package devel
|
|
Summary: KConfig Development files
|
|
Requires: kconf_update5 = %{version}
|
|
Requires: libKF5ConfigCore%{sonum} = %{version}
|
|
Requires: libKF5ConfigGui%{sonum} = %{version}
|
|
Requires: libKF5ConfigQml%{sonum} = %{version}
|
|
Requires: cmake(Qt5DBus) >= %{qt5_version}
|
|
Requires: cmake(Qt5Xml) >= %{qt5_version}
|
|
|
|
%description devel
|
|
KConfig provides an advanced configuration system. It is made of two parts:
|
|
KConfigCore and KConfigGui.
|
|
|
|
KConfigCore provides access to the configuration files themselves. It features:
|
|
|
|
- centralized definition: define your configuration in an XML file and use
|
|
`kconfig_compiler` to generate classes to read and write configuration entries.
|
|
|
|
- lock-down (kiosk) support.
|
|
|
|
KConfigGui provides a way to hook widgets to the configuration so that they are
|
|
automatically initialized from the configuration and automatically propagate
|
|
their changes to their respective configuration files. Development files.
|
|
|
|
%lang_package -n libKF5ConfigCore%{sonum}
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert
|
|
%cmake_build
|
|
|
|
%install
|
|
%kf5_makeinstall -C build
|
|
|
|
%fdupes %{buildroot}
|
|
|
|
%find_lang kconfig5 --with-qt --without-mo
|
|
|
|
%ldconfig_scriptlets -n libKF5ConfigCore%{sonum}
|
|
%ldconfig_scriptlets -n libKF5ConfigGui%{sonum}
|
|
%ldconfig_scriptlets -n libKF5ConfigQml%{sonum}
|
|
|
|
%files -n libKF5ConfigCore%{sonum}-lang -f kconfig5.lang
|
|
|
|
%files -n libKF5ConfigCore%{sonum}
|
|
%license LICENSES/*
|
|
%doc README*
|
|
%{_kf5_bindir}/k*config5
|
|
%{_kf5_debugdir}/kconfig.categories
|
|
%{_kf5_debugdir}/*.renamecategories
|
|
%{_kf5_libdir}/libKF5ConfigCore.so.*
|
|
|
|
%files -n libKF5ConfigGui%{sonum}
|
|
%doc README*
|
|
%{_kf5_libdir}/libKF5ConfigGui.so.*
|
|
|
|
%files -n libKF5ConfigQml%{sonum}
|
|
%doc README*
|
|
%{_kf5_libdir}/libKF5ConfigQml.so.*
|
|
|
|
%files -n kconf_update5
|
|
%doc README*
|
|
%dir %{_kf5_libexecdir}
|
|
%{_kf5_libexecdir}/kconf_update
|
|
|
|
%files devel
|
|
%{_kf5_includedir}/
|
|
%{_kf5_libdir}/cmake/KF5Config/
|
|
%{_kf5_libdir}/libKF5ConfigCore.so
|
|
%{_kf5_libdir}/libKF5ConfigGui.so
|
|
%{_kf5_libdir}/libKF5ConfigQml.so
|
|
%{_kf5_libexecdir}/kconfig_compiler_kf5
|
|
%{_kf5_mkspecsdir}/qt_KConfigCore.pri
|
|
%{_kf5_mkspecsdir}/qt_KConfigGui.pri
|
|
|
|
%changelog
|