|
@@ -0,0 +1,301 @@
|
|
|
+
|
|
|
+%global qt_module qtquick1
|
|
|
+
|
|
|
+%global commit0 92c847e56d94c9032f3fa83922742e455233e4f3
|
|
|
+%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
|
|
+
|
|
|
+Summary: A declarative language for describing user interfaces in Qt5
|
|
|
+Name: qt5-%{qt_module}
|
|
|
+Version: 5.6.1
|
|
|
+Release: 2.%{shortcommit0}git%{?dist}
|
|
|
+
|
|
|
+# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
|
|
|
+License: LGPLv2 with exceptions or GPLv3 with exceptions
|
|
|
+Url: http://www.qt.io
|
|
|
+
|
|
|
+Vendor: Project Vine
|
|
|
+Distribution: Vine Linux
|
|
|
+
|
|
|
+# The source for this package was pulled from upstream's vcs. Use the
|
|
|
+# following commands to generate the tarball:
|
|
|
+# git clone git@github.com:qtproject/qtquick1.git && cd qtquick1
|
|
|
+# git archive --prefix=qtquick1-opensource-src-5.6.1/ origin/5.6.1 | tar -x -C ..
|
|
|
+# cd ../qtquick1-opensource-src-5.6.1 && syncqt.pl -version 5.6.1 && cd ..
|
|
|
+# tar cfJ qt5-qtquick1-opensource-src-5.6.1.tar.xz qtquick1-opensource-src-5.6.1/
|
|
|
+Source0: %{qt_module}-opensource-src-%{version}-%{shortcommit0}.tar.xz
|
|
|
+
|
|
|
+BuildRequires: cmake
|
|
|
+BuildRequires: qt5-qtbase-devel >= %{version}
|
|
|
+BuildRequires: qt5-qtscript-devel >= %{version}
|
|
|
+BuildRequires: qt5-qttools-devel
|
|
|
+BuildRequires: qt5-qtwebkit-devel
|
|
|
+BuildRequires: qt5-qtxmlpatterns-devel
|
|
|
+
|
|
|
+BuildRequires: qt5-qtbase-private-devel
|
|
|
+%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
|
|
+BuildRequires: qt5-qtscript-private-devel
|
|
|
+%{?_qt5:Requires: qt5-qtscript%{?_isa} = %{_qt5_version}}
|
|
|
+
|
|
|
+%description
|
|
|
+Qt Quick is a collection of technologies that are designed to help
|
|
|
+developers create the kind of intuitive, modern, fluid user interfaces
|
|
|
+that are increasingly used on mobile phones, media players, set-top
|
|
|
+boxes and other portable devices.
|
|
|
+
|
|
|
+Qt Quick consists of a rich set of user interface elements, a declarative
|
|
|
+language for describing user interfaces and a language runtime. A
|
|
|
+collection of C++ APIs is used to integrate these high level features
|
|
|
+with classic Qt applications.
|
|
|
+
|
|
|
+%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
|
|
|
+%autosetup -n %{qt_module}-opensource-src-%{version}
|
|
|
+
|
|
|
+
|
|
|
+%build
|
|
|
+mkdir %{_target_platform}
|
|
|
+pushd %{_target_platform}
|
|
|
+%{qmake_qt5} ..
|
|
|
+
|
|
|
+make %{?_smp_mflags}
|
|
|
+
|
|
|
+
|
|
|
+%install
|
|
|
+make install INSTALL_ROOT=%{buildroot} -C %{_target_platform}
|
|
|
+
|
|
|
+# hardlink files to %{_bindir}, add -qt5 postfix to not conflict
|
|
|
+mkdir %{buildroot}%{_bindir}
|
|
|
+pushd %{buildroot}%{_qt5_bindir}
|
|
|
+for i in * ; do
|
|
|
+ case "${i}" in
|
|
|
+ # qt4 conflicts
|
|
|
+ qmlviewer)
|
|
|
+ ln -v ${i} %{buildroot}%{_bindir}/${i}-qt5
|
|
|
+ ln -sv ${i} ${i}-qt5
|
|
|
+ ;;
|
|
|
+ # stuff handled by qtchooser
|
|
|
+ qml1plugindump)
|
|
|
+ ln -v ${i} %{buildroot}%{_bindir}/${i}
|
|
|
+ ln -v ${i} %{buildroot}%{_bindir}/${i}-qt5
|
|
|
+ ln -sv ${i} ${i}-qt5
|
|
|
+ ;;
|
|
|
+ *)
|
|
|
+ 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}%{_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
|
|
|
+
|
|
|
+%post -p /sbin/ldconfig
|
|
|
+%postun -p /sbin/ldconfig
|
|
|
+
|
|
|
+%files
|
|
|
+%license LICENSE.LGPL* LGPL_EXCEPTION.txt
|
|
|
+%{_qt5_libdir}/libQt5Declarative.so.5*
|
|
|
+%{_qt5_importdir}/Qt/
|
|
|
+%{_qt5_importdir}/QtWebKit/
|
|
|
+%{_qt5_importdir}/builtins.qmltypes
|
|
|
+%{_qt5_plugindir}/designer/*.so
|
|
|
+%{_qt5_plugindir}/qml1tooling/
|
|
|
+%dir %{_qt5_libdir}/cmake/Qt5Declarative/
|
|
|
+%{_qt5_libdir}/cmake/Qt5Declarative/Qt5Declarative_QTcpServerConnection.cmake
|
|
|
+%{_qt5_libdir}/cmake/Qt5Declarative/Qt5Declarative_QtQuick1Plugin.cmake
|
|
|
+%dir %{_qt5_libdir}/cmake/Qt5Designer/
|
|
|
+%{_qt5_libdir}/cmake/Qt5Designer/Qt5Designer_QDeclarativeViewPlugin.cmake
|
|
|
+
|
|
|
+%files devel
|
|
|
+%{_qt5_bindir}/qml1plugindump*
|
|
|
+%{_qt5_bindir}/qmlviewer*
|
|
|
+%{_bindir}/qml1plugindump*
|
|
|
+%{_bindir}/qmlviewer*
|
|
|
+%{_qt5_headerdir}/QtDeclarative/
|
|
|
+%{_qt5_libdir}/libQt5Declarative.so
|
|
|
+%{_qt5_libdir}/libQt5Declarative.prl
|
|
|
+%{_qt5_libdir}/cmake/Qt5Declarative/Qt5DeclarativeConfig*.cmake
|
|
|
+%{_qt5_libdir}/pkgconfig/Qt5Declarative.pc
|
|
|
+%{_qt5_archdatadir}/mkspecs/modules/qt_lib_declarative*.pri
|
|
|
+
|
|
|
+%if 0%{?_qt5_examplesdir:1}
|
|
|
+%files examples
|
|
|
+%{_qt5_examplesdir}/declarative/
|
|
|
+%endif
|
|
|
+
|
|
|
+
|
|
|
+%changelog
|
|
|
+* Mon Jul 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.6.1-2.92c847egit
|
|
|
+- initial build for Vine Linux.
|
|
|
+
|
|
|
+* Fri Jun 10 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-1.92c847egit
|
|
|
+- 5.6.1 branch snapshot
|
|
|
+
|
|
|
+* Fri Jun 10 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.0-5
|
|
|
+- Rebuild (qt5-qtbase)
|
|
|
+
|
|
|
+* Sun Apr 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-4
|
|
|
+- BR: qt5-qtbase-private-devel qt5-qtscript-private-devel
|
|
|
+
|
|
|
+* Sun Mar 20 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-3
|
|
|
+- rebuild
|
|
|
+
|
|
|
+* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-2
|
|
|
+- rebuild
|
|
|
+
|
|
|
+* Wed Mar 16 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.8.rc
|
|
|
+- 5.6.0 final release
|
|
|
+
|
|
|
+* Sun Feb 21 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.7.rc
|
|
|
+- rebuild
|
|
|
+
|
|
|
+* Mon Feb 15 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.6
|
|
|
+- Update RC release
|
|
|
+
|
|
|
+* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-0.5.beta1
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
+
|
|
|
+* Thu Jan 21 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.4.beta1
|
|
|
+- fix Sources
|
|
|
+
|
|
|
+* Mon Dec 28 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.3.beta
|
|
|
+- use %%license, clarify no -docs, BR: cmake
|
|
|
+
|
|
|
+* Thu Dec 10 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.2
|
|
|
+- Official beta release
|
|
|
+
|
|
|
+* Tue Nov 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.1
|
|
|
+- Start to implement 5.6.0 beta
|
|
|
+
|
|
|
+* Thu Oct 15 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-2
|
|
|
+- Update to final release 5.5.1
|
|
|
+
|
|
|
+* Tue Sep 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-1
|
|
|
+- Update to Qt 5.5.1 RC1
|
|
|
+
|
|
|
+* Wed Jul 29 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-3
|
|
|
+- -docs: BuildRequires: qt5-qhelpgenerator
|
|
|
+
|
|
|
+* Thu Jul 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-2
|
|
|
+- tighten deps (#1233829)
|
|
|
+
|
|
|
+* Wed Jul 1 2015 Helio Chissini de Castro <helio@kde.org> 5.5.0-1
|
|
|
+- New final upstream release Qt 5.5.0
|
|
|
+
|
|
|
+* Wed Jun 17 2015 Daniel Vrátil <dvratil@redhat.com> - 5.5.0-0.1.rc
|
|
|
+- Qt 5.5.0 RC1
|
|
|
+
|
|
|
+* Thu Jun 04 2015 Jan Grulich <jgrulich@redhat.com> - 5.4.2-1
|
|
|
+- 5.4.2
|
|
|
+
|
|
|
+* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 5.4.1-3
|
|
|
+- Rebuilt for GCC 5 C++11 ABI change
|
|
|
+
|
|
|
+* Fri Feb 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-2
|
|
|
+- rebuild (gcc5)
|
|
|
+
|
|
|
+* Tue Feb 24 2015 Jan Grulich <jgrulich@redhat.com> 5.4.1-1
|
|
|
+- 5.4.1
|
|
|
+
|
|
|
+* Wed Dec 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-1
|
|
|
+- 5.4.0 (final)
|
|
|
+
|
|
|
+* Fri Nov 28 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.3.rc
|
|
|
+- 5.4.0-rc
|
|
|
+
|
|
|
+* Mon Nov 03 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.2.beta
|
|
|
+- out-of-tree build, use %%qmake_qt5
|
|
|
+
|
|
|
+* Sun Oct 19 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.1.beta
|
|
|
+- 5.4.0-beta
|
|
|
+
|
|
|
+* Wed Sep 17 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.3.2-1
|
|
|
+- 5.3.2
|
|
|
+
|
|
|
+* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org>
|
|
|
+- 5.3.1-3
|
|
|
+- move qml1plugindump, qmlviewer to -devel
|
|
|
+- qml1plugindump-qt5 wrapper (since qtchooser can handle it)
|
|
|
+
|
|
|
+* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
+
|
|
|
+* Tue Jun 17 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.1-1
|
|
|
+- 5.3.1
|
|
|
+
|
|
|
+* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-2
|
|
|
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
+
|
|
|
+* Wed May 21 2014 Jan Grulich <jgrulich@redhat.com> 5.3.0-1
|
|
|
+- 5.3.0
|
|
|
+
|
|
|
+* Mon May 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-2
|
|
|
+- use standard (same as qtbase) .prl sanitation
|
|
|
+
|
|
|
+* Wed Feb 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-1
|
|
|
+- 5.2.1
|
|
|
+
|
|
|
+* Mon Jan 27 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-2
|
|
|
+- -examples subpkg
|
|
|
+
|
|
|
+* Thu Dec 12 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-1
|
|
|
+- 5.2.0
|
|
|
+
|
|
|
+* Mon Dec 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.10.rc1
|
|
|
+- 5.2.0-rc1
|
|
|
+
|
|
|
+* Sun Nov 10 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.5.beta1
|
|
|
+- rebuild (arm/qreal)
|
|
|
+
|
|
|
+* Thu Oct 24 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.4.beta1
|
|
|
+- 5.2.0-beta1
|
|
|
+
|
|
|
+* Wed Oct 16 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.3.alpha
|
|
|
+- ppc bootstrap
|
|
|
+
|
|
|
+* Wed Oct 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.2.alpha
|
|
|
+- nix -doc (no content)
|
|
|
+
|
|
|
+* Wed Oct 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.1.alpha
|
|
|
+- 5.2.0-alpha
|
|
|
+- -doc subpkg
|
|
|
+
|
|
|
+* Mon Sep 16 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-2
|
|
|
+- %%doc LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt
|
|
|
+- escape macros in comments
|
|
|
+- better %%description/%%summary
|
|
|
+
|
|
|
+* Tue Sep 03 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-1
|
|
|
+- 5.1.1
|
|
|
+
|
|
|
+* Thu May 09 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-2
|
|
|
+- fix qmlviewer conflict with qt4
|
|
|
+
|
|
|
+* Thu Apr 11 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-1
|
|
|
+- 5.0.2
|
|
|
+
|
|
|
+* Sat Feb 23 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-1
|
|
|
+- first try
|
|
|
+
|