diff --git a/.gitignore b/.gitignore deleted file mode 100644 index b662c87..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/qtquick1-opensource-src-5.7.1-2bc722a.tar.xz -/qtquick1-opensource-src-5.8.0-6954604.tar.xz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..0d864e3 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +qtquick1 deprecated upstream, and no longer included since (at leaset) last 2 Qt5 releases diff --git a/qt5-qtquick1.spec b/qt5-qtquick1.spec deleted file mode 100644 index 6c354cd..0000000 --- a/qt5-qtquick1.spec +++ /dev/null @@ -1,315 +0,0 @@ - -%global qt_module qtquick1 - -%global commit0 695460401d9a89d2f156016d51601b2e59b64105 -%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) - -Summary: A declarative language for describing user interfaces in Qt5 -Name: qt5-%{qt_module} -Version: 5.8.0 -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 -# 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.8.0/ origin/dev | tar -x -C .. -# cd ../qtquick1-opensource-src-5.7.0 && syncqt.pl -version 5.7.0 && cd .. -# tar cfJ qt5-qtquick1-opensource-src-5.7.0.tar.xz qtquick1-opensource-src-5.7.0/ -Source0: %{qt_module}-opensource-src-%{version}-%{shortcommit0}.tar.xz - -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}} -## can omit for now, ^^ is enough -- rex -#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 -* Wed May 10 2017 Rex Dieter - 5.8.0-2.6954604git -- rebuild (qt5) - -* Fri Mar 31 2017 Rex Dieter - 5.8.0-1.6954604git -- dev branch snapshot - -* Sat Feb 11 2017 Fedora Release Engineering - 5.7.1-2.2bc722agit -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Sat Dec 10 2016 Rex Dieter - 5.7.1-1.2bc722a -- 5.7 branch snapshot - -* Tue Jul 19 2016 Rex Dieter - 5.7.0-2 -- 5.7 branch snapshot - -* Tue Jul 19 2016 Rex Dieter - 5.7.0-1.26229cfgit -- 5.7.0 branch snapshot - -* Sun Jul 17 2016 Rex Dieter - 5.6.1-2.92c847egit -- rebuild (qt5) - -* Fri Jun 10 2016 Rex Dieter - 5.6.1-1.92c847egit -- 5.6.1 branch snapshot - -* Fri Jun 10 2016 Jan Grulich - 5.6.0-5 -- Rebuild (qt5-qtbase) - -* Sun Apr 17 2016 Rex Dieter - 5.6.0-4 -- BR: qt5-qtbase-private-devel qt5-qtscript-private-devel - -* Sun Mar 20 2016 Rex Dieter - 5.6.0-3 -- rebuild - -* Fri Mar 18 2016 Rex Dieter - 5.6.0-2 -- rebuild - -* Wed Mar 16 2016 Helio Chissini de Castro - 5.6.0-0.8.rc -- 5.6.0 final release - -* Sun Feb 21 2016 Rex Dieter 5.6.0-0.7.rc -- rebuild - -* Mon Feb 15 2016 Helio Chissini de Castro - 5.6.0-0.6 -- Update RC release - -* Thu Feb 04 2016 Fedora Release Engineering - 5.6.0-0.5.beta1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Jan 21 2016 Rex Dieter 5.6.0-0.4.beta1 -- fix Sources - -* Mon Dec 28 2015 Rex Dieter 5.6.0-0.3.beta -- use %%license, clarify no -docs, BR: cmake - -* Thu Dec 10 2015 Helio Chissini de Castro - 5.6.0-0.2 -- Official beta release - -* Tue Nov 03 2015 Helio Chissini de Castro - 5.6.0-0.1 -- Start to implement 5.6.0 beta - -* Thu Oct 15 2015 Helio Chissini de Castro - 5.5.1-2 -- Update to final release 5.5.1 - -* Tue Sep 29 2015 Helio Chissini de Castro - 5.5.1-1 -- Update to Qt 5.5.1 RC1 - -* Wed Jul 29 2015 Rex Dieter 5.5.0-3 -- -docs: BuildRequires: qt5-qhelpgenerator - -* Thu Jul 16 2015 Rex Dieter 5.5.0-2 -- tighten deps (#1233829) - -* Wed Jul 1 2015 Helio Chissini de Castro 5.5.0-1 -- New final upstream release Qt 5.5.0 - -* Wed Jun 17 2015 Daniel Vrátil - 5.5.0-0.1.rc -- Qt 5.5.0 RC1 - -* Thu Jun 04 2015 Jan Grulich - 5.4.2-1 -- 5.4.2 - -* Sat May 02 2015 Kalev Lember - 5.4.1-3 -- Rebuilt for GCC 5 C++11 ABI change - -* Fri Feb 27 2015 Rex Dieter - 5.4.1-2 -- rebuild (gcc5) - -* Tue Feb 24 2015 Jan Grulich 5.4.1-1 -- 5.4.1 - -* Wed Dec 10 2014 Rex Dieter 5.4.0-1 -- 5.4.0 (final) - -* Fri Nov 28 2014 Rex Dieter 5.4.0-0.3.rc -- 5.4.0-rc - -* Mon Nov 03 2014 Rex Dieter 5.4.0-0.2.beta -- out-of-tree build, use %%qmake_qt5 - -* Sun Oct 19 2014 Rex Dieter 5.4.0-0.1.beta -- 5.4.0-beta - -* Wed Sep 17 2014 Rex Dieter - 5.3.2-1 -- 5.3.2 - -* Tue Sep 16 2014 Rex Dieter -- 5.3.1-3 -- move qml1plugindump, qmlviewer to -devel -- qml1plugindump-qt5 wrapper (since qtchooser can handle it) - -* Sun Aug 17 2014 Fedora Release Engineering - 5.3.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Tue Jun 17 2014 Jan Grulich - 5.3.1-1 -- 5.3.1 - -* Sun Jun 08 2014 Fedora Release Engineering - 5.3.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 21 2014 Jan Grulich 5.3.0-1 -- 5.3.0 - -* Mon May 05 2014 Rex Dieter 5.2.1-2 -- use standard (same as qtbase) .prl sanitation - -* Wed Feb 05 2014 Rex Dieter 5.2.1-1 -- 5.2.1 - -* Mon Jan 27 2014 Rex Dieter 5.2.0-2 -- -examples subpkg - -* Thu Dec 12 2013 Rex Dieter 5.2.0-1 -- 5.2.0 - -* Mon Dec 02 2013 Rex Dieter 5.2.0-0.10.rc1 -- 5.2.0-rc1 - -* Sun Nov 10 2013 Rex Dieter 5.2.0-0.5.beta1 -- rebuild (arm/qreal) - -* Thu Oct 24 2013 Rex Dieter 5.2.0-0.4.beta1 -- 5.2.0-beta1 - -* Wed Oct 16 2013 Rex Dieter 5.2.0-0.3.alpha -- ppc bootstrap - -* Wed Oct 02 2013 Rex Dieter 5.2.0-0.2.alpha -- nix -doc (no content) - -* Wed Oct 02 2013 Rex Dieter 5.2.0-0.1.alpha -- 5.2.0-alpha -- -doc subpkg - -* Mon Sep 16 2013 Rex Dieter 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 5.1.1-1 -- 5.1.1 - -* Thu May 09 2013 Rex Dieter 5.0.2-2 -- fix qmlviewer conflict with qt4 - -* Thu Apr 11 2013 Rex Dieter 5.0.2-1 -- 5.0.2 - -* Sat Feb 23 2013 Rex Dieter 5.0.1-1 -- first try - diff --git a/sources b/sources deleted file mode 100644 index 9846fc1..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (qtquick1-opensource-src-5.8.0-6954604.tar.xz) = 2488e9fee085286b08a86b585fe316e2057c56cfb70ee9e6a01d0749e49ab337ed3b3d6c4734c10c748598b115b90c4d9fbbf0294dd89e68eebfbf25232f6754