Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
a7115395ff
!9 [sync] PR-8: update to upstream version 5.15.10
From: @openeuler-sync-bot 
Reviewed-by: @peijiankang 
Signed-off-by: @peijiankang
2023-08-30 12:01:13 +00:00
huayadong
368fbd8b06 update to upstream version 5.15.10
(cherry picked from commit dcba569d21a9ce3af491599023809ad8d8ee9783)
2023-08-24 20:37:50 +08:00
openeuler-ci-bot
a48d3cf010
!6 update to upstream version 5.15.2
Merge pull request !6 from pei-jiankang/master
2022-01-10 11:51:00 +00:00
pei-jiankang
1a49f49897 update to upstream version 5.15.2 2022-01-07 17:05:23 +08:00
openeuler-ci-bot
b4fab53637 !3 Fix Source0
From: @kkkl12
Reviewed-by: @small_leek
Signed-off-by: @small_leek
2020-09-14 20:16:45 +08:00
kkkl12
8f982269d2 Fix Source0 2020-09-14 15:49:39 +08:00
openeuler-ci-bot
6a17332ac5 !2 add yaml file
Merge pull request !2 from sugarfillet/master
2020-05-15 10:37:11 +08:00
sugarfillet
29ad99feb4 add yaml file 2020-05-08 16:00:17 +08:00
openeuler-ci-bot
60fac203e3 !1 package init
Merge pull request !1 from ultra_planet/new
2020-02-14 17:52:25 +08:00
ultra_planet
4e1e16e1a8 package init 2020-02-14 15:51:43 +08:00
3 changed files with 94 additions and 0 deletions

90
qt5-qtwebchannel.spec Normal file
View File

@ -0,0 +1,90 @@
%global qt_module qtwebchannel
Name: qt5-%{qt_module}
Version: 5.15.10
Release: 1
Summary: Qt5 - WebChannel component
License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0
Url: http://qt.io
%global majmin %(echo %{version} | cut -d. -f1-2)
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-opensource-src-%{version}.tar.xz
BuildRequires: make
BuildRequires: qt5-qtbase-devel >= %{version}
BuildRequires: qt5-qtbase-private-devel
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
BuildRequires: qt5-qtdeclarative-devel
BuildRequires: qt5-qtwebsockets-devel
%description
The Qt WebChannel module provides a library for seamless integration of C++
and QML applications with HTML/JavaScript clients. Any QObject can be
published to remote clients, where its public API becomes available.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: qt5-qtbase-devel%{?_isa}
%description devel
%{summary}.
%package examples
Summary: Programming examples for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description examples
%{summary}.
%prep
%setup -q -n %{qt_module}-everywhere-src-%{version}
%build
%{qmake_qt5}
%make_build
%install
make install INSTALL_ROOT=%{buildroot}
pushd %{buildroot}%{_qt5_libdir}
for prl_file in libQt5*.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
%ldconfig_scriptlets
%files
%license LICENSE.*
%{_qt5_libdir}/libQt5WebChannel.so.5*
%{_qt5_archdatadir}/qml/QtWebChannel/
%files devel
%{_qt5_headerdir}/QtWebChannel/
%{_qt5_libdir}/libQt5WebChannel.prl
%{_qt5_libdir}/libQt5WebChannel.so
%dir %{_qt5_libdir}/cmake/Qt5WebChannel/
%{_qt5_archdatadir}/mkspecs/modules/qt_lib_webchannel*.pri
%{_qt5_libdir}/cmake/Qt5WebChannel/Qt5WebChannelConfig*.cmake
%{_qt5_libdir}/pkgconfig/Qt5WebChannel.pc
%files examples
%{_qt5_examplesdir}/
%changelog
* Wed Aug 23 2023 peijiankang <peijiankang@kylinos.cn> - 5.15.10-1
- update to upstream version 5.15.10
* Wed Oct 13 2021 peijiankang <peijiankang@kylinos.cn> - 5.15.2-1
- update to upstream version 5.15.2
* Mon Sep 14 2020 liuweibo <liuweibo10@huawei.com> - 5.11.1-5
- Fix Source0
* Fri Feb 14 2020 lingsheng <lingsheng@huawei.com> - 5.11.1-4
- Package init

4
qt5-qtwebchannel.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: git
src_repo: https://code.qt.io/qt/qtwebchannel.git
tag_prefix: "^v"
separator: "."

Binary file not shown.