2022-02-12 10:44:14 +08:00
|
|
|
|
%undefine __cmake_in_source_build
|
2020-07-23 11:25:26 +08:00
|
|
|
|
%global framework kwindowsystem
|
|
|
|
|
|
|
|
|
|
|
|
## uncomment to enable bootstrap mode
|
|
|
|
|
|
#global bootstrap 1
|
|
|
|
|
|
|
|
|
|
|
|
## currently includes no tests
|
2022-02-12 10:44:14 +08:00
|
|
|
|
%if !0%{?bootstrap}
|
2020-07-23 11:25:26 +08:00
|
|
|
|
%global tests 1
|
2022-02-12 10:44:14 +08:00
|
|
|
|
%endif
|
2020-07-23 11:25:26 +08:00
|
|
|
|
|
2022-02-12 10:44:14 +08:00
|
|
|
|
Name: kf5-%{framework}
|
|
|
|
|
|
Version: 5.90.0
|
|
|
|
|
|
Release: 1
|
|
|
|
|
|
Summary: KDE Frameworks 5 Tier 1 integration module with classes for windows management
|
2020-07-23 11:25:26 +08:00
|
|
|
|
|
2022-02-12 10:44:14 +08:00
|
|
|
|
License: LGPLv2+ and MIT
|
|
|
|
|
|
URL: https://invent.kde.org/frameworks/%{framework}
|
2020-07-23 11:25:26 +08:00
|
|
|
|
|
|
|
|
|
|
%global majmin %(echo %{version} | cut -d. -f1-2)
|
|
|
|
|
|
%global revision %(echo %{version} | cut -d. -f3)
|
|
|
|
|
|
%if %{revision} >= 50
|
|
|
|
|
|
%global stable unstable
|
|
|
|
|
|
%else
|
|
|
|
|
|
%global stable stable
|
|
|
|
|
|
%endif
|
|
|
|
|
|
Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz
|
|
|
|
|
|
|
|
|
|
|
|
# filter plugin provides
|
|
|
|
|
|
%global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$
|
|
|
|
|
|
|
2022-02-12 10:44:14 +08:00
|
|
|
|
BuildRequires: make
|
2020-07-23 11:25:26 +08:00
|
|
|
|
BuildRequires: extra-cmake-modules >= %{majmin}
|
|
|
|
|
|
BuildRequires: kf5-rpm-macros >= %{majmin}
|
|
|
|
|
|
BuildRequires: pkgconfig(x11)
|
|
|
|
|
|
BuildRequires: pkgconfig(xcb)
|
2022-02-12 10:44:14 +08:00
|
|
|
|
BuildRequires: pkgconfig(xcb-icccm)
|
2020-07-23 11:25:26 +08:00
|
|
|
|
BuildRequires: pkgconfig(xcb-keysyms)
|
|
|
|
|
|
BuildRequires: pkgconfig(xfixes)
|
|
|
|
|
|
BuildRequires: pkgconfig(xrender)
|
|
|
|
|
|
BuildRequires: qt5-qtbase-devel
|
|
|
|
|
|
BuildRequires: qt5-qttools-devel
|
|
|
|
|
|
BuildRequires: qt5-qtx11extras-devel
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?tests}
|
|
|
|
|
|
BuildRequires: openbox
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
|
|
BuildRequires: weston
|
|
|
|
|
|
%endif
|
|
|
|
|
|
BuildRequires: xorg-x11-server-Xvfb
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
Requires: kf5-filesystem >= %{majmin}
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
|
KDE Frameworks Tier 1 integration module that provides classes for managing and
|
|
|
|
|
|
working with windows.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
Requires: qt5-qtbase-devel
|
|
|
|
|
|
%description devel
|
|
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
%autosetup -n %{framework}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
mkdir %{_target_platform}
|
|
|
|
|
|
pushd %{_target_platform}
|
|
|
|
|
|
%{cmake_kf5} .. \
|
|
|
|
|
|
-DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF}
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
%make_build -C %{_target_platform}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
|
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
|
|
|
|
|
|
|
|
|
|
|
|
%find_lang_kf5 kwindowsystem5_qt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
%if 0%{?tests}
|
|
|
|
|
|
export CTEST_OUTPUT_ON_FAILURE=1
|
|
|
|
|
|
xvfb-run -a \
|
|
|
|
|
|
make test ARGS="--output-on-failure --timeout 30" -C %{_target_platform} ||:
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%ldconfig_scriptlets
|
|
|
|
|
|
|
|
|
|
|
|
%files -f kwindowsystem5_qt.lang
|
|
|
|
|
|
%doc README.md
|
2022-02-12 10:44:14 +08:00
|
|
|
|
%license LICENSES/*.txt
|
|
|
|
|
|
%{_kf5_datadir}/qlogging-categories5/%{framework}.*
|
2020-07-23 11:25:26 +08:00
|
|
|
|
%{_kf5_libdir}/libKF5WindowSystem.so.*
|
2022-02-12 10:44:14 +08:00
|
|
|
|
%dir %{_kf5_plugindir}/kwindowsystem/
|
|
|
|
|
|
%{_kf5_plugindir}/kwindowsystem/KF5WindowSystemWaylandPlugin.so
|
|
|
|
|
|
%{_kf5_plugindir}/kwindowsystem/KF5WindowSystemX11Plugin.so
|
2020-07-23 11:25:26 +08:00
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
|
%{_kf5_includedir}/kwindowsystem_version.h
|
|
|
|
|
|
%{_kf5_includedir}/KWindowSystem/
|
|
|
|
|
|
%{_kf5_libdir}/libKF5WindowSystem.so
|
|
|
|
|
|
%{_kf5_libdir}/cmake/KF5WindowSystem/
|
|
|
|
|
|
%{_kf5_archdatadir}/mkspecs/modules/qt_KWindowSystem.pri
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2022-02-12 10:44:14 +08:00
|
|
|
|
* Sat Feb 12 2022 pei-jiankang<peijiankang@kylinos.cn> - 5.90.0-1
|
|
|
|
|
|
- update to upstream version 5.90.0
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 14 2022 pei-jiankang<peijiankang@kylinos.cn> - 5.88.0-1
|
|
|
|
|
|
- update to upstream version 5.88.0
|
|
|
|
|
|
|
2021-12-13 10:51:11 +08:00
|
|
|
|
* Mon Dec 13 2021 douyan <douyan@kylinos.cn> - 5.55.0-2
|
|
|
|
|
|
- remove %{?dist}
|
|
|
|
|
|
|
2020-07-23 11:25:26 +08:00
|
|
|
|
* Thu Jul 23 2020 Zhao Yang <yangzhao1@kylinos.cn> - 5.55.0-1
|
|
|
|
|
|
- Initial release for OpenEuler
|