Blame SPECS/qt5-qtdeclarative.spec

2ab645
2ab645
%global qt_module qtdeclarative
2ab645
2ab645
# define to build docs, need to undef this for bootstrapping
2ab645
# where qt5-qttools builds are not yet available
2ab645
# only primary archs (for now), allow secondary to bootstrap
2ab645
# global bootstrap 1
2ab645
2ab645
%if ! 0%{?bootstrap}
2ab645
%ifarch %{arm} %{ix86} x86_64
2ab645
%global docs 1
2ab645
%global tests 1
2ab645
%endif
2ab645
%endif
2ab645
2ab645
%global nosse2_hack 1
2ab645
2ab645
Summary: Qt5 - QtDeclarative component
2ab645
Name:    qt5-%{qt_module}
a4cf3a
Version: 5.6.2
a4cf3a
Release: 1%{?dist}
2ab645
2ab645
# See LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt, for details
2ab645
License: LGPLv2 with exceptions or GPLv3 with exceptions
2ab645
Url:     http://www.qt.io
a4cf3a
Source0: http://download.qt.io/official_releases/qt/5.6/%{version}/submodules/%{qt_module}-opensource-src-%{version}.tar.xz
2ab645
2ab645
# support no_sse2 CONFIG (fedora i686 builds cannot assume -march=pentium4 -msse2 -mfpmath=sse flags, or the JIT that needs them)
2ab645
# https://codereview.qt-project.org/#change,73710
2ab645
Patch1: qtdeclarative-opensource-src-5.5.0-no_sse2.patch
2ab645
2ab645
# workaround for possible deadlock condition in QQuickShaderEffectSource
2ab645
# https://bugzilla.redhat.com/show_bug.cgi?id=1237269
2ab645
# https://bugs.kde.org/show_bug.cgi?id=348385
2ab645
Patch2: qtdeclarative-QQuickShaderEffectSource_deadlock.patch
2ab645
2ab645
## upstream patches
2ab645
2ab645
## upstreamable patches
2ab645
# use system double-conversation
2ab645
%if 0%{?fedora}
2ab645
%global system_doubleconv 1
2ab645
BuildRequires: double-conversion-devel
2ab645
%endif
2ab645
Patch200: qtdeclarative-system_doubleconv.patch
2ab645
# https://bugs.kde.org/show_bug.cgi?id=346118#c108
2ab645
Patch201: qtdeclarative-kdebug346118.patch
2ab645
2ab645
## upstream patches under review
2ab645
# Check-for-NULL-from-glGetStrin
2ab645
Patch500: Check-for-NULL-from-glGetString.patch
2ab645
2ab645
Obsoletes: qt5-qtjsbackend < 5.2.0
2ab645
2ab645
BuildRequires: cmake
2ab645
BuildRequires: qt5-qtbase-devel >= %{version}
2ab645
BuildRequires: qt5-qtbase-private-devel
2ab645
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
2ab645
%if ! 0%{?bootstrap}
a4cf3a
BuildRequires: qt5-qtxmlpatterns-devel
2ab645
%endif
2ab645
BuildRequires: python
2ab645
2ab645
%if 0%{?tests}
2ab645
BuildRequires: dbus-x11
2ab645
BuildRequires: mesa-dri-drivers
2ab645
BuildRequires: time
2ab645
BuildRequires: xorg-x11-server-Xvfb
2ab645
%endif
2ab645
2ab645
%description
2ab645
%{summary}.
2ab645
2ab645
%package devel
2ab645
Summary: Development files for %{name}
2ab645
Obsoletes: qt5-qtjsbackend-devel < 5.2.0
2ab645
Provides:  %{name}-private-devel = %{version}-%{release}
2ab645
Requires: %{name}%{?_isa} = %{version}-%{release}
2ab645
Requires: qt5-qtbase-devel%{?_isa}
2ab645
%description devel
2ab645
%{summary}.
2ab645
2ab645
%package static
2ab645
Summary: Static library files for %{name}
2ab645
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
2ab645
%description static
2ab645
%{summary}.
2ab645
2ab645
%if 0%{?docs}
2ab645
%package doc
2ab645
Summary: API documentation for %{name}
2ab645
License: GFDL
2ab645
Requires: %{name} = %{version}-%{release}
2ab645
BuildRequires: qt5-qdoc
2ab645
BuildRequires: qt5-qhelpgenerator
2ab645
BuildArch: noarch
2ab645
%description doc
2ab645
%{summary}.
2ab645
%endif
2ab645
2ab645
%package examples
2ab645
Summary: Programming examples for %{name}
2ab645
Requires: %{name}%{?_isa} = %{version}-%{release}
2ab645
%description examples
2ab645
%{summary}.
2ab645
2ab645
2ab645
%prep
a4cf3a
%setup -q -n %{qt_module}-opensource-src-%{version}
2ab645
%if 0%{?nosse2_hack}
2ab645
%patch1 -p1 -b .no_sse2
2ab645
%endif
2ab645
%patch2 -p1 -b .QQuickShaderEffectSource_deadlock
2ab645
2ab645
%if 0%{?system_doubleconv}
2ab645
%patch200 -p1 -b .system_doubleconv
2ab645
rm -rfv src/3rdparty/double-conversion
2ab645
%endif
2ab645
%patch201 -p0 -b .kdebug346118
2ab645
2ab645
%patch500 -p1 -b .Check-for-NULL-from-glGetString
2ab645
2ab645
2ab645
%build
2ab645
mkdir %{_target_platform}
2ab645
pushd %{_target_platform}
2ab645
%{qmake_qt5} ..
2ab645
popd
2ab645
2ab645
make %{?_smp_mflags} -C %{_target_platform}
2ab645
2ab645
%if 0%{?nosse2_hack}
2ab645
# build libQt5Qml with no_sse2
2ab645
mkdir -p %{_target_platform}-no_sse2
2ab645
pushd    %{_target_platform}-no_sse2
2ab645
%{qmake_qt5} -config no_sse2 ..
2ab645
make sub-src-clean
2ab645
make %{?_smp_mflags} -C src/qml
2ab645
popd
2ab645
%endif
2ab645
2ab645
%if 0%{?docs}
2ab645
make %{?_smp_mflags} docs -C %{_target_platform}
2ab645
%endif
2ab645
2ab645
2ab645
%install
2ab645
make install INSTALL_ROOT=%{buildroot} -C %{_target_platform}
2ab645
2ab645
%if 0%{?nosse2_hack}
2ab645
mkdir -p %{buildroot}%{_qt5_libdir}/sse2
2ab645
mv %{buildroot}%{_qt5_libdir}/libQt5Qml.so.5* %{buildroot}%{_qt5_libdir}/sse2/
2ab645
make install INSTALL_ROOT=%{buildroot} -C %{_target_platform}-no_sse2/src/qml
2ab645
%endif
2ab645
2ab645
%if 0%{?docs}
2ab645
make install_docs INSTALL_ROOT=%{buildroot} -C %{_target_platform}
2ab645
%endif
2ab645
2ab645
# hardlink files to %{_bindir}, add -qt5 postfix to not conflict
2ab645
mkdir %{buildroot}%{_bindir}
2ab645
pushd %{buildroot}%{_qt5_bindir}
2ab645
for i in * ; do
2ab645
  case "${i}" in
2ab645
    # qt4 conflicts
2ab645
    qmlplugindump|qmlprofiler)
2ab645
      ln -v  ${i} %{buildroot}%{_bindir}/${i}-qt5
2ab645
      ln -sv ${i} ${i}-qt5
2ab645
      ;;
2ab645
    # qtchooser stuff
2ab645
    qml|qmlbundle|qmlmin|qmlscene)
2ab645
      ln -v  ${i} %{buildroot}%{_bindir}/${i}
2ab645
      ln -v  ${i} %{buildroot}%{_bindir}/${i}-qt5
2ab645
      ln -sv ${i} ${i}-qt5
2ab645
      ;;
2ab645
    *)
2ab645
      ln -v  ${i} %{buildroot}%{_bindir}/${i}
2ab645
      ;;
2ab645
  esac
2ab645
done
2ab645
popd
2ab645
2ab645
## .prl/.la file love
2ab645
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
2ab645
pushd %{buildroot}%{_qt5_libdir}
2ab645
for prl_file in libQt5*.prl ; do
a4cf3a
  sed -i \
a4cf3a
    -e "/^QMAKE_PRL_BUILD_DIR/d" \
a4cf3a
    -e "/-ldouble-conversion/d" \
a4cf3a
    ${prl_file}
2ab645
  if [ -f "$(basename ${prl_file} .prl).so" ]; then
2ab645
    rm -fv "$(basename ${prl_file} .prl).la"
a4cf3a
  else
a4cf3a
    sed -i \
a4cf3a
       -e "/^QMAKE_PRL_LIBS/d" \
a4cf3a
       -e "/-ldouble-conversion/d" \
a4cf3a
       $(basename ${prl_file} .prl).la
2ab645
  fi
2ab645
done
2ab645
popd
2ab645
2ab645
%check
a4cf3a
test -z "$(grep double-conversion %{buildroot}%{_qt5_libdir}/*.{la,prl})"
2ab645
%if 0%{?tests}
2ab645
export CTEST_OUTPUT_ON_FAILURE=1
2ab645
export PATH=%{buildroot}%{_qt5_bindir}:$PATH
2ab645
export LD_LIBRARY_PATH=%{buildroot}%{_qt5_libdir}
2ab645
make sub-tests-all %{?_smp_mflags} -C %{_target_platform}
2ab645
xvfb-run -a \
2ab645
dbus-launch --exit-with-session \
2ab645
time \
2ab645
make check -k -C %{_target_platform}/tests ||:
2ab645
%endif
2ab645
2ab645
%post -p /sbin/ldconfig
2ab645
%postun -p /sbin/ldconfig
2ab645
2ab645
%files
2ab645
%{!?_licensedir:%global license %%doc}
2ab645
%license LICENSE.LGPL* LGPL_EXCEPTION.txt
2ab645
%{_qt5_libdir}/libQt5Qml.so.5*
2ab645
%if 0%{?nosse2_hack}
2ab645
%{_qt5_libdir}/sse2/libQt5Qml.so.5*
2ab645
%endif
2ab645
%{_qt5_libdir}/libQt5Quick.so.5*
2ab645
%{_qt5_libdir}/libQt5QuickWidgets.so.5*
2ab645
%{_qt5_libdir}/libQt5QuickParticles.so.5*
2ab645
%{_qt5_libdir}/libQt5QuickTest.so.5*
2ab645
%{_qt5_plugindir}/qmltooling/
2ab645
%{_qt5_archdatadir}/qml/
2ab645
%dir %{_qt5_libdir}/cmake/Qt5Qml/
2ab645
%{_qt5_libdir}/cmake/Qt5Qml/Qt5Qml_*Factory.cmake
2ab645
2ab645
%files devel
2ab645
%{_bindir}/qml*
2ab645
%{_qt5_bindir}/qml*
2ab645
%{_qt5_headerdir}/Qt*/
2ab645
%{_qt5_libdir}/libQt5Qml.so
2ab645
%{_qt5_libdir}/libQt5Qml.prl
2ab645
%{_qt5_libdir}/libQt5Quick*.so
2ab645
%{_qt5_libdir}/libQt5Quick*.prl
2ab645
%dir %{_qt5_libdir}/cmake/Qt5Quick*/
2ab645
%{_qt5_libdir}/cmake/Qt5*/Qt5*Config*.cmake
2ab645
%{_qt5_libdir}/pkgconfig/Qt5*.pc
2ab645
%{_qt5_archdatadir}/mkspecs/modules/*.pri
2ab645
2ab645
%files static
2ab645
%{_qt5_libdir}/libQt5QmlDevTools.*a
2ab645
%{_qt5_libdir}/libQt5QmlDevTools.prl
2ab645
2ab645
%if 0%{?docs}
2ab645
%files doc
2ab645
%license LICENSE.FDL
2ab645
%{_qt5_docdir}/qtqml.qch
2ab645
%{_qt5_docdir}/qtqml/
2ab645
%{_qt5_docdir}/qtquick.qch
2ab645
%{_qt5_docdir}/qtquick/
2ab645
%endif
2ab645
2ab645
%files examples
2ab645
%{_qt5_examplesdir}/
2ab645
2ab645
2ab645
%changelog
a4cf3a
* Wed Jan 11 2017 Jan Grulich <jgrulich@redhat.com> - 5.6.2-1
a4cf3a
- Update to 5.6.2
a4cf3a
  Resolves: bz#1384817
a4cf3a
2ab645
* Tue Aug 30 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-10
2ab645
- Increase build version to have newer version than in EPEL
2ab645
  Resolves: bz#1317400
2ab645
2ab645
* Wed Jun 22 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-3
2ab645
- QML: Only release types if they aren't referenced anymore
2ab645
2ab645
* Wed Jun 15 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-2
2ab645
- Apply no_sse2 hack to all architecturs to make qt5-qtdeclarative-devel multilib-clean
2ab645
2ab645
* Wed Jun 08 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-1
2ab645
- Update to 5.6.1 + sync with Fedora
2ab645
  Resolves: bz#1317400
2ab645
2ab645
* Wed Apr 13 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.0-6
2ab645
- Enable documentation
2ab645
  Resolves: bz#1317400
2ab645
2ab645
* Thu Apr 07 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.0-5
2ab645
- Initial version for RHEL
2ab645
  Resolves: bz#1317400
2ab645
2ab645
* Fri Mar 25 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-4
2ab645
- backport upstream fixes
2ab645
- drop -fno-delete-null-pointer-checks hack (included in qt5-rpm-macros as needed now)
2ab645
2ab645
* Sat Mar 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-3
2ab645
- BR: cmake (cmake autoprovides)
2ab645
2ab645
* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-2
2ab645
- rebuild
2ab645
2ab645
* Mon Mar 14 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-1
2ab645
- 5.6.0 final release
2ab645
2ab645
* Tue Feb 23 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.11.rc
2ab645
- Update to final RC
2ab645
2ab645
* Mon Feb 22 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.10
2ab645
- Update RC tarball from git
2ab645
2ab645
* Mon Feb 15 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.9
2ab645
- Update RC release
2ab645
2ab645
* Tue Feb 02 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.8.beta
2ab645
- build with -fno-delete-null-pointer-checks to workaround gcc6-related runtime crashes (#1303643)
2ab645
2ab645
* Thu Jan 28 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.7.beta
2ab645
- backport fix for older compilers (aka rhel6)
2ab645
2ab645
* Sun Jan 17 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.6.beta
2ab645
- use %%license
2ab645
2ab645
* Mon Dec 21 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.5.beta
2ab645
- fix Source URL, Release: tag
2ab645
2ab645
* Mon Dec 21 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.4
2ab645
- Update to final beta release
2ab645
2ab645
* Thu Dec 10 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.3
2ab645
- Official beta release
2ab645
2ab645
* Sun Dec 06 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.2
2ab645
- de-bootstrap
2ab645
2ab645
* Tue Nov 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.1
2ab645
- Start to implement 5.6.0 beta, bootstrap
2ab645
2ab645
* Sat Oct 24 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.1-3
2ab645
- workaround QQuickShaderEffectSource::updatePaintNode deadlock (#1237269, kde#348385)
2ab645
2ab645
* Thu Oct 15 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-2
2ab645
- Update to final release 5.5.1
2ab645
2ab645
* Tue Sep 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-1
2ab645
- Update to Qt 5.5.1 RC1
2ab645
2ab645
* Wed Jul 29 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-3
2ab645
- -docs: BuildRequires: qt5-qhelpgenerator
2ab645
2ab645
* Thu Jul 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-2
2ab645
- tighten qtbase dep (#1233829), .spec cosmetics
2ab645
2ab645
* Wed Jul 1 2015 Helio Chissini de Castro <helio@kde.org> 5.5.0-1
2ab645
- New final upstream release Qt 5.5.0
2ab645
2ab645
* Mon Jun 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.4.rc
2ab645
- Second round of builds now with bootstrap enabled due new qttools
2ab645
2ab645
* Sat Jun 27 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.3.rc
2ab645
- Disable bootstrap
2ab645
2ab645
* Wed Jun 24 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.2.rc
2ab645
- Update for official RC1 released packages
2ab645
2ab645
* Mon Jun 08 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.2-2
2ab645
- restore fix for QTBUG-45753/kde-345544 lost in 5.4.2 rebase
2ab645
2ab645
* Wed Jun 03 2015 Jan Grulich <jgrulich@redhat.com> 5.4.2-1
2ab645
- 5.4.2
2ab645
2ab645
* Sat May 02 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-4
2ab645
- pull in some upstream fixes, for QTBUG-45753/kde-345544 in particular
2ab645
2ab645
* Wed Apr 22 2015 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.4.1-3
2ab645
- fix non-sse2 support (kde#346244) and optimize sse2 binaries
2ab645
2ab645
* Fri Feb 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-2
2ab645
- rebuild (gcc5)
2ab645
2ab645
* Tue Feb 24 2015 Jan Grulich <jgrulich@redhat.com> 5.4.1-1
2ab645
- 5.4.1
2ab645
2ab645
* Mon Feb 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-3
2ab645
- rebuild (gcc)
2ab645
2ab645
* Sat Feb 14 2015 Ville Skyttä <ville.skytta@iki.fi> - 5.4.0-2
2ab645
- Fix cmake dir ownerhips
2ab645
2ab645
* Wed Dec 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-1
2ab645
- 5.4.0 (final)
2ab645
2ab645
* Fri Nov 28 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.3.rc
2ab645
- 5.4.0-rc
2ab645
2ab645
* Mon Nov 03 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.2.beta
2ab645
- use new %%qmake_qt5 macro
2ab645
2ab645
* Sat Oct 18 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.4.0-0.1.beta
2ab645
- 5.4.0-beta
2ab645
- %%ix84: drop sse2-optimized bits, need to rethink if/how to support it now
2ab645
2ab645
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.2-1
2ab645
- 5.3.2
2ab645
2ab645
* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.1-3
2ab645
- -qt5 wrappers for qml qmlbundle qmlmin qmlscene
2ab645
2ab645
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-2
2ab645
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2ab645
2ab645
* Tue Jun 17 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.1-1
2ab645
- 5.3.1
2ab645
2ab645
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-2
2ab645
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2ab645
2ab645
* Wed May 21 2014 Jan Grulich <jgrulich@redhat.com> 5.3.0-1
2ab645
- 5.3.0
2ab645
2ab645
* Wed Feb 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-1
2ab645
- 5.2.1
2ab645
2ab645
* Sun Feb 02 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> 5.2.0-6
2ab645
- Add AArch64 support (RHBUG: 1040452, QTBUG-35528)
2ab645
2ab645
* Mon Jan 27 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-5
2ab645
- build -examples only if supported
2ab645
2ab645
* Sun Jan 26 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-4
2ab645
- -examples subpkg
2ab645
2ab645
* Tue Jan 14 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-3
2ab645
- epel7 bootstrapped
2ab645
2ab645
* Mon Jan 06 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-2
2ab645
- BR: qt5-qtxmlpatterns-devel (#1048558)
2ab645
2ab645
* Thu Dec 12 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-1
2ab645
- 5.2.0
2ab645
2ab645
* Tue Dec 10 2013 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-0.12.rc1
2ab645
- support out-of-src-tree builds
2ab645
- %%ix86: install sse2/jit version to %%_qt5_libdir/sse2/
2ab645
2ab645
* Thu Dec 05 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.11.rc1
2ab645
- %%ix86: cannot assume sse2 (and related support) or the JIT that requires it...  disable.
2ab645
2ab645
* Mon Dec 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.10.rc1
2ab645
- 5.2.0-rc1
2ab645
2ab645
* Mon Nov 25 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.5.beta1
2ab645
- enable -doc only on primary archs (allow secondary bootstrap)
2ab645
2ab645
* Sat Nov 09 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.4.beta1
2ab645
- rebuild (arm/qreal)
2ab645
2ab645
* Thu Oct 24 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.3.beta1
2ab645
- 5.2.0-beta1
2ab645
2ab645
* Wed Oct 16 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.2.alpha
2ab645
- bootstrap ppc
2ab645
2ab645
* Tue Oct 01 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.1.alpha
2ab645
- 5.2.0-alpha
2ab645
- Obsoletes: qt5-qtjsbackend
2ab645
- -doc subpkg
2ab645
2ab645
* Wed Aug 28 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-1
2ab645
- 5.1.1
2ab645
2ab645
* Tue Aug 20 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-4
2ab645
- qt5-qtjsbackend only supports ix86, x86_64 and arm
2ab645
2ab645
* Tue May 14 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-3
2ab645
- fix qmlprofiler conflict with qt-creator
2ab645
2ab645
* Fri Apr 12 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-2
2ab645
- fix qmlplugindump conflict with qt4-devel
2ab645
- include license files, dist/changes*
2ab645
2ab645
* Thu Apr 11 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-1
2ab645
- 5.0.2
2ab645
2ab645
* Sat Feb 23 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-1
2ab645
- first try
2ab645