File qtforkawesome-qt6.spec of Package qtforkawesome-qt6

#
# spec file for package qtforkawesome
#
# Copyright (c) 2021 Martchus
#
# 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 http://bugs.opensuse.org/
#


%define reponame qtforkawesome
%define reponame_forkawesome Fork-Awesome
%define version_forkawesome latest
%define cfg qt6
%define soname 1

# define _qt6_pluginsdir macro for Fedora
%if 0%{?fedora_version}
%define _qt6_pluginsdir %{_libdir}/qt6/plugins
%endif

Name:           %{reponame}-%{cfg}
Version:        0.2.0
Release:        0
Summary:        Library that bundles ForkAwesome for use within Qt applications
License:        GPL-2.0+
Group:          System/Packages
Url:            https://github.com/Martchus/%{reponame}
Source0:        %{reponame}-%{version}.tar.xz
Source1:        %{reponame_forkawesome}-%{version_forkawesome}.tar.xz
BuildRequires:  cmake >= 3.17
%if 0%{?fedora}
%else
BuildRequires:  ninja
%endif
%if 0%{?sle_version} && 0%{?sle_version} < 160000
BuildRequires:  gcc9-c++
%else
BuildRequires:  gcc-c++
%endif
BuildRequires:  c++utilities-devel
BuildRequires:  qtutilities-%{cfg}-devel
BuildRequires:  perl-YAML-LibYAML
BuildRequires:  cmake(Qt6Core)
BuildRequires:  cmake(Qt6Gui)
BuildRequires:  cmake(Qt6Test)
BuildRequires:  cmake(Qt6Quick)
BuildRequires:  pkgconfig
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
Library that bundles ForkAwesome for use within Qt applications.

%package -n lib%{reponame}-%{cfg}%{soname}
Summary:        Library that bundles ForkAwesome for use within Qt applications
Group:          System/Libraries
Provides:       lib%{reponame} = %{version}
Obsoletes:      lib%{reponame} < %{version}

%description -n lib%{reponame}-%{cfg}%{soname}
Library that bundles ForkAwesome for use within Qt applications.

%package devel
Summary:        Devel files for %{reponame}-%{cfg}
Group:          Development/Libraries/C and C++
Requires:       c++utilities-devel
Requires:       qtutilities-%{cfg}-devel
Requires:       lib%{reponame}-%{cfg}%{soname} = %{version}
Requires:       qtforkawesomeiconengine-%{cfg} = %{version}

%description devel
Development files for %{reponame}-%{cfg}

%package -n libqtquickforkawesome-%{cfg}%{soname}
Summary:        Library that bundles ForkAwesome for use within Qt Quick applications
Group:          System/Packages
Provides:       libqtquickforkawesome-%{cfg}%{reponame} = %{version}
Obsoletes:      libqtquickforkawesome-%{cfg}%{reponame} < %{version}

%description -n libqtquickforkawesome-%{cfg}%{soname}
Library that bundles ForkAwesome for use within Qt Quick applications.

%package -n qtquickforkawesome-%{cfg}-devel
Summary:        Devel files for qtquickforkawesome-%{cfg}
Group:          Development/Libraries/C and C++
Requires:       %{reponame}-%{cfg}-devel
Requires:       libqtquickforkawesome-%{cfg}%{soname} = %{version}

%description -n qtquickforkawesome-%{cfg}-devel
Development files for qtquickforkawesome-%{cfg}

%package -n qtforkawesomeiconengine-%{cfg}
Summary:        Qt icon engine for %{reponame}-%{cfg}
Group:          Development/Libraries/C and C++
Requires:       lib%{reponame}-%{cfg}%{soname} = %{version}

%description -n qtforkawesomeiconengine-%{cfg}
Qt icon engine plugin for %{reponame}-%{cfg}

%prep
%setup -q -D -b 1 -n %{reponame_forkawesome}-%{version_forkawesome}
%setup -q -n %{reponame}-%{version}

%build
%if 0%{?sle_version} && 0%{?sle_version} < 160000
export CC=gcc-9
export CXX=g++-9
%endif
%if 0%{?fedora}
%else
%define __builder ninja
%endif
%cmake \
  -DBUILD_SHARED_LIBS:BOOL=ON \
  -DCONFIGURATION_NAME:STRING="%{cfg}" \
  -DCONFIGURATION_DISPLAY_NAME="" \
  -DCONFIGURATION_TARGET_SUFFIX:STRING="%{cfg}" \
  -DCONFIGURATION_PACKAGE_SUFFIX_QTUTILITIES:STRING="-%{cfg}" \
  -DQT_PACKAGE_PREFIX:STRING='Qt6' \
  -DBUILTIN_TRANSLATIONS:BOOL=ON \
  -DQT_PLUGIN_DIR=%{_qt6_pluginsdir} \
%if 0%{?suse_version} > 1500
  -DFORK_AWESOME_FONT_FILE="%{_builddir}/%{reponame_forkawesome}-%{version_forkawesome}/fonts/forkawesome-webfont.woff2" \
%else
  -DFORK_AWESOME_FONT_FILE="%{_builddir}/%{reponame_forkawesome}-%{version_forkawesome}/fonts/forkawesome-webfont.ttf" \
%endif
  -DFORK_AWESOME_ICON_DEFINITIONS="%{_builddir}/%{reponame_forkawesome}-%{version_forkawesome}/src/icons/icons.yml"
%if 0%{?fedora} && 0%{?fedora_version} < 33
make %{?_smp_mflags}
%else
%cmake_build
%endif

%check
export QT_QPA_PLATFORM=offscreen
%if 0%{?fedora}
%if 0%{?fedora_version} < 33
make %{?_smp_mflags} check
%else
export LD_LIBRARY_PATH="$PWD/%{__cmake_builddir}:$LD_LIBRARY_PATH"
%cmake_build --target check
%endif
%else
cd "%{__builddir}"
export LD_LIBRARY_PATH="$PWD:$LD_LIBRARY_PATH"
%cmake_build check
%endif

%install
%if 0%{?fedora} && 0%{?fedora_version} < 33
DESTDIR=%{buildroot} make %{?_smp_mflags} install
%else
%cmake_install
%endif

%post -n lib%{reponame}-%{cfg}%{soname} -p /sbin/ldconfig
%postun -n lib%{reponame}-%{cfg}%{soname} -p /sbin/ldconfig

%post -n libqtquickforkawesome-%{cfg}%{soname} -p /sbin/ldconfig
%postun -n libqtquickforkawesome-%{cfg}%{soname} -p /sbin/ldconfig

%files -n lib%{reponame}-%{cfg}%{soname}
%license LICENSE
%{_libdir}/lib%{reponame}-%{cfg}.so.*

%files -n libqtquickforkawesome-%{cfg}%{soname}
%{_libdir}/libqtquickforkawesome-%{cfg}.so.*

%files devel
%doc README.md
%{_includedir}/%{reponame}-%{cfg}
%{_datadir}/%{reponame}-%{cfg}
%{_datadir}/%{reponame}iconengine-%{cfg}
%{_libdir}/pkgconfig/%{reponame}-%{cfg}.pc
%{_libdir}/pkgconfig/%{reponame}iconengine-%{cfg}.pc
%{_libdir}/lib%{reponame}-%{cfg}.so

%files -n qtquickforkawesome-%{cfg}-devel
%{_includedir}/qtquickforkawesome-%{cfg}
%{_datadir}/qtquickforkawesome-%{cfg}
%{_libdir}/pkgconfig/qtquickforkawesome-%{cfg}.pc
%{_libdir}/libqtquickforkawesome-%{cfg}.so

%files -n qtforkawesomeiconengine-%{cfg}
%dir %{_qt6_pluginsdir}/iconengines
%{_qt6_pluginsdir}/iconengines/lib%{reponame}iconengine-%{cfg}.so

%changelog
openSUSE Build Service is sponsored by