2023-05-15 16:22:01 +08:00
|
|
|
|
|
|
|
|
%global qt_module qthttpserver
|
|
|
|
|
|
2023-08-10 15:00:17 +08:00
|
|
|
%define short_version 6.5
|
|
|
|
|
|
2023-05-15 16:22:01 +08:00
|
|
|
%global examples 1
|
|
|
|
|
|
|
|
|
|
Name: qt6-%{qt_module}
|
2023-11-30 20:54:54 +08:00
|
|
|
Version: 6.5.2
|
2023-05-15 16:22:01 +08:00
|
|
|
Release: 1
|
|
|
|
|
Summary: Qt HTTP Server
|
|
|
|
|
License: GPL-3.0-only
|
|
|
|
|
URL: https://www.qt.io
|
|
|
|
|
|
|
|
|
|
Source: https://download.qt.io/official_releases/qt/%{short_version}/%{version}/submodules/submodules/%{qt_module}-everywhere-src-%{version}.tar.xz
|
|
|
|
|
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
BuildRequires: ninja-build
|
|
|
|
|
BuildRequires: qt6-rpm-macros >= %{version}
|
|
|
|
|
BuildRequires: qt6-qtbase-static >= %{version}
|
|
|
|
|
BuildRequires: qt6-qtbase-private-devel
|
|
|
|
|
%{?_qt6:Requires: %{_qt6}%{?_isa} = %{_qt6_version}}
|
|
|
|
|
BuildRequires: qt6-qtwebsockets-devel
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
QHttpServer is a simplified API for QAbstractHttpServer and QHttpServerRouter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
Requires: qt6-qtbase-devel%{?_isa}
|
|
|
|
|
%description devel
|
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
%if 0%{?examples}
|
|
|
|
|
%package examples
|
|
|
|
|
Summary: Programming examples for %{name}
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
%description examples
|
|
|
|
|
%{summary}.
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -p1 -n %{qt_module}-everywhere-src-%{version} -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%define _lto_cflags %{nil}
|
|
|
|
|
|
|
|
|
|
%cmake_qt6 -DQT_BUILD_EXAMPLES:BOOL=%{?examples:ON}%{!?examples:OFF}
|
|
|
|
|
cmake --build . %{?_smp_mflags} --verbose
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
DESTDIR="%{buildroot}" cmake --install .
|
|
|
|
|
|
|
|
|
|
## .prl/.la file love
|
|
|
|
|
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
|
|
|
|
pushd %{buildroot}%{_qt6_libdir}
|
|
|
|
|
for prl_file in libQt6*.prl ; do
|
|
|
|
|
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
|
|
|
|
|
if [ -f "$(basename ${prl_file} .prl).so" ]; then
|
|
|
|
|
rm -fv "$(basename ${prl_file} .prl).la"
|
|
|
|
|
sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license LICENSES/*
|
|
|
|
|
%{_qt6_libdir}/libQt6HttpServer.so.*
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%{_qt6_libdir}/libQt6HttpServer.prl
|
|
|
|
|
%{_qt6_libdir}/libQt6HttpServer.so
|
|
|
|
|
%{_qt6_libdir}/cmake/Qt6HttpServer/
|
|
|
|
|
%{_qt6_libdir}/cmake/Qt6BuildInternals/StandaloneTests/QtHttpServerTestsConfig.cmake
|
|
|
|
|
%{_qt6_includedir}/QtHttpServer/
|
|
|
|
|
%{_qt6_mkspecsdir}/modules/qt_lib_httpserver.pri
|
|
|
|
|
%{_qt6_mkspecsdir}/modules/qt_lib_httpserver_private.pri
|
|
|
|
|
%{_qt6_archdatadir}/modules/HttpServer.json
|
|
|
|
|
%{_qt6_archdatadir}/metatypes/qt6httpserver_*_metatypes.json
|
|
|
|
|
%{_qt6_libdir}/pkgconfig/Qt6HttpServer.pc
|
|
|
|
|
|
|
|
|
|
%if 0%{?examples}
|
|
|
|
|
%files examples
|
|
|
|
|
%{_qt6_examplesdir}/
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-11-30 20:54:54 +08:00
|
|
|
* Thu Nov 30 2023 houhongxun <houhongxun@kylinos.cn> - 6.5.2-1
|
|
|
|
|
- update to version 6.5.2
|
|
|
|
|
|
2023-08-10 15:00:17 +08:00
|
|
|
* Thu Aug 10 2023 EastDong <xudong23@iscas.ac.cn> - 6.5.1-1
|
|
|
|
|
- update package
|
|
|
|
|
|
2023-05-15 16:22:01 +08:00
|
|
|
* Mon May 15 2023 EastDong <xudong23@iscas.ac.cn> - 6.5.0-1
|
|
|
|
|
- init package
|