diff --git a/qt6-qtquick3d.spec b/qt6-qtquick3d.spec index 390740a32f565c44adaa6fdd8da1162467a0c03a..6cd25fa7c4deeb430b2adafcdf065e5d55fc3646 100644 --- a/qt6-qtquick3d.spec +++ b/qt6-qtquick3d.spec @@ -7,7 +7,7 @@ Summary: Qt6 - Quick3D Libraries and utilities Name: qt6-%{qt_module} -Version: 6.5.1 +Version: 6.5.2 Release: 1 License: GPL-3.0-only WITH Qt-GPL-exception-1.0 @@ -60,6 +60,21 @@ cmake --build . %{?_smp_mflags} --verbose %install DESTDIR="%{buildroot}" cmake --install . +# hardlink files to %{_bindir}, add -qt6 postfix to not conflict +mkdir %{buildroot}%{_bindir} +pushd %{buildroot}%{_qt6_bindir} +for i in * ; do + case "${i}" in + balsam|meshdebug|shadergen|balsamui|instancer|materialeditor|shapegen) + ln -v ${i} %{buildroot}%{_bindir}/${i}-qt6 + ;; + *) + ln -v ${i} %{buildroot}%{_bindir}/${i} + ;; + esac +done +popd + ## .prl/.la file love # nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs pushd %{buildroot}%{_qt6_libdir} @@ -94,6 +109,13 @@ popd %{_qt6_plugindir}/assetimporters/*.so %files devel +%{_bindir}/balsam-qt6 +%{_bindir}/meshdebug-qt6 +%{_bindir}/shadergen-qt6 +%{_bindir}/balsamui-qt6 +%{_bindir}/instancer-qt6 +%{_bindir}/materialeditor-qt6 +%{_bindir}/shapegen-qt6 %{_qt6_bindir}/balsam %{_qt6_bindir}/meshdebug %{_qt6_bindir}/shadergen @@ -185,6 +207,9 @@ popd %endif %changelog +* Thu Nov 30 2023 douyan - 6.5.2-1 +- update to upstream version 6.5.2 + * Fri Aug 11 2023 sunhui - 6.5.1-1 - Update package to version 6.5.1 diff --git a/qtquick3d-everywhere-src-6.5.1.tar.xz b/qtquick3d-everywhere-src-6.5.2.tar.xz similarity index 83% rename from qtquick3d-everywhere-src-6.5.1.tar.xz rename to qtquick3d-everywhere-src-6.5.2.tar.xz index 69bba4bed05907652b7b9505cd2bd64cc71676c0..e908688eb2d80f073fa1a4ecb342dabff3278e1f 100644 Binary files a/qtquick3d-everywhere-src-6.5.1.tar.xz and b/qtquick3d-everywhere-src-6.5.2.tar.xz differ