Compare commits
10 Commits
32293e665c
...
8efa8a9ab6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8efa8a9ab6 | ||
|
|
2495fe7500 | ||
|
|
e2fdb2d0fb | ||
|
|
1521b6d860 | ||
|
|
0873a13fbf | ||
|
|
204a7a0016 | ||
|
|
f99ab7d0e4 | ||
|
|
2a59b00475 | ||
|
|
e91c6e5368 | ||
|
|
d37df7f5c0 |
@ -1,27 +1,40 @@
|
||||
Name: qt5-qtserialport
|
||||
Version: 5.11.1
|
||||
Release: 4
|
||||
Summary: Serialport component of qt5
|
||||
License: LGPLv2 with exceptions or LGPLv3 with exceptions
|
||||
URL: http://www.qt.io
|
||||
Source0: https://download.qt.io/archive/qt/5.11/5.11.1/submodules/qtserialport-everywhere-src-5.11.1.tar.xz
|
||||
%global qt_module qtserialport
|
||||
|
||||
BuildRequires: qt5-qtbase-devel >= %{version} pkgconfig(libudev)
|
||||
Requires: %{_qt5} = %{_qt5_version}
|
||||
Summary: Qt5 - SerialPort component
|
||||
Name: qt5-%{qt_module}
|
||||
Version: 5.15.10
|
||||
Release: 1
|
||||
|
||||
# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
|
||||
License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
Url: http://www.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: pkgconfig(libudev)
|
||||
|
||||
BuildRequires: qt5-qtbase-private-devel
|
||||
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
||||
|
||||
%description
|
||||
Qt Serial Port provides the basic functionality, which includes configuring, I/O operations,
|
||||
getting and setting the control signals of the RS-232 pinouts.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for qt5-qtserialport
|
||||
Requires: qt5-qtbase-devel %{name} = %{version}-%{release}
|
||||
|
||||
Obsoletes: %{name}-examples = %{version}-%{release}
|
||||
Provides: %{name}-examples < %{version}-%{release}
|
||||
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: qt5-qtbase-devel%{?_isa}
|
||||
%description devel
|
||||
This package contains the development files and examples for %{name}.
|
||||
%{summary}.
|
||||
|
||||
%package examples
|
||||
Summary: Programming examples for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
%description examples
|
||||
%{summary}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n qtserialport-everywhere-src-%{version} -p1
|
||||
@ -34,12 +47,12 @@ This package contains the development files and examples for %{name}.
|
||||
make install INSTALL_ROOT=%{buildroot}
|
||||
|
||||
pushd %{buildroot}%{_qt5_libdir}
|
||||
for file in libQt5*.prl; do sed -i '/^QMAKE_PRL_BUILD_DIR/d' $file; done
|
||||
for la_file in libQt5*.la; do
|
||||
rm -f $la_file
|
||||
if [ -f "$(basename $la_file .la).so" ]; then
|
||||
sed -i '/^QMAKE_PRL_LIBS/d' $(basename $la_file .la).prl
|
||||
fi
|
||||
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
|
||||
|
||||
@ -47,17 +60,39 @@ popd
|
||||
|
||||
%files
|
||||
%license LICENSE.*
|
||||
%{_qt5_libdir}/libQt5*.so.5*
|
||||
%{_qt5_libdir}/libQt5SerialPort.so.5*
|
||||
|
||||
%files devel
|
||||
%{_qt5_libdir}/libQt5*.{so,prl}
|
||||
%{_qt5_headerdir}/QtSerialPort/
|
||||
%{_qt5_libdir}/libQt5SerialPort.so
|
||||
%{_qt5_libdir}/libQt5SerialPort.prl
|
||||
%dir %{_qt5_libdir}/cmake/Qt5SerialPort/
|
||||
%{_qt5_libdir}/cmake/*/*.cmake
|
||||
%{_qt5_archdatadir}/*/*/*.pri
|
||||
%{_qt5_headerdir}/*/
|
||||
%{_qt5_libdir}/*/*.pc
|
||||
%{_qt5_libdir}/cmake/Qt5SerialPort/Qt5SerialPortConfig*.cmake
|
||||
%{_qt5_libdir}/pkgconfig/Qt5SerialPort.pc
|
||||
%{_qt5_archdatadir}/mkspecs/modules/qt_lib_serialport*.pri
|
||||
|
||||
%if 0%{?docs}
|
||||
%files doc
|
||||
%license LICENSE.FDL
|
||||
%{_qt5_docdir}/qtserialport.qch
|
||||
%{_qt5_docdir}/qtserialport/
|
||||
%endif
|
||||
|
||||
%files examples
|
||||
%{_qt5_examplesdir}/
|
||||
|
||||
%changelog
|
||||
* Mon Aug 21 2023 huayadong <huayadong@kylinos.cn> - 5.15.10-1
|
||||
- update to version 5.15.10-1
|
||||
|
||||
* Wed Oct 13 2021 peijiankang <peijiankang@kylinos.cn> - 5.15.2-1
|
||||
- update to upstream version 5.15.2
|
||||
|
||||
* Thu Mar 18 2021 maminjie <maminjie1@huawei.com> - 5.11.1-6
|
||||
- Fix syntax error when macro is not defined
|
||||
|
||||
* 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-qtserialport.yaml
Normal file
4
qt5-qtserialport.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
version_control: git
|
||||
src_repo: https://code.qt.io/qt/qtserialport.git
|
||||
tag_prefix: "^v"
|
||||
separator: "."
|
||||
BIN
qtserialport-everywhere-opensource-src-5.15.10.tar.xz
Normal file
BIN
qtserialport-everywhere-opensource-src-5.15.10.tar.xz
Normal file
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user