init
This commit is contained in:
parent
6c17887d4c
commit
ea280b25d1
90
qt6-qthttpserver.spec
Normal file
90
qt6-qthttpserver.spec
Normal file
@ -0,0 +1,90 @@
|
||||
|
||||
%global qt_module qthttpserver
|
||||
|
||||
%global examples 1
|
||||
|
||||
Name: qt6-%{qt_module}
|
||||
Version: 6.5.0
|
||||
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
|
||||
* Mon May 15 2023 EastDong <xudong23@iscas.ac.cn> - 6.5.0-1
|
||||
- init package
|
||||
4
qt6-qthttpserver.yaml
Normal file
4
qt6-qthttpserver.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
version_control: git
|
||||
src_repo: https://code.qt.io/qt/qthttpserver.git
|
||||
tag_prefix: "^v"
|
||||
separator: "."
|
||||
BIN
qthttpserver-everywhere-src-6.5.0.tar.xz
Normal file
BIN
qthttpserver-everywhere-src-6.5.0.tar.xz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user