!12 [sync] PR-11: update to version 5.15.10-1
From: @openeuler-sync-bot Reviewed-by: @peijiankang Signed-off-by: @peijiankang
This commit is contained in:
commit
d203186ba7
@ -1,29 +1,48 @@
|
|||||||
Name: qt5-qtxmlpatterns
|
%global qt_module qtxmlpatterns
|
||||||
Version: 5.15.2
|
|
||||||
Release: 1
|
|
||||||
Summary: Provide support for XQuery, XPath, etc
|
|
||||||
|
|
||||||
License: LGPLv2 with exceptions or GPLv3 with exceptions
|
#global bootstrap 1
|
||||||
|
|
||||||
|
Summary: Qt5 - QtXmlPatterns 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
|
Url: http://www.qt.io
|
||||||
%global majmin %(echo %{version} | cut -d. -f1-2)
|
%global majmin %(echo %{version} | cut -d. -f1-2)
|
||||||
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/qtxmlpatterns-everywhere-src-%{version}.tar.xz
|
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-opensource-src-%{version}.tar.xz
|
||||||
|
|
||||||
BuildRequires: make qt5-qtdeclarative-devel
|
BuildRequires: make
|
||||||
BuildRequires: qt5-qtbase-devel >= %{version} qt5-qtbase-private-devel
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
||||||
|
BuildRequires: qt5-qtbase-private-devel
|
||||||
|
#libQt5Core.so.5(Qt_5_PRIVATE_API)(64bit)
|
||||||
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
||||||
|
|
||||||
|
%if 0%{?bootstrap}
|
||||||
|
Obsoletes: %{name}-examples < %{version}-%{release}
|
||||||
|
%global no_examples CONFIG-=compile_examples
|
||||||
|
%else
|
||||||
|
BuildRequires: qt5-qtdeclarative-devel
|
||||||
|
%global qml 1
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package is qt5-qtxmlpatterns component. It provides support for XQuery, XPath, etc.
|
The Qt XML Patterns module provides support for XPath, XQuery, XSLT,
|
||||||
|
and XML Schema validation.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Programming examples and libraries for qt5-qtxmlpatterns development
|
Summary: Development files for %{name}
|
||||||
Requires: %{name} = %{version}-%{release} qt5-qtbase-devel
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: qt5-qtbase-devel%{?_isa}
|
||||||
Provides: qt5-qtxmlpatterns-examples = %{version}-%{release}
|
|
||||||
Obsoletes: qt5-qtxmlpatterns-examples < %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains the programming examples and libraries for qt5-qtxmlpatterns development.
|
%{summary}.
|
||||||
|
|
||||||
|
%package examples
|
||||||
|
Summary: Programming examples for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
%description examples
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n qtxmlpatterns-everywhere-src-%{version} -p1
|
%autosetup -n qtxmlpatterns-everywhere-src-%{version} -p1
|
||||||
@ -36,55 +55,63 @@ This package contains the programming examples and libraries for qt5-qtxmlpatter
|
|||||||
%make_install INSTALL_ROOT=%{buildroot}
|
%make_install INSTALL_ROOT=%{buildroot}
|
||||||
|
|
||||||
mkdir %{buildroot}%{_bindir}
|
mkdir %{buildroot}%{_bindir}
|
||||||
cd %{buildroot}%{_qt5_bindir}
|
pushd %{buildroot}%{_qt5_bindir}
|
||||||
|
for i in * ; do
|
||||||
for i in *
|
case "${i}" in
|
||||||
do
|
xmlpatterns|xmlpatternsvalidator)
|
||||||
if [ ${i} = "xmlpatterns" ]
|
ln -v ${i} %{buildroot}%{_bindir}/${i}-qt5
|
||||||
then
|
ln -sv ${i} ${i}-qt5
|
||||||
ln ${i} %{buildroot}%{_bindir}/${i}-qt5
|
;;
|
||||||
ln -s ${i} ${i}-qt5
|
*)
|
||||||
elif [ ${i} = "xmlpatternsvalidator" ]
|
ln -v ${i} %{buildroot}%{_bindir}/${i}
|
||||||
then
|
;;
|
||||||
ln ${i} %{buildroot}%{_bindir}/${i}-qt5
|
esac
|
||||||
ln -s ${i} ${i}-qt5
|
|
||||||
else
|
|
||||||
ln ${i} %{buildroot}%{_bindir}/${i}
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
cd -
|
popd
|
||||||
|
|
||||||
cd %{buildroot}%{_qt5_libdir}
|
## .prl/.la file love
|
||||||
for prl_file in libQt5*.prl
|
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
||||||
do
|
pushd %{buildroot}%{_qt5_libdir}
|
||||||
|
for prl_file in libQt5*.prl ; do
|
||||||
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
|
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
|
||||||
if [ -f "$(basename ${prl_file} .prl).so" ]
|
if [ -f "$(basename ${prl_file} .prl).so" ]; then
|
||||||
then
|
|
||||||
rm -fv "$(basename ${prl_file} .prl).la"
|
rm -fv "$(basename ${prl_file} .prl).la"
|
||||||
sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
|
sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
cd -
|
popd
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
|
||||||
%postun -p /sbin/ldconfig
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE.LGPL*
|
%license LICENSE.LGPL*
|
||||||
%{_qt5_libdir}/libQt5*.*
|
%{_qt5_libdir}/libQt5XmlPatterns.so.5*
|
||||||
|
# consider subpkg to make boostrapping easier? -- rex
|
||||||
|
%if 0%{?qml}
|
||||||
%{_qt5_archdatadir}/qml/QtQuick/XmlListModel/
|
%{_qt5_archdatadir}/qml/QtQuick/XmlListModel/
|
||||||
|
%endif
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_qt5_bindir}/xmlpatterns*
|
%{_qt5_bindir}/xmlpatterns*
|
||||||
%{_bindir}/xmlpatterns*
|
%{_bindir}/xmlpatterns*
|
||||||
%{_qt5_headerdir}/Qt*/
|
%{_qt5_headerdir}/Qt*/
|
||||||
|
%{_qt5_libdir}/libQt5*.so
|
||||||
|
%{_qt5_libdir}/libQt5*.prl
|
||||||
%{_qt5_libdir}/cmake/Qt5*/
|
%{_qt5_libdir}/cmake/Qt5*/
|
||||||
%{_qt5_libdir}/pkgconfig/Qt5*.pc
|
%{_qt5_libdir}/pkgconfig/Qt5*.pc
|
||||||
%{_qt5_archdatadir}/mkspecs/modules/*.pri
|
%{_qt5_archdatadir}/mkspecs/modules/*.pri
|
||||||
|
|
||||||
|
%if !0%{?no_examples:1}
|
||||||
|
%files examples
|
||||||
%{_qt5_examplesdir}/
|
%{_qt5_examplesdir}/
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%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
|
* Wed Oct 13 2021 peijiankang <peijiankang@kylinos.cn> - 5.15.2-1
|
||||||
- update to upstream version 5.15.2
|
- update to upstream version 5.15.2
|
||||||
|
|
||||||
|
|||||||
BIN
qtxmlpatterns-everywhere-opensource-src-5.15.10.tar.xz
Normal file
BIN
qtxmlpatterns-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