You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.7 KiB
108 lines
2.7 KiB
8 years ago
|
%global framework kirigami2
|
||
|
|
||
|
# uncomment to enable bootstrap mode
|
||
|
#global bootstrap 1
|
||
|
|
||
|
%if !0%{?bootstrap}
|
||
|
%global tests 1
|
||
|
%endif
|
||
|
|
||
|
Name: kf5-%{framework}
|
||
|
Version: 2.0.0
|
||
|
Release: 2%{?dist}
|
||
|
Summary: QtQuick plugins to build user interfaces based on the KDE UX guidelines
|
||
|
|
||
|
# All LGPLv2+ except for src/desktopicons.h (GPLv2+)
|
||
|
License: GPLv2+
|
||
|
URL: https://techbase.kde.org/Kirigami
|
||
|
Source0: http://download.kde.org/stable/kirigami/%{framework}-%{version}.tar.xz
|
||
|
|
||
|
# filter qml provides
|
||
|
%global __provides_exclude_from ^%{_kf5_qmldir}/.*\\.so$
|
||
|
|
||
|
BuildRequires: extra-cmake-modules
|
||
|
BuildRequires: kf5-plasma-devel
|
||
|
BuildRequires: kf5-rpm-macros
|
||
|
|
||
|
BuildRequires: qt5-linguist
|
||
|
BuildRequires: qt5-qtbase-devel
|
||
|
BuildRequires: qt5-qtdeclarative-devel
|
||
|
BuildRequires: qt5-qtquickcontrols2-devel
|
||
|
BuildRequires: qt5-qtsvg-devel
|
||
|
|
||
|
%if 0%{?tests}
|
||
|
%if 0%{?fedora}
|
||
|
BuildRequires: appstream
|
||
|
%endif
|
||
|
BuildRequires: xorg-x11-server-Xvfb
|
||
|
%endif
|
||
|
|
||
|
Requires: kf5-filesystem
|
||
|
Requires: qt5-qtquickcontrols%{?_isa}
|
||
|
Requires: qt5-qtquickcontrols2%{?_isa}
|
||
|
|
||
|
%description
|
||
|
%{summary}.
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development files for %{name}
|
||
|
# strictly not required, but some consumers may assume/expect runtime bits to be present too
|
||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||
|
%description devel
|
||
|
The %{name}-devel package contains libraries and header files for
|
||
|
developing applications that use %{name}.
|
||
|
|
||
|
|
||
|
%prep
|
||
|
%autosetup -n %{framework}-%{version} -p1
|
||
|
|
||
|
|
||
|
%build
|
||
|
mkdir %{_target_platform}
|
||
|
pushd %{_target_platform}
|
||
|
%{cmake_kf5} .. \
|
||
|
-DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF}
|
||
|
popd
|
||
|
|
||
|
make %{?_smp_mflags} -C %{_target_platform}
|
||
|
|
||
|
|
||
|
%install
|
||
|
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
|
||
|
|
||
|
%find_lang %{name} --with-qt --with-man --all-name
|
||
|
|
||
|
|
||
|
%check
|
||
|
%if 0%{?tests}
|
||
|
## known failure(s), not sure if possible to enable opengl/glx using
|
||
|
## virtualized server (QT_XCB_FORCE_SOFTWARE_OPENGL doesn't seem to help)
|
||
|
#2/2 Test #2: qmltests .........................***Exception: Other 0.19 sec
|
||
|
#Could not initialize GLX
|
||
|
export QT_XCB_FORCE_SOFTWARE_OPENGL=1
|
||
|
export CTEST_OUTPUT_ON_FAILURE=1
|
||
|
xvfb-run -a \
|
||
|
make test ARGS="--output-on-failure --timeout 30" -C %{_target_platform} ||:
|
||
|
%endif
|
||
|
|
||
|
|
||
|
%files -f %{name}.lang
|
||
|
# README is currently only build instructions, omit for now
|
||
|
#doc README.md
|
||
|
%license LICENSE*
|
||
|
%dir %{_kf5_qmldir}/org/
|
||
|
%dir %{_kf5_qmldir}/org/kde/
|
||
|
%{_kf5_qmldir}/org/kde/kirigami.2/
|
||
|
|
||
|
%files devel
|
||
|
%{_kf5_archdatadir}/mkspecs/modules/qt_Kirigami2.pri
|
||
|
%{_kf5_libdir}/cmake/KF5Kirigami2/
|
||
|
|
||
|
|
||
|
%changelog
|
||
|
* Fri Mar 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 2.0.0-2
|
||
|
- Requires: qt5-qtquickcontrols, License: GPLv2+
|
||
|
|
||
|
* Wed Mar 01 2017 Rex Dieter <rdieter@fedoraproject.org> - 2.0.0-1
|
||
|
- kf5-kirigami-2.0.0 first try
|