source: projects/specs/trunk/q/qt5-qtbase/qt5-qtbase-vl.spec @ 11435

Revision 11435, 54.4 KB checked in by tomop, 6 years ago (diff)

updated Qt5

Line 
1%bcond_with systemd
2%bcond_with gcc6
3
4%define _unpackaged_files_terminate_build 1
5
6%define ibase -no-sql-ibase
7#%define tds -no-sql-tds
8
9# See http://bugzilla.redhat.com/223663
10%define multilib_archs x86_64 %{ix86} %{?mips} ppc64 ppc s390x s390 sparc64 sparcv9
11%define multilib_basearchs x86_64 %{?mips64} ppc64 s390x sparc64
12
13# support qtchooser (adds qtchooser .conf file)
14%define qtchooser 1
15%if 0%{?qtchooser}
16%define priority 10
17%ifarch %{multilib_basearchs}
18%define priority 15
19%endif
20%endif
21
22%global qt_module qtbase
23
24%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
25
26## set to 1 to enable bootstrap
27#global bootstrap 1
28
29# use external qt_settings pkg
30%global qt_settings 0
31
32# See http://bugzilla.redhat.com/1279265
33%if !%{with gcc6}
34%global inject_optflags 1
35%endif
36
37%if %{with systemd}
38%global journald -journald
39BuildRequires: pkgconfig(libsystemd)
40%endif
41
42%if %{with gcc6}
43# gcc6: FTBFS
44%global qt5_deprecated_flag -Wno-deprecated-declarations
45# gcc6: Qt assumes this in places
46%global qt5_null_flag -fno-delete-null-pointer-checks
47%endif
48
49# define to build docs, need to undef this for bootstrapping
50# where qt5-qttools builds are not yet available
51# only primary archs (for now), allow secondary to bootstrap
52%if ! 0%{?bootstrap}
53%ifarch %{arm} %{ix86} x86_64 %{power64} s390 s390x aarch64
54%global docs 1
55%endif
56%global examples 1
57%global tests 1
58%endif
59
60%global qt5_minorver 5.6
61%global qt5_version 5.6.3
62#global qt5_patchlevel 1
63
64Summary: Qt5 - QtBase components
65Name:    qt5-qtbase
66Version: %{qt5_version}%{?qt5_patchlevel:.%{qt5_patchlevel}}
67Release: 1%{?_dist_release}
68
69# See LGPL_EXCEPTIONS.txt, for exception details
70License: LGPLv2 with exceptions or GPLv3 with exceptions
71Url: http://qt-project.org/
72
73Vendor: Project Vine
74Distribution: Vine Linux
75
76Source0: http://download.qt.io/official_releases/qt/%{qt5_minorver}/%{qt5_version}%{?qt5_patchlevel:-%{qt5_patchlevel}}/submodules/%{qt_module}-opensource-src-%{qt5_version}%{?qt5_patchlevel:-%{qt5_patchlevel}}.tar.xz
77
78# https://bugzilla.redhat.com/show_bug.cgi?id=1227295
79Source1: qtlogging.ini
80
81# header file to workaround multilib issue
82# https://bugzilla.redhat.com/show_bug.cgi?id=1036956
83Source5: qconfig-multilib.h
84
85# xinitrc script to check for OpenGL 1 only drivers and automatically set
86# QT_XCB_FORCE_SOFTWARE_OPENGL for them
87Source6: 10-qt5-check-opengl2.sh
88
89# support multilib optflags
90Patch2: qtbase-multilib_optflags.patch
91
92# fix QTBUG-35459 (too low entityCharacterLimit=1024 for CVE-2013-4549)
93Patch4: qtbase-opensource-src-5.3.2-QTBUG-35459.patch
94
95# upstreamable patches
96
97# Workaround moc/multilib issues
98# https://bugzilla.redhat.com/show_bug.cgi?id=1290020
99# https://bugreports.qt.io/browse/QTBUG-49972
100Patch52: qtbase-opensource-src-5.6.0-moc_WORDSIZE.patch
101
102# arm patch
103Patch54: qtbase-opensource-src-5.6.0-arm.patch
104
105# recently passed code review, not integrated yet
106# https://codereview.qt-project.org/126102/
107Patch60: moc-get-the-system-defines-from-the-compiler-itself.patch
108
109# drop -O3 and make -O2 by default
110Patch61: qt5-qtbase-cxxflag.patch
111
112## upstream patches
113
114
115# to compile with icu >= 59
116Patch1000: qtbase-5.6.3-icu.patch
117
118# macros, be mindful to keep sync'd with macros.qt5
119Source10: macros.qt5
120%define _qt5 %{name}
121%define _qt5_prefix %{_libdir}/qt5
122%define _qt5_archdatadir %{_libdir}/qt5
123# -devel bindir items (still) conflict with qt4
124# at least until this is all implemented,
125# http://lists.qt-project.org/pipermail/development/2012-November/007990.html
126%define _qt5_bindir %{_qt5_prefix}/bin
127%define _qt5_datadir %{_datadir}/qt5
128%define _qt5_docdir %{_docdir}/qt5
129%define _qt5_examplesdir %{_qt5_prefix}/examples
130%define _qt5_headerdir %{_includedir}/qt5
131%define _qt5_importdir %{_qt5_archdatadir}/imports
132%define _qt5_libdir %{_libdir}
133%define _qt5_libexecdir %{_qt5_archdatadir}/libexec
134%define _qt5_plugindir %{_qt5_archdatadir}/plugins
135%define _qt5_settingsdir %{_sysconfdir}/xdg
136%define _qt5_sysconfdir %{_qt5_settingsdir}
137%define _qt5_translationdir %{_datadir}/qt5/translations
138
139# Do not check any files in %%{_qt5_plugindir}/platformthemes/ for requires.
140# Those themes are there for platform integration. If the required libraries are
141# not there, the platform to integrate with isn't either. Then Qt will just
142# silently ignore the plugin that fails to load. Thus, there is no need to let
143# RPM drag in gtk2 as a dependency for the GTK+ 2 dialog support.
144%global __requires_exclude_from ^%{_qt5_plugindir}/platformthemes/.*$
145
146# for %%check
147BuildRequires: cmake
148BuildRequires: cups-devel
149BuildRequires: desktop-file-utils
150BuildRequires: findutils
151BuildRequires: libjpeg-devel
152BuildRequires: libmng-devel
153BuildRequires: libtiff-devel
154BuildRequires: pkgconfig(alsa)
155# http://bugzilla.redhat.com/1196359
156%if 0%{?fedora} || 0%{?rhel} > 6
157%global dbus -dbus-linked
158BuildRequires: pkgconfig(dbus-1)
159%endif
160BuildRequires: pkgconfig(libdrm)
161BuildRequires: pkgconfig(fontconfig)
162BuildRequires: pkgconfig(gl)
163BuildRequires: pkgconfig(glib-2.0)
164BuildRequires: pkgconfig(gtk+-2.0)
165BuildRequires: pkgconfig(libproxy-1.0)
166# xcb-sm
167BuildRequires: pkgconfig(ice) pkgconfig(sm)
168BuildRequires: pkgconfig(libpng)
169BuildRequires: pkgconfig(libudev)
170%global openssl -openssl-linked
171BuildRequires: pkgconfig(openssl)
172BuildRequires: pkgconfig(libpulse) pkgconfig(libpulse-mainloop-glib)
173%if 0%{?fedora}
174%global xkbcommon -system-xkbcommon
175BuildRequires: pkgconfig(libinput)
176BuildRequires: pkgconfig(xcb-xkb) >= 1.10
177BuildRequires: pkgconfig(xkbcommon) >= 0.4.1
178BuildRequires: pkgconfig(xkbcommon-x11) >= 0.4.1
179%else
180# not Fedora
181%if 0%{?rhel} == 6
182%global xcb -qt-xcb
183%endif
184%global xkbcommon -qt-xkbcommon
185Provides: bundled(libxkbcommon) = 0.4.1
186%endif
187BuildRequires: pkgconfig(xkeyboard-config)
188%define egl 1
189BuildRequires: pkgconfig(egl)
190BuildRequires: pkgconfig(gbm)
191BuildRequires: pkgconfig(glesv2)
192%global sqlite -system-sqlite
193BuildRequires: pkgconfig(sqlite3) >= 3.7
194%global harfbuzz -system-harfbuzz
195BuildRequires: pkgconfig(harfbuzz) >= 0.9.42
196BuildRequires: pkgconfig(icu-i18n)
197BuildRequires: pkgconfig(libpcre) >= 8.30
198%define pcre -system-pcre
199BuildRequires: pkgconfig(xcb-xkb)
200BuildRequires: pkgconfig(xcb) pkgconfig(xcb-glx) pkgconfig(xcb-icccm) pkgconfig(xcb-image) pkgconfig(xcb-keysyms) pkgconfig(xcb-renderutil)
201BuildRequires: pkgconfig(zlib)
202
203%if 0%{?tests}
204BuildRequires: dbus-x11
205BuildRequires: mesa-dri-drivers
206BuildRequires: time
207BuildRequires: xorg-x11-server-Xvfb
208%endif
209
210%if 0%{?qtchooser}
211%if 0%{?fedora}
212Conflicts: qt < 1:4.8.6-10
213%endif
214Requires(post): %{_sbindir}/update-alternatives
215Requires(postun): %{_sbindir}/update-alternatives
216%endif
217%if 0%{?qt_settings}
218Requires: qt-settings
219%endif
220Requires: %{name}-common = %{version}-%{release}
221
222%description
223Qt is a software toolkit for developing applications.
224
225This package contains base tools, like string, xml, and network
226handling.
227
228%package common
229Summary: Common files for Qt5
230Requires: %{name} = %{version}-%{release}
231BuildArch: noarch
232%description common
233%{summary}.
234
235%package devel
236Summary: Development files for %{name}
237Provides: %{name}-private-devel = %{version}-%{release}
238Requires: %{name}%{?_isa} = %{version}-%{release}
239Requires: %{name}-gui%{?_isa}
240%if 0%{?egl}
241Requires: pkgconfig(egl)
242%endif
243Requires: pkgconfig(gl)
244Requires: qt5-rpm-macros
245%description devel
246%{summary}.
247
248%if 0%{?docs}
249%package doc
250Summary: API documentation for %{name}
251License: GFDL
252Requires: %{name} = %{version}-%{release}
253BuildRequires: qt5-qhelpgenerator
254BuildRequires: qt5-qdoc
255BuildArch: noarch
256%description doc
257%{summary}.
258%endif
259
260%package examples
261Summary: Programming examples for %{name}
262Requires: %{name}%{?_isa} = %{version}-%{release}
263%description examples
264%{summary}.
265
266%package static
267Summary: Static library files for %{name}
268Requires: %{name}-devel%{?_isa} = %{version}-%{release}
269Requires: pkgconfig(fontconfig)
270Requires: pkgconfig(glib-2.0)
271%if 0%{?fedora}
272Requires: pkgconfig(libinput)
273Requires: pkgconfig(xkbcommon)
274%endif
275Requires: pkgconfig(zlib)
276%description static
277%{summary}.
278
279%if "%{?ibase}" != "-no-sql-ibase"
280%package ibase
281Summary: IBase driver for Qt5's SQL classes
282BuildRequires: firebird-devel
283Requires: %{name}%{?_isa} = %{version}-%{release}
284%description ibase
285%{summary}.
286%endif
287
288%package mysql
289Summary: MySQL driver for Qt5's SQL classes
290BuildRequires: libmysqlclient-devel
291Requires: %{name}%{?_isa} = %{version}-%{release}
292%description mysql
293%{summary}.
294
295%package odbc
296Summary: ODBC driver for Qt5's SQL classes
297BuildRequires: unixODBC-devel
298Requires: %{name}%{?_isa} = %{version}-%{release}
299%description odbc
300%{summary}.
301
302%package postgresql
303Summary: PostgreSQL driver for Qt5's SQL classes
304BuildRequires: libpq-devel
305Requires: %{name}%{?_isa} = %{version}-%{release}
306%description postgresql
307%{summary}.
308
309%if "%{?tds}" != "-no-sql-tds"
310%package tds
311Summary: TDS driver for Qt5's SQL classes
312BuildRequires: freetds-devel
313Requires: %{name}%{?_isa} = %{version}-%{release}
314%description tds
315%{summary}.
316%endif
317
318# debating whether to do 1 subpkg per library or not -- rex
319%package gui
320Summary: Qt5 GUI-related libraries
321Requires: %{name}%{?_isa} = %{version}-%{release}
322%if 0%{?fedora} > 20
323Recommends: mesa-dri-drivers
324%endif
325Obsoletes: qt5-qtbase-x11 < 5.2.0
326Provides:  qt5-qtbase-x11 = %{version}-%{release}
327# for Source6: 10-qt5-check-opengl2.sh:
328# glxinfo
329Requires: glx-utils
330%description gui
331Qt5 libraries used for drawing widgets and OpenGL items.
332
333%package -n qt5-rpm-macros
334Summary: RPM macros for Qt5
335%if 0%{?fedora} > 22 && 0%{?inject_optflags}
336# https://bugzilla.redhat.com/show_bug.cgi?id=1248174
337Requires: redhat-rpm-config
338%endif
339# when qt5-rpm-macros was split out
340Conflicts: qt5-qtbase-devel < 5.6.0-0.23
341BuildArch: noarch
342%description -n qt5-rpm-macros
343RPM macros for building Qt5 packages.
344
345
346%prep
347%setup -q -n %{qt_module}-opensource-src-%{qt5_version}
348
349%patch4 -p1 -b .QTBUG-35459
350
351%patch52 -p1 -b .moc_WORDSIZE
352%patch54 -p1 -b .arm
353%patch60 -p1 -b .moc_system_defines
354%patch61 -p1 -b .qt5-qtbase-cxxflag
355
356%patch1000 -p0 -b .icu59
357
358%define platform linux-g++
359
360%if 0%{?inject_optflags}
361## adjust $RPM_OPT_FLAGS
362# remove -fexceptions
363RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed 's|-fexceptions||g'`
364#RPM_OPT_FLAGS="$RPM_OPT_FLAGS -std=c++11"
365# these flags are for qtbase build only, no need to propogate elsewhere
366#RPM_OPT_FLAGS="$RPM_OPT_FLAGS %{?qt5_deprecated_flag} %{?qt5_arm_flag}"
367
368%patch2 -p1 -b .multilib_optflags
369# drop backup file(s), else they get installed too, http://bugzilla.redhat.com/639463
370rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags
371
372sed -i -e "s|-O2|$RPM_OPT_FLAGS|g" \
373  mkspecs/%{platform}/qmake.conf
374
375sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 $RPM_LD_FLAGS|" \
376  mkspecs/common/g++-unix.conf
377
378# undefine QMAKE_STRIP (and friends), so we get useful -debuginfo pkgs (#1065636)
379sed -i -e 's|^\(QMAKE_STRIP.*=\).*$|\1|g' mkspecs/common/linux.conf
380%endif
381
382%if 0%{?prerelease}
383bin/syncqt.pl -version %{version}
384%endif
385
386# move some bundled libs to ensure they're not accidentally used
387pushd src/3rdparty
388mkdir UNUSED
389mv freetype libjpeg libpng zlib UNUSED/
390%if "%{?sqlite}" == "-system-sqlite"
391mv sqlite UNUSED/
392%endif
393%if "%{?xcb}" != "-qt-xcb"
394mv xcb UNUSED/
395%endif
396popd
397
398# builds failing mysteriously on f20
399# ./configure: Permission denied
400# check to ensure that can't happen -- rex
401test -x configure || chmod +x configure
402
403
404%build
405## FIXME/TODO:
406# * for %%ix86, add sse2 enabled builds for Qt5Gui, Qt5Core, QtNetwork, see also:
407#   http://anonscm.debian.org/cgit/pkg-kde/qt/qtbase.git/tree/debian/rules (234-249)
408
409## adjust $RPM_OPT_FLAGS
410# remove -fexceptions
411RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed 's|-fexceptions||g'`
412RPM_OPT_FLAGS="$RPM_OPT_FLAGS -std=c++11"
413RPM_OPT_FLAGS="$RPM_OPT_FLAGS %{?qt5_arm_flag} %{?qt5_deprecated_flag} %{?qt5_null_flag}"
414
415export CFLAGS="$CFLAGS $RPM_OPT_FLAGS"
416export CXXFLAGS="$CXXFLAGS $RPM_OPT_FLAGS"
417export LDFLAGS="$LDFLAGS $RPM_LD_FLAGS"
418export MAKEFLAGS="%{?_smp_mflags}"
419
420./configure -v \
421  -confirm-license \
422  -opensource \
423  -prefix %{_qt5_prefix} \
424  -archdatadir %{_qt5_archdatadir} \
425  -bindir %{_qt5_bindir} \
426  -datadir %{_qt5_datadir} \
427  -docdir %{_qt5_docdir} \
428  -examplesdir %{_qt5_examplesdir} \
429  -headerdir %{_qt5_headerdir} \
430  -importdir %{_qt5_importdir} \
431  -libdir %{_qt5_libdir} \
432  -libexecdir %{_qt5_libexecdir} \
433  -plugindir %{_qt5_plugindir} \
434  -sysconfdir %{_qt5_sysconfdir} \
435  -translationdir %{_qt5_translationdir} \
436  -platform %{platform} \
437  -release \
438  -shared \
439  -accessibility \
440  %{?dbus}%{!?dbus:-dbus-runtime} \
441  -fontconfig \
442  -glib \
443  -gtkstyle \
444  %{?ibase} \
445  -iconv \
446  -icu \
447  %{?journald} \
448  %{?openssl} \
449  -optimized-qmake \
450  %{!?examples:-nomake examples} \
451  %{!?tests:-nomake tests} \
452  -no-pch \
453  -no-rpath \
454  -no-separate-debug-info \
455%ifarch %{ix86}
456  -no-sse2 \
457%endif
458  -no-strip \
459  -system-libjpeg \
460  -system-libpng \
461  %{?harfbuzz} \
462  %{?pcre} \
463  %{?sqlite} \
464  %{?tds} \
465  %{?xcb} \
466  %{?xkbcommon} \
467  -system-zlib \
468  -no-directfb
469
470%if ! 0%{?inject_optflags}
471# ensure qmake build using optflags (which can happen if not munging qmake.conf defaults)
472make clean -C qmake
473make %{?_smp_mflags} -C qmake \
474  QMAKE_CFLAGS_RELEASE="${CFLAGS:-$RPM_OPT_FLAGS}" \
475  QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS:-$RPM_OPT_FLAGS}" \
476  QMAKE_LFLAGS_RELEASE="${LDFLAGS:-$RPM_LD_FLAGS}" \
477  QMAKE_STRIP=
478%endif
479
480make %{?_smp_mflags}
481
482%if 0%{?docs}
483# HACK to avoid multilib conflicts in noarch content
484# see also https://bugreports.qt-project.org/browse/QTBUG-42071
485QT_HASH_SEED=0; export QT_HASH_SEED
486
487make html_docs
488make qch_docs
489%endif
490
491
492%install
493make install INSTALL_ROOT=%{buildroot}
494
495%if 0%{?docs}
496make install_docs INSTALL_ROOT=%{buildroot}
497%endif
498
499install -m644 -p -D %{SOURCE1} %{buildroot}%{_qt5_datadir}/qtlogging.ini
500
501# Qt5.pc
502cat >%{buildroot}%{_libdir}/pkgconfig/Qt5.pc<<EOF
503prefix=%{_qt5_prefix}
504archdatadir=%{_qt5_archdatadir}
505bindir=%{_qt5_bindir}
506datadir=%{_qt5_datadir}
507
508docdir=%{_qt5_docdir}
509examplesdir=%{_qt5_examplesdir}
510headerdir=%{_qt5_headerdir}
511importdir=%{_qt5_importdir}
512libdir=%{_qt5_libdir}
513libexecdir=%{_qt5_libexecdir}
514moc=%{_qt5_bindir}/moc
515plugindir=%{_qt5_plugindir}
516qmake=%{_qt5_bindir}/qmake
517settingsdir=%{_qt5_settingsdir}
518sysconfdir=%{_qt5_sysconfdir}
519translationdir=%{_qt5_translationdir}
520
521Name: Qt5
522Description: Qt5 Configuration
523Version: %{version}
524EOF
525
526# rpm macros
527install -p -m644 -D %{SOURCE10} \
528  %{buildroot}%{rpm_macros_dir}/macros.qt5
529sed -i \
530  -e "s|@@NAME@@|%{name}|g" \
531  -e "s|@@EPOCH@@|%{?epoch}%{!?epoch:0}|g" \
532  -e "s|@@VERSION@@|%{version}|g" \
533  -e "s|@@EVR@@|%{?epoch:%{epoch:}}%{version}-%{release}|g" \
534  -e "s|@@QT5_CFLAGS@@|%{?qt5_cflags}|g" \
535  -e "s|@@QT5_CXXFLAGS@@|%{?qt5_cxxflags}|g" \
536  -e "s|@@QT5_RPM_LD_FLAGS@@|%{?qt5_rpm_ld_flags}|g" \
537  -e "s|@@QT5_RPM_OPT_FLAGS@@|%{?qt5_rpm_opt_flags} %{?qt5_null_flag}|g" \
538  %{buildroot}%{rpm_macros_dir}/macros.qt5
539
540# create/own dirs
541mkdir -p %{buildroot}{%{_qt5_archdatadir}/mkspecs/modules,%{_qt5_importdir},%{_qt5_libexecdir},%{_qt5_plugindir}/{designer,iconengines,script,styles},%{_qt5_translationdir}}
542mkdir -p %{buildroot}%{_sysconfdir}/xdg/QtProject
543
544# hardlink files to %{_bindir}, add -qt5 postfix to not conflict
545mkdir %{buildroot}%{_bindir}
546pushd %{buildroot}%{_qt5_bindir}
547for i in * ; do
548  case "${i}" in
549    moc|qdbuscpp2xml|qdbusxml2cpp|qmake|rcc|syncqt|uic)
550      ln -v  ${i} %{buildroot}%{_bindir}/${i}-qt5
551      ln -sv ${i} ${i}-qt5
552      ;;
553    *)
554      ln -v  ${i} %{buildroot}%{_bindir}/${i}
555      ;;
556  esac
557done
558popd
559
560%ifarch %{multilib_archs}
561# multilib: qconfig.h
562  mv %{buildroot}%{_qt5_headerdir}/QtCore/qconfig.h %{buildroot}%{_qt5_headerdir}/QtCore/qconfig-%{__isa_bits}.h
563  install -p -m644 -D %{SOURCE5} %{buildroot}%{_qt5_headerdir}/QtCore/qconfig.h
564%endif
565
566# qtchooser conf
567%if 0%{?qtchooser}
568  mkdir -p %{buildroot}%{_sysconfdir}/xdg/qtchooser
569  pushd    %{buildroot}%{_sysconfdir}/xdg/qtchooser
570  echo "%{_qt5_bindir}" >  5-%{__isa_bits}.conf
571  echo "%{_qt5_prefix}" >> 5-%{__isa_bits}.conf
572  # alternatives targets
573  touch default.conf 5.conf
574  popd
575%endif
576
577## .prl/.la file love
578# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
579pushd %{buildroot}%{_qt5_libdir}
580for prl_file in libQt5*.prl ; do
581  sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" ${prl_file}
582  if [ -f "$(basename ${prl_file} .prl).so" ]; then
583    rm -fv "$(basename ${prl_file} .prl).la"
584    sed -i -e "/^QMAKE_PRL_LIBS/d" ${prl_file}
585  fi
586done
587popd
588
589install -p -m755 -D %{SOURCE6} %{buildroot}%{_sysconfdir}/X11/xinit/xinitrc.d/10-qt5-check-opengl2.sh
590
591
592%check
593%if 0%{?tests}
594## see tests/README for expected environment (running a plasma session essentially)
595## we are not quite there yet
596export CTEST_OUTPUT_ON_FAILURE=1
597export PATH=%{buildroot}%{_qt5_bindir}:$PATH
598export LD_LIBRARY_PATH=%{buildroot}%{_qt5_libdir}
599# dbus tests error out when building if session bus is not available
600dbus-launch --exit-with-session \
601make sub-tests %{?_smp_mflags} -k ||:
602xvfb-run -a --server-args="-screen 0 1280x1024x32" \
603dbus-launch --exit-with-session \
604time \
605make check -k ||:
606%endif
607
608
609%if 0%{?qtchooser}
610%pre
611if [ $1 -gt 1 ] ; then
612# remove short-lived qt5.conf alternatives
613%{_sbindir}/update-alternatives  \
614  --remove qtchooser-qt5 \
615  %{_sysconfdir}/xdg/qtchooser/qt5-%{__isa_bits}.conf >& /dev/null ||:
616
617%{_sbindir}/update-alternatives  \
618  --remove qtchooser-default \
619  %{_sysconfdir}/xdg/qtchooser/qt5.conf >& /dev/null ||:
620fi
621%endif
622
623%post
624/sbin/ldconfig
625%if 0%{?qtchooser}
626%{_sbindir}/update-alternatives \
627  --install %{_sysconfdir}/xdg/qtchooser/5.conf \
628  qtchooser-5 \
629  %{_sysconfdir}/xdg/qtchooser/5-%{__isa_bits}.conf \
630  %{priority}
631
632%{_sbindir}/update-alternatives \
633  --install %{_sysconfdir}/xdg/qtchooser/default.conf \
634  qtchooser-default \
635  %{_sysconfdir}/xdg/qtchooser/5.conf \
636  %{priority}
637%endif
638
639%postun
640/sbin/ldconfig
641%if 0%{?qtchooser}
642if [ $1 -eq 0 ]; then
643%{_sbindir}/update-alternatives  \
644  --remove qtchooser-5 \
645  %{_sysconfdir}/xdg/qtchooser/5-%{__isa_bits}.conf
646
647%{_sbindir}/update-alternatives  \
648  --remove qtchooser-default \
649  %{_sysconfdir}/xdg/qtchooser/5.conf
650fi
651%endif
652
653%files
654%{!?_licensedir:%global license %%doc}
655%license LICENSE.LGPL* LGPL_EXCEPTION.txt LICENSE.FDL
656%if 0%{?qtchooser}
657%dir %{_sysconfdir}/xdg/qtchooser
658# not editable config files, so not using %%config here
659%ghost %{_sysconfdir}/xdg/qtchooser/default.conf
660%ghost %{_sysconfdir}/xdg/qtchooser/5.conf
661%{_sysconfdir}/xdg/qtchooser/5-%{__isa_bits}.conf
662%endif
663%dir %{_sysconfdir}/xdg/QtProject/
664%{_qt5_libdir}/libQt5Concurrent.so.5*
665%{_qt5_libdir}/libQt5Core.so.5*
666%{_qt5_libdir}/libQt5DBus.so.5*
667%{_qt5_libdir}/libQt5Network.so.5*
668%{_qt5_libdir}/libQt5Sql.so.5*
669%{_qt5_libdir}/libQt5Test.so.5*
670%{_qt5_libdir}/libQt5Xml.so.5*
671%dir %{_qt5_libdir}/cmake/
672%dir %{_qt5_libdir}/cmake/Qt5/
673%dir %{_qt5_libdir}/cmake/Qt5Concurrent/
674%dir %{_qt5_libdir}/cmake/Qt5Core/
675%dir %{_qt5_libdir}/cmake/Qt5DBus/
676%dir %{_qt5_libdir}/cmake/Qt5Gui/
677%dir %{_qt5_libdir}/cmake/Qt5Network/
678%dir %{_qt5_libdir}/cmake/Qt5OpenGL/
679%dir %{_qt5_libdir}/cmake/Qt5PrintSupport/
680%dir %{_qt5_libdir}/cmake/Qt5Sql/
681%dir %{_qt5_libdir}/cmake/Qt5Test/
682%dir %{_qt5_libdir}/cmake/Qt5Widgets/
683%dir %{_qt5_libdir}/cmake/Qt5Xml/
684%dir %{_qt5_docdir}/
685%{_qt5_docdir}/global/
686%{_qt5_importdir}/
687%{_qt5_translationdir}/
688%dir %{_qt5_prefix}/
689%dir %{_qt5_datadir}/
690%{_qt5_datadir}/qtlogging.ini
691%dir %{_qt5_libexecdir}/
692%dir %{_qt5_plugindir}/
693%dir %{_qt5_plugindir}/bearer/
694%{_qt5_plugindir}/bearer/libqconnmanbearer.so
695%{_qt5_plugindir}/bearer/libqgenericbearer.so
696%{_qt5_plugindir}/bearer/libqnmbearer.so
697%{_qt5_libdir}/cmake/Qt5Network/Qt5Network_QConnmanEnginePlugin.cmake
698%{_qt5_libdir}/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake
699%{_qt5_libdir}/cmake/Qt5Network/Qt5Network_QNetworkManagerEnginePlugin.cmake
700%dir %{_qt5_plugindir}/designer/
701%dir %{_qt5_plugindir}/generic/
702%dir %{_qt5_plugindir}/iconengines/
703%dir %{_qt5_plugindir}/imageformats/
704%dir %{_qt5_plugindir}/platforminputcontexts/
705%dir %{_qt5_plugindir}/platforms/
706%dir %{_qt5_plugindir}/platformthemes/
707%dir %{_qt5_plugindir}/printsupport/
708%dir %{_qt5_plugindir}/script/
709%dir %{_qt5_plugindir}/sqldrivers/
710%dir %{_qt5_plugindir}/styles/
711%{_qt5_plugindir}/sqldrivers/libqsqlite.so
712%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QSQLiteDriverPlugin.cmake
713
714%files common
715# empty for now, consider: filesystem/dir ownership, licenses
716
717%if 0%{?docs}
718%files doc
719%license LICENSE.FDL
720%doc dist/README dist/changes-5.*
721%{_qt5_docdir}/*.qch
722%if 0%{?examples}
723%if 0%{!?bootstrap}
724# included in -examples instead, see bug #1212750
725%exclude %{_qt5_docdir}/*/examples-manifest.xml
726%endif
727%endif
728%{_qt5_docdir}/qmake/
729%{_qt5_docdir}/qtconcurrent/
730%{_qt5_docdir}/qtcore/
731%{_qt5_docdir}/qtdbus/
732%{_qt5_docdir}/qtgui/
733%{_qt5_docdir}/qtnetwork/
734%{_qt5_docdir}/qtopengl/
735%{_qt5_docdir}/qtplatformheaders/
736%{_qt5_docdir}/qtprintsupport/
737%{_qt5_docdir}/qtsql/
738%{_qt5_docdir}/qttestlib/
739%{_qt5_docdir}/qtwidgets/
740%{_qt5_docdir}/qtxml/
741%endif
742
743%files devel
744%if "%{_qt5_bindir}" != "%{_bindir}"
745%dir %{_qt5_bindir}
746%endif
747%{_bindir}/moc*
748%{_bindir}/qdbuscpp2xml*
749%{_bindir}/qdbusxml2cpp*
750%{_bindir}/qmake*
751%{_bindir}/rcc*
752%{_bindir}/syncqt*
753%{_bindir}/uic*
754%{_bindir}/qlalr
755%{_bindir}/fixqt4headers.pl
756%{_qt5_bindir}/moc*
757%{_qt5_bindir}/qdbuscpp2xml*
758%{_qt5_bindir}/qdbusxml2cpp*
759%{_qt5_bindir}/qmake*
760%{_qt5_bindir}/rcc*
761%{_qt5_bindir}/syncqt*
762%{_qt5_bindir}/uic*
763%{_qt5_bindir}/qlalr
764%{_qt5_bindir}/fixqt4headers.pl
765%if "%{_qt5_headerdir}" != "%{_includedir}"
766%dir %{_qt5_headerdir}
767%endif
768%{_qt5_headerdir}/QtConcurrent/
769%{_qt5_headerdir}/QtCore/
770%{_qt5_headerdir}/QtDBus/
771%{_qt5_headerdir}/QtGui/
772%{_qt5_headerdir}/QtNetwork/
773%{_qt5_headerdir}/QtOpenGL/
774%{_qt5_headerdir}/QtPlatformHeaders/
775%{_qt5_headerdir}/QtPrintSupport/
776%{_qt5_headerdir}/QtSql/
777%{_qt5_headerdir}/QtTest/
778%{_qt5_headerdir}/QtWidgets/
779%{_qt5_headerdir}/QtXml/
780%{_qt5_archdatadir}/mkspecs/
781%{_qt5_libdir}/libQt5Concurrent.prl
782%{_qt5_libdir}/libQt5Concurrent.so
783%{_qt5_libdir}/libQt5Core.prl
784%{_qt5_libdir}/libQt5Core.so
785%{_qt5_libdir}/libQt5DBus.prl
786%{_qt5_libdir}/libQt5DBus.so
787%{_qt5_libdir}/libQt5Gui.prl
788%{_qt5_libdir}/libQt5Gui.so
789%{_qt5_libdir}/libQt5Network.prl
790%{_qt5_libdir}/libQt5Network.so
791%{_qt5_libdir}/libQt5OpenGL.prl
792%{_qt5_libdir}/libQt5OpenGL.so
793%{_qt5_libdir}/libQt5PrintSupport.prl
794%{_qt5_libdir}/libQt5PrintSupport.so
795%{_qt5_libdir}/libQt5Sql.prl
796%{_qt5_libdir}/libQt5Sql.so
797%{_qt5_libdir}/libQt5Test.prl
798%{_qt5_libdir}/libQt5Test.so
799%{_qt5_libdir}/libQt5Widgets.prl
800%{_qt5_libdir}/libQt5Widgets.so
801%{_qt5_libdir}/libQt5XcbQpa.prl
802%{_qt5_libdir}/libQt5XcbQpa.so
803%{_qt5_libdir}/libQt5Xml.prl
804%{_qt5_libdir}/libQt5Xml.so
805%{_qt5_libdir}/cmake/Qt5/Qt5Config*.cmake
806%{_qt5_libdir}/cmake/Qt5Concurrent/Qt5ConcurrentConfig*.cmake
807%{_qt5_libdir}/cmake/Qt5Core/Qt5CoreConfig*.cmake
808%{_qt5_libdir}/cmake/Qt5Core/Qt5CoreMacros.cmake
809%{_qt5_libdir}/cmake/Qt5Core/Qt5CTestMacros.cmake
810%{_qt5_libdir}/cmake/Qt5DBus/Qt5DBusConfig*.cmake
811%{_qt5_libdir}/cmake/Qt5DBus/Qt5DBusMacros.cmake
812%{_qt5_libdir}/cmake/Qt5Gui/Qt5GuiConfig*.cmake
813%{_qt5_libdir}/cmake/Qt5Network/Qt5NetworkConfig*.cmake
814%{_qt5_libdir}/cmake/Qt5OpenGL/Qt5OpenGLConfig*.cmake
815%{_qt5_libdir}/cmake/Qt5PrintSupport/Qt5PrintSupportConfig*.cmake
816%{_qt5_libdir}/cmake/Qt5Sql/Qt5SqlConfig*.cmake
817%{_qt5_libdir}/cmake/Qt5Test/Qt5TestConfig*.cmake
818%{_qt5_libdir}/cmake/Qt5Widgets/Qt5WidgetsConfig*.cmake
819%{_qt5_libdir}/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
820%{_qt5_libdir}/cmake/Qt5Xml/Qt5XmlConfig*.cmake
821%{_qt5_libdir}/pkgconfig/Qt5.pc
822%{_qt5_libdir}/pkgconfig/Qt5Concurrent.pc
823%{_qt5_libdir}/pkgconfig/Qt5Core.pc
824%{_qt5_libdir}/pkgconfig/Qt5DBus.pc
825%{_qt5_libdir}/pkgconfig/Qt5Gui.pc
826%{_qt5_libdir}/pkgconfig/Qt5Network.pc
827%{_qt5_libdir}/pkgconfig/Qt5OpenGL.pc
828%{_qt5_libdir}/pkgconfig/Qt5PrintSupport.pc
829%{_qt5_libdir}/pkgconfig/Qt5Sql.pc
830%{_qt5_libdir}/pkgconfig/Qt5Test.pc
831%{_qt5_libdir}/pkgconfig/Qt5Widgets.pc
832%{_qt5_libdir}/pkgconfig/Qt5Xml.pc
833%if 0%{?egl}
834%{_qt5_libdir}/libQt5EglDeviceIntegration.prl
835%{_qt5_libdir}/libQt5EglDeviceIntegration.so
836%endif
837
838
839%files static
840%{_qt5_libdir}/libQt5Bootstrap.*a
841%{_qt5_libdir}/libQt5Bootstrap.prl
842%{_qt5_headerdir}/QtOpenGLExtensions/
843%{_qt5_libdir}/libQt5OpenGLExtensions.*a
844%{_qt5_libdir}/libQt5OpenGLExtensions.prl
845%{_qt5_libdir}/cmake/Qt5OpenGLExtensions/
846%{_qt5_libdir}/pkgconfig/Qt5OpenGLExtensions.pc
847%{_qt5_headerdir}/QtPlatformSupport/
848%{_qt5_libdir}/libQt5PlatformSupport.*a
849%{_qt5_libdir}/libQt5PlatformSupport.prl
850
851%if 0%{?examples}
852%files examples
853%if 0%{!?bootstrap}
854%{_qt5_docdir}/*/examples-manifest.xml
855%endif
856%{_qt5_examplesdir}/
857%endif
858
859%if "%{?ibase}" != "-no-sql-ibase"
860%files ibase
861%{_qt5_plugindir}/sqldrivers/libqsqlibase.so
862%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QIBaseDriverPlugin.cmake
863%endif
864
865%files mysql
866%{_qt5_plugindir}/sqldrivers/libqsqlmysql.so
867%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QMYSQLDriverPlugin.cmake
868
869%files odbc
870%{_qt5_plugindir}/sqldrivers/libqsqlodbc.so
871%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QODBCDriverPlugin.cmake
872
873%files postgresql
874%{_qt5_plugindir}/sqldrivers/libqsqlpsql.so
875%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QPSQLDriverPlugin.cmake
876
877%if "%{?tds}" != "-no-sql-tds"
878%files tds
879%{_qt5_plugindir}/sqldrivers/libqsqltds.so
880%{_qt5_libdir}/cmake/Qt5Sql/Qt5Sql_QTDSDriverPlugin.cmake
881%endif
882
883%post gui -p /sbin/ldconfig
884%postun gui -p /sbin/ldconfig
885
886%files gui
887%dir %{_sysconfdir}/X11/xinit
888%dir %{_sysconfdir}/X11/xinit/xinitrc.d/
889%{_sysconfdir}/X11/xinit/xinitrc.d/10-qt5-check-opengl2.sh
890%{_qt5_libdir}/libQt5Gui.so.5*
891%{_qt5_libdir}/libQt5OpenGL.so.5*
892%{_qt5_libdir}/libQt5PrintSupport.so.5*
893%{_qt5_libdir}/libQt5Widgets.so.5*
894%{_qt5_libdir}/libQt5XcbQpa.so.5*
895%{_qt5_plugindir}/generic/libqevdevkeyboardplugin.so
896%{_qt5_plugindir}/generic/libqevdevmouseplugin.so
897%{_qt5_plugindir}/generic/libqevdevtabletplugin.so
898%{_qt5_plugindir}/generic/libqevdevtouchplugin.so
899%if 0%{?fedora}
900%{_qt5_plugindir}/generic/libqlibinputplugin.so
901%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QLibInputPlugin.cmake
902%endif
903%{_qt5_plugindir}/generic/libqtuiotouchplugin.so
904%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEvdevKeyboardPlugin.cmake
905%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEvdevMousePlugin.cmake
906%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEvdevTabletPlugin.cmake
907%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEvdevTouchScreenPlugin.cmake
908%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
909%{_qt5_plugindir}/imageformats/libqgif.so
910%{_qt5_plugindir}/imageformats/libqico.so
911%{_qt5_plugindir}/imageformats/libqjpeg.so
912%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
913%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
914%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
915%{_qt5_plugindir}/platforminputcontexts/libcomposeplatforminputcontextplugin.so
916%{_qt5_plugindir}/platforminputcontexts/libibusplatforminputcontextplugin.so
917%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
918%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
919%if 0%{?egl}
920%{_qt5_libdir}/libQt5EglDeviceIntegration.so.5*
921%{_qt5_plugindir}/platforms/libqeglfs.so
922%{_qt5_plugindir}/platforms/libqminimalegl.so
923%dir %{_qt5_plugindir}/egldeviceintegrations/
924%{_qt5_plugindir}/egldeviceintegrations/libqeglfs-kms-integration.so
925%{_qt5_plugindir}/egldeviceintegrations/libqeglfs-x11-integration.so
926%{_qt5_plugindir}/egldeviceintegrations/libqeglfs-kms-egldevice-integration.so
927%{_qt5_plugindir}/xcbglintegrations/libqxcb-egl-integration.so
928%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QMinimalEglIntegrationPlugin.cmake
929%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEglFSIntegrationPlugin.cmake
930%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEglFSKmsIntegrationPlugin.cmake
931%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEglFSX11IntegrationPlugin.cmake
932%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
933%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QEglFSKmsEglDeviceIntegrationPlugin.cmake
934%endif
935%{_qt5_plugindir}/platforms/libqlinuxfb.so
936%{_qt5_plugindir}/platforms/libqminimal.so
937%{_qt5_plugindir}/platforms/libqoffscreen.so
938%{_qt5_plugindir}/platforms/libqxcb.so
939%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QLinuxFbIntegrationPlugin.cmake
940%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
941%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
942%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
943%{_qt5_plugindir}/xcbglintegrations/libqxcb-glx-integration.so
944%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
945%{_qt5_plugindir}/platformthemes/libqgtk2.so
946%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake
947%{_qt5_plugindir}/printsupport/libcupsprintersupport.so
948%{_qt5_libdir}/cmake/Qt5PrintSupport/Qt5PrintSupport_QCupsPrinterSupportPlugin.cmake
949
950%files -n qt5-rpm-macros
951%{rpm_macros_dir}/macros.qt5
952
953
954%changelog
955* Tue Jan 09 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.6.3-1
956- new upstream release.
957- dropped Patch12, 101, 111, 132, 133, 148 and 155.
958- added Patch1000 to build with icu-60.2.
959
960* Sun Jul 10 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 5.6.1.1-1
961- new upstream release.
962- initial build for Vine Linux.
963
964* Tue Jun 14 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-3
965- backport some xcb-plugin-related fixes
966
967* Thu Jun 09 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.1-2
968- fix Qt5.pc version
969
970* Thu Jun 09 2016 Jan Grulich <jgrulich@redhat.com> - 5.6.1-1
971- Update to 5.6.1
972
973* Thu Jun 02 2016 Than Ngo <than@redhat.com> - 5.6.0-21
974- drop gcc6 workaround on arm
975
976* Fri May 20 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-20
977- -Wno-deprecated-declarations (typo missed trailing 's')
978
979* Fri May 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-19
980- pull in upstream drag-n-drop related fixes (QTBUG-45812, QTBUG-51215)
981
982* Sat May 07 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-18
983- revert out-of-tree build, breaks Qt5*Config.cmake *_PRIVATE_INCLUDE_DIRS entries (all blank)
984
985* Thu May 05 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-17
986- support out-of-tree build
987- better %%check
988- pull in final/upstream fixes for QTBUG-51648,QTBUG-51649
989- disable examples/tests in bootstrap mode
990
991* Sat Apr 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-16
992- own %%{_qt5_plugindir}/egldeviceintegrations
993
994* Mon Apr 18 2016 Caolán McNamara <caolanm@redhat.com> - 5.6.0-15
995- full rebuild for hunspell 1.4.0
996
997* Mon Apr 18 2016 Caolán McNamara <caolanm@redhat.com> - 5.6.0-14
998- bootstrap rebuild for hunspell 1.4.0
999
1000* Sat Apr 16 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-13
1001- -devel: Provides: qt5-qtbase-private-devel (#1233829)
1002
1003* Sat Apr 16 2016 David Tardon <dtardon@redhat.com> - 5.6.0-12
1004- full build
1005
1006* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 5.6.0-11
1007- rebuild for ICU 57.1
1008
1009* Thu Mar 31 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-10
1010- Fix build on MIPS (#1322537)
1011- drop BR: valgrind (not used, for awhile)
1012
1013* Fri Mar 25 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-9
1014- pull upstream patches (upstreamed versions, gcc6-related bits mostly)
1015
1016* Thu Mar 24 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-8
1017- make 10-qt5-check-opengl2.sh xinit script more robust
1018- enable journald support for el7+ (#1315239)
1019
1020* Sat Mar 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-7
1021- macros.qt5: null-pointer-checks flag isn't c++-specific
1022
1023* Sat Mar 19 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-6
1024- macros.qt5: we really only want the null-pointer-checks flag here
1025  and definitely no arch-specific ones
1026
1027* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-5
1028- macros.qt5: cleanup, %%_qt5_cflags, %%_qt5_cxxflags (for f24+)
1029
1030* Fri Mar 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-3
1031- rebuild
1032
1033* Tue Mar 15 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-2
1034- respin QTBUG-51767 patch
1035
1036* Mon Mar 14 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-1
1037- 5.6.0 release
1038
1039* Sat Mar 12 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.41.rc
1040- %%build: restore -dbus-linked
1041
1042* Fri Mar 11 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.40.rc
1043- respin QTBUG-51649 patch
1044- %%build: use -dbus-runtime unconditionally
1045- drop (unused) build deps: atspi, dbus, networkmanager
1046
1047* Thu Mar 10 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.39.rc
1048- candidate fixes for various QtDBus deadlocks (QTBUG-51648,QTBUG-51676)
1049
1050* Mon Mar 07 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.38.rc
1051- backport "crash on start if system bus is not available" (QTBUG-51299)
1052
1053* Sat Mar 05 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.37.rc
1054- %build: ./configure -journal (f24+)
1055
1056* Wed Mar 02 2016 Daniel Vrátil <dvratil@fedoraproject.org> 5.6.0-0.36.rc
1057- Non-bootstrapped build
1058
1059* Tue Mar 01 2016 Daniel Vrátil <dvratil@fedoraproject.org> 5.6.0-0.35.rc
1060- Rebuild against new openssl
1061
1062* Fri Feb 26 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.34.rc
1063- qtlogging.ini: remove comments
1064
1065* Thu Feb 25 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.33.rc
1066- ship $$[QT_INSTALL_DATA]/qtlogging.ini for packaged logging defaults (#1227295)
1067
1068* Thu Feb 25 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.32.rc
1069- qt5-qtbase-static missing dependencies (#1311311)
1070
1071* Wed Feb 24 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.31.rc
1072- Item views don't handle insert/remove of rows robustly (QTBUG-48870)
1073
1074* Tue Feb 23 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.30.rc
1075- Update to final RC
1076
1077* Mon Feb 22 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.29.rc
1078- Update tarball with https://bugreports.qt.io/browse/QTBUG-50703 fix
1079
1080* Wed Feb 17 2016 Than Ngo <than@redhat.com> - 5.6.0-0.28.rc
1081- fix build issue with gcc6
1082
1083* Mon Feb 15 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.27.rc
1084- Update proper tarball. Need avoid the fix branch
1085
1086* Mon Feb 15 2016 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.26.rc
1087- Integrate rc releases now.
1088
1089* Sat Feb 13 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.25.beta
1090- macros.qt5: fix %%qt5_ldflags macro
1091
1092* Thu Feb 11 2016 Than Ngo <than@redhat.com> - 5.6.0-0.24.beta
1093- fix build issue with gcc6
1094- fix check for alsa 1.1.x
1095
1096* Wed Feb 03 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.23.beta
1097- qt5-rpm-macros pkg
1098
1099* Tue Feb 02 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.22.beta
1100- don't inject $RPM_OPT_FLAGS/$RPM_LD_FLAGS into qmake defaults f24+ (#1279265)
1101
1102* Tue Feb 02 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.21.beta
1103- build with and add to macros.qt5 flags: -fno-delete-null-pointer-checks
1104
1105* Fri Jan 15 2016 Than Ngo <than@redhat.com> - 5.6.0-0.20.beta
1106- enable -qt-xcb to fix non-US keys under VNC (#1295713)
1107
1108* Mon Jan 04 2016 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.19.beta
1109- Crash in QXcbWindow::setParent() due to NULL xcbScreen (QTBUG-50081, #1291003)
1110
1111* Mon Dec 21 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.17.beta
1112- fix/update Release: tag
1113
1114* Fri Dec 18 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.16
1115- 5.6.0-beta (final)
1116
1117* Wed Dec 16 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-0.15
1118- pull in another upstream moc fix/improvement (#1290020,QTBUG-49972)
1119- fix bootstrap/docs
1120
1121* Wed Dec 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.13
1122- workaround moc/qconfig-multilib issues (#1290020,QTBUG-49972)
1123
1124* Wed Dec 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 5.6.0-0.12
1125- aarch64 is secondary arch too
1126- ppc64le is NOT multilib
1127- Fix Power 64 macro use
1128
1129* Mon Dec 14 2015 Than Ngo <than@redhat.com> - 5.6.0-0.11
1130- fix build failure on secondary arch
1131
1132* Sun Dec 13 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.10
1133- We're back to gold linker
1134- Remove reduce relocations
1135
1136* Sat Dec 12 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.9
1137- drop disconnect_displays.patch so we can better test latest xcb/display work
1138
1139* Fri Dec 11 2015 Rex Dieter <rdieter@fedoraproject.org> 5.6.0-0.8
1140- sync latest xcb/screen/display related upstream commits
1141
1142* Thu Dec 10 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.7
1143- Official beta release
1144
1145* Thu Dec 10 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.6
1146- Official beta release
1147
1148* Wed Dec 09 2015 Daniel Vratil <dvratil@fedoraproject.org> - 5.6.0-0.5
1149- try reverting from -optimized-tools to -optimized-qmake
1150
1151* Sun Dec 06 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.6.0-0.4
1152- re-introduce bootstrap/examples macros
1153- put examples-manifest.xml in -examples
1154- restore -doc multilib hack (to be on the safe side, can't hurt)
1155- %%build: s/-optimized-qmake/-optimized-tools/
1156
1157* Sat Dec 05 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.3
1158- Beta 3
1159- Reintroduce xcb patch from https://codereview.qt-project.org/#/c/138201/
1160
1161* Fri Nov 27 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.2
1162- Valgrind still needed as buildreq due recent split qdoc package, but we can get rid of
1163  specific arch set.
1164- Added missing libproxy buildreq
1165- Epel and RHEL doesn't have libinput, so a plugin need to be excluded for this distros
1166
1167* Wed Nov 25 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.1-10
1168- -devel: Requires: redhat-rpm-config (#1248174)
1169
1170* Wed Nov 18 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-9
1171- Get rid of valgrind hack. It sort out that we don't need it anymore (#1211203)
1172
1173* Mon Nov 09 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-8
1174- qt5-qdoc need requires >= current version, otherwise will prevent the usage further when moved to qttools
1175
1176* Mon Nov 09 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.1-7
1177- qt5-qdoc subpkg
1178
1179* Tue Nov 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.1
1180- Start to implement 5.6.0 beta
1181
1182* Tue Nov 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.6.0-0.1
1183- Start to implement 5.6.0 beta
1184
1185* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 5.5.1-6
1186- full build
1187
1188* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 5.5.1-5
1189- rebuild for ICU 56.1
1190
1191* Thu Oct 15 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-2
1192- Update to final release 5.5.1
1193
1194* Mon Oct 05 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.1-1
1195- Update to Qt 5.5.1 RC1
1196- Patchs 13, 52, 53, 101, 155, 223, 297 removed due to inclusion upstream
1197
1198* Mon Oct 05 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-18
1199- When a screen comes back online, the windows need to be told about it (QTBUG-47041)
1200- xcb: Ignore disabling of outputs in the middle of the mode switch
1201
1202* Wed Aug 19 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-17
1203- unconditionally undo valgrind hack when done (#1255054)
1204
1205* Sat Aug 15 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-16
1206- backport 0055-Respect-manual-set-icon-themes.patch (kde#344469)
1207- conditionally use valgrind only if needed
1208
1209* Fri Aug 07 2015 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.5.0-15
1210- use valgrind to debug qdoc HTML generation
1211
1212* Fri Aug 07 2015 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.5.0-14
1213- remove GDB hackery again, -12 built fine on i686, hack breaks ARM build
1214- fix 10-qt5-check-opengl2.sh for multiple screens (#1245755)
1215
1216* Thu Aug 06 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-13
1217- use upstream commit/fix for QTBUG-46310
1218- restore qdoc/gdb hackery, i686 still needs it :(
1219
1220* Wed Aug 05 2015 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.5.0-12
1221- remove GDB hackery, it is not producing useful backtraces for the ARM crash
1222
1223* Mon Aug 03 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-11
1224- Add mesa-dri-drivers as recommends on gui package as reported by Kevin Kofler
1225- Reference https://bugzilla.redhat.com/1249280
1226
1227* Wed Jul 29 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-10
1228- -docs: BuildRequires: qt5-qhelpgenerator
1229
1230* Fri Jul 17 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-9
1231- use qdoc.gdb wrapper
1232
1233* Wed Jul 15 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-8
1234- %%build: hack around 'make docs' failures (on f22+)
1235
1236* Wed Jul 15 2015 Jan Grulich <jgrulich@redhat.com> 5.5.0-7
1237- restore previously dropped patches
1238
1239* Tue Jul 14 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-6
1240- disable bootstrap again
1241
1242* Tue Jul 14 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-5
1243- enable bootstrap (and disable failing docs)
1244
1245* Mon Jul 13 2015 Rex Dieter <rdieter@fedoraproject.org> 5.5.0-4
1246- Qt5 application crashes when connecting/disconnecting displays (#1083664)
1247
1248* Fri Jul 10 2015 Than Ngo <than@redhat.com> - 5.5.0-3
1249- add better fix for compile error on big endian
1250
1251* Thu Jul 09 2015 Than Ngo <than@redhat.com> - 5.5.0-2
1252- fix build failure on big endian platform (ppc64,s390x)
1253
1254* Mon Jun 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.5.rc
1255- Second round of builds now with bootstrap enabled due new qttools
1256
1257* Mon Jun 29 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.4.rc
1258- Enable bootstrap to first import on rawhide
1259
1260* Thu Jun 25 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.3.rc
1261- Disable bootstrap
1262
1263* Wed Jun 24 2015 Helio Chissini de Castro <helio@kde.org> - 5.5.0-0.2.rc
1264- Update for official RC1 released packages
1265
1266* Mon Jun 15 2015 Daniel Vratil <dvratil@redhat.com> 5.5.0-0.1.rc
1267- Qt 5.5 RC 1
1268
1269* Mon Jun 08 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.2-2
1270- rebase to latest SM patches (QTBUG-45484, QTBUG-46310)
1271
1272* Tue Jun 02 2015 Jan Grulich <jgrulich@redhat.com> 5.4.2-1
1273- Update to 5.4.2
1274
1275* Tue May 26 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-20
1276- SM_CLIENT_ID property is not set (QTBUG-46310)
1277
1278* Mon May 25 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-19
1279- QWidget::setWindowRole does nothing (QTBUG-45484)
1280
1281* Wed May 20 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-18
1282- own /etc/xdg/QtProject
1283- Requires: qt-settings (f22+)
1284
1285* Sat May 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-17
1286- Try to ensure that -fPIC is used in CMake builds (QTBUG-45755)
1287
1288* Thu May 14 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-16
1289- Some Qt apps crash if they are compiled with gcc5 (QTBUG-45755)
1290
1291* Thu May 07 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-15
1292- try harder to avoid doc/multilib conflicts (#1212750)
1293
1294* Wed May 06 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-14
1295- Shortcuts with KeypadModifier not working (QTBUG-33093,#1219173)
1296
1297* Tue May 05 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-13
1298- backport: data corruption in QNetworkAccessManager
1299
1300* Fri May 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-12
1301- backport a couple more upstream fixes
1302- introduce -common noarch subpkg, should help multilib issues
1303
1304* Sat Apr 25 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-11
1305- port qtdbusconnection_no_debug.patch from qt(4)
1306
1307* Fri Apr 17 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-10
1308- -examples: include %%{_qt5_docdir}/qdoc/examples-manifest.xml (#1212750)
1309
1310* Mon Apr 13 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-9
1311- Multiple Vulnerabilities in Qt Image Format Handling (CVE-2015-1860 CVE-2015-1859 CVE-2015-1858)
1312
1313* Fri Apr 10 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-8
1314- -dbus=runtime on el6 (#1196359)
1315- %%build: -no-directfb
1316
1317* Wed Apr 01 2015 Daniel Vrátil <dvratil@redhat.com> - 5.4.1-7
1318- drop 5.5 XCB patches, the rebase is incomplete and does not work properly with Qt 5.4
1319
1320* Mon Mar 30 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-6
1321- Crash due to unsafe access to QTextLayout::lineCount (#1207279,QTBUG-43562)
1322
1323* Mon Mar 30 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-5
1324- unable to use input methods in ibus-1.5.10 (#1203575)
1325
1326* Wed Mar 25 2015 Daniel Vrátil <dvratil@redhat.com> - 5.4.1-4
1327- pull in set of upstream Qt 5.5 fixes and improvements for XCB screen handling rebased to 5.4
1328
1329* Fri Feb 27 2015 Rex Dieter <rdieter@fedoraproject.org> - 5.4.1-3
1330- pull in handful of upstream fixes, particularly...
1331- Fix a division by zero when processing malformed BMP files (QTBUG-44547, CVE-2015-0295)
1332
1333* Wed Feb 25 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.1-2
1334- try bootstrap=1 (f23)
1335
1336* Tue Feb 24 2015 Jan Grulich <jgrulich@redhat.com> 5.4.1-1
1337- update to 5.4.1
1338
1339* Mon Feb 16 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-13
1340- -no-use-gold-linker (f22+, #1193044)
1341
1342* Thu Feb 12 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-12
1343- own  %%{_qt5_plugindir}/{designer,iconengines,script,styles}
1344
1345* Thu Feb 05 2015 David Tardon <dtardon@redhat.com> - 5.4.0-11
1346- full build after ICU soname bump
1347
1348* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 5.4.0-10
1349- Bump for rebuild.
1350
1351* Sat Jan 31 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-9
1352- crashes when connecting/disconnecting displays (#1083664,QTBUG-42985)
1353
1354* Tue Jan 27 2015 David Tardon <dtardon@redhat.com> - 5.4.0-8
1355- full build
1356
1357* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 5.4.0-7
1358- rebuild for ICU 54.1
1359
1360* Sun Jan 18 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-6
1361- fix %%pre scriptlet
1362
1363* Sat Jan 17 2015 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-5
1364- ship /etc/xdg/qtchooser/5.conf alternative instead (of qt5.conf)
1365
1366* Wed Dec 17 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-4
1367- workaround 'make docs' crasher on el6 (QTBUG-43057)
1368
1369* Thu Dec 11 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-3
1370- don't omit examples for bootstrap (needs work)
1371
1372* Wed Dec 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-2
1373- fix bootstrapping logic
1374
1375* Wed Dec 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-1
1376- 5.4.0 (final)
1377
1378* Fri Nov 28 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.8.rc
1379- restore font rendering patch (#1052389,QTBUG-41590)
1380
1381* Thu Nov 27 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.7.rc
1382- 5.4.0-rc
1383
1384* Wed Nov 12 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.6.beta
1385- add versioned Requires: libxkbcommon dep
1386
1387* Tue Nov 11 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.5.beta
1388- pull in slightly different upstreamed font rendering fix (#1052389,QTBUG-41590)
1389
1390* Mon Nov 10 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.4.beta
1391- Bad font rendering (#1052389,QTBUG-41590)
1392
1393* Mon Nov 03 2014 Rex Dieter <rdieter@fedoraproject.org> 5.4.0-0.3.beta
1394- macros.qt5: +%%qmake_qt5 , to help set standard build flags (CFLAGS, etc...)
1395
1396* Wed Oct 22 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.4.0-0.2.beta
1397- -gui: don't require gtk2 (__requires_exclude_from platformthemes) (#1154884)
1398
1399* Sat Oct 18 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.4.0-0.1.beta
1400- 5.4.0-beta
1401- avoid extra -devel deps by moving *Plugin.cmake files to base pkgs
1402- support bootstrap macro, to disable -doc,-examples
1403
1404* Mon Oct 13 2014 Jan Grulich <jgrulich@redhat.com> 5.3.2-3
1405- QFileDialog: implement getOpenFileUrl and friends for real
1406
1407* Thu Oct 09 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.2-2
1408- use linux-g++ platform unconditionally
1409
1410* Thu Oct 09 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> 5.3.2-1.1
1411- F20: require libxkbcommon >= 0.4.1, only patch for the old libxcb
1412
1413* Tue Sep 16 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.2-1
1414- 5.3.2
1415
1416* Wed Aug 27 2014 David Tardon <dtardon@redhat.com> - 5.3.1-8
1417- do a normal build with docs
1418
1419* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 5.3.1-7
1420- rebuild for ICU 53.1
1421
1422* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.1-6
1423- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1424
1425* Thu Jul 24 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.3.1-5
1426- drop dep on xorg-x11-xinit (own shared dirs instead)
1427- fix/improve qtchooser support using alternatives (#1122316)
1428
1429* Mon Jun 30 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> 5.3.1-4
1430- support the old versions of libxcb and libxkbcommon in F19 and F20
1431- don't use the bundled libxkbcommon
1432
1433* Mon Jun 30 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.1-3
1434- -devel: Requires: pkgconfig(egl)
1435
1436* Fri Jun 27 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.1-2
1437- Prefer QPA implementation in qsystemtrayicon_x11 if available
1438
1439* Tue Jun 17 2014 Jan Grulich <jgrulich@redhat.com> - 5.3.1-1
1440- 5.3.1
1441
1442* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-7
1443- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1444
1445* Fri May 30 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.0-6
1446- %%ix86: build -no-sse2 (#1103185)
1447
1448* Tue May 27 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.0-5
1449- BR: pkgconfig(xcb-xkb) > 1.10 (f21+)
1450- allow possibility for libxkbcommon-0.4.x only
1451
1452* Fri May 23 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.0-4
1453- -system-libxkbcommon (f21+)
1454
1455* Thu May 22 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.0-3
1456- qt5-qtbase-5.3.0-2.fc21 breaks keyboard input (#1100213)
1457
1458* Wed May 21 2014 Rex Dieter <rdieter@fedoraproject.org> 5.3.0-2
1459- limit -reduce-relocations to %%ix86 x86_64 archs (QTBUG-36129)
1460
1461* Wed May 21 2014 Jan Grulich <jgrulich@redhat.com> 5.3.0-1
1462- 5.3.0
1463
1464* Thu Apr 24 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-8
1465- DoS vulnerability in the GIF image handler (QTBUG-38367)
1466
1467* Wed Mar 26 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-7
1468- support ppc64le multilib (#1080629)
1469
1470* Wed Mar 12 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> 5.2.1-6
1471- reenable documentation
1472
1473* Sat Mar 08 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> 5.2.1-5
1474- make the QMAKE_STRIP sed not sensitive to whitespace (see #1074041 in Qt 4)
1475
1476* Tue Feb 18 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-4
1477- undefine QMAKE_STRIP (and friends), so we get useful -debuginfo pkgs (#1065636)
1478
1479* Wed Feb 12 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-3
1480- bootstrap for libicu bump
1481
1482* Wed Feb 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-2
1483- qconfig.pri: +alsa +kms +pulseaudio +xcb-sm
1484
1485* Wed Feb 05 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.1-1
1486- 5.2.1
1487
1488* Sat Feb 01 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-11
1489- better %%rpm_macros_dir handling
1490
1491* Wed Jan 29 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.2.0-10
1492- fix the allow-forcing-llvmpipe patch to patch actual caller of __glXInitialize
1493
1494* Wed Jan 29 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.2.0-9
1495- use software OpenGL (llvmpipe) if the hardware driver doesn't support OpenGL 2
1496
1497* Tue Jan 28 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-8
1498- (re)enable -docs
1499
1500* Mon Jan 27 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-7
1501- unconditionally enable freetype lcd_filter
1502- (temp) disable docs (libxcb bootstrap)
1503
1504* Sun Jan 26 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-6
1505- fix %%_qt5_examplesdir macro
1506
1507* Sat Jan 25 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-5
1508- -examples subpkg
1509
1510* Mon Jan 13 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.2.0-4
1511- fix QTBUG-35459 (too low entityCharacterLimit=1024 for CVE-2013-4549)
1512- fix QTBUG-35460 (error message for CVE-2013-4549 is misspelled)
1513- reenable docs on Fedora (accidentally disabled)
1514
1515* Mon Jan 13 2014 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-3
1516- move sql build deps into subpkg sections
1517- macro'ize ibase,tds support (disabled on rhel)
1518
1519* Thu Jan 02 2014 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-2
1520- -devel: qtsql apparently wants all drivers available at buildtime
1521
1522* Thu Dec 12 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-1
1523- 5.2.0
1524
1525* Fri Dec 06 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.12.rc1
1526- qt5-base-devel.x86_64 qt5-base-devel.i686 file conflict qconfig.h (#1036956)
1527
1528* Thu Dec 05 2013 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-0.11.rc1
1529- needs a minimum version on sqlite build dependency (#1038617)
1530- fix build when doc macro not defined
1531
1532* Mon Dec 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.10.rc1
1533- 5.2.0-rc1
1534- revert/omit recent egl packaging changes
1535- -doc install changes-5.* files here (#989149)
1536
1537* Tue Nov 26 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.8.beta1.20131108_141
1538- Install changes-5.x.y file (#989149)
1539
1540* Mon Nov 25 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.7.beta1.20131108_141
1541- enable -doc only on primary archs (allow secondary bootstrap)
1542
1543* Fri Nov 22 2013 Lubomir Rintel <lkundrak@v3.sk> 5.2.0-0.6.beta1.20131108_141
1544- Enable EGL support
1545
1546* Sat Nov 09 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.5.beta1.20131108_141
1547- 2013-11-08_141 snapshot, arm switch qreal double
1548
1549* Thu Oct 24 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.4.beta1
1550- 5.2.0-beta1
1551
1552* Wed Oct 16 2013 Rex Dieter <rdieter@fedoraproject.org> 5.2.0-0.3.alpha
1553- disable -docs (for ppc bootstrap mostly)
1554
1555* Wed Oct 16 2013 Lukáš Tinkl <ltinkl@redhat.com> - 5.2.0-0.2.alpha
1556- Fixes #1005482 - qtbase FTBFS on ppc/ppc64
1557
1558* Tue Oct 01 2013 Rex Dieter <rdieter@fedoraproject.org> - 5.2.0-0.1.alpha
1559- 5.2.0-alpha
1560- -system-harfbuzz
1561- rename subpkg -x11 => -gui
1562- move some gui-related plugins base => -gui
1563- don't use symlinks in %%_qt5_bindir (more qtchooser-friendly)
1564
1565* Fri Sep 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 5.1.1-6
1566- -doc subpkg (not enabled)
1567- enable %%check
1568
1569* Mon Sep 23 2013 Dan Horák <dan[at]danny.cz> - 5.1.1-5
1570- fix big endian builds
1571
1572* Wed Sep 11 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-4
1573- macros.qt5: use newer location, use unexpanded macros
1574
1575* Sat Sep 07 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-3
1576- ExcludeArch: ppc64 ppc (#1005482)
1577
1578* Fri Sep 06 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-2
1579- BR: pkgconfig(libudev) pkgconfig(xkbcommon) pkgconfig(xcb-xkb)
1580
1581* Tue Aug 27 2013 Rex Dieter <rdieter@fedoraproject.org> 5.1.1-1
1582- 5.1.1
1583
1584* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 5.0.2-8
1585- Perl 5.18 rebuild
1586
1587* Tue Jul 30 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-7
1588- enable qtchooser support
1589
1590* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 5.0.2-6
1591- Perl 5.18 rebuild
1592
1593* Wed May 08 2013 Than Ngo <than@redhat.com> - 5.0.2-5
1594- add poll support, thanks to fweimer@redhat.com (QTBUG-27195)
1595
1596* Thu Apr 18 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-4
1597- respin lowmem patch to apply (unconditionally) to gcc-4.7.2 too
1598
1599* Fri Apr 12 2013 Dan Horák <dan[at]danny.cz> - 5.0.2-3
1600- rebase the lowmem patch
1601
1602* Wed Apr 10 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-2
1603- more cmake_path love (#929227)
1604
1605* Wed Apr 10 2013 Rex Dieter <rdieter@fedoraproject.org> - 5.0.2-1
1606- 5.0.2
1607- fix cmake config (#929227)
1608
1609* Tue Apr 02 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.2-0.1.rc1
1610- 5.0.2-rc1
1611
1612* Sat Mar 16 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-6
1613- pull in upstream gcc-4.8.0 buildfix
1614
1615* Tue Feb 26 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-5
1616- -static subpkg, Requires: fontconfig-devel,glib2-devel,zlib-devel
1617- -devel: Requires: pkgconfig(gl)
1618
1619* Mon Feb 25 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-4
1620- create/own %%{_qt5_plugindir}/iconengines
1621- -devel: create/own %%{_qt5_archdatadir}/mkspecs/modules
1622- cleanup .prl
1623
1624* Sat Feb 23 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-3
1625- +%%_qt5_libexecdir
1626
1627* Sat Feb 23 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-2
1628- macros.qt5: fix %%_qt5_headerdir, %%_qt5_datadir, %%_qt5_plugindir
1629
1630* Thu Jan 31 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.1-1
1631- 5.0.1
1632- lowmem patch for %%arm, s390
1633
1634* Wed Jan 30 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-4
1635- %%build: -system-pcre, BR: pkgconfig(libpcre)
1636- use -O1 optimization on lowmem (s390) arch
1637
1638* Thu Jan 24 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-3
1639- enable (non-conflicting) qtchooser support
1640
1641* Wed Jan 09 2013 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-2
1642- add qtchooser support (disabled by default)
1643
1644* Wed Dec 19 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-1
1645- 5.0 (final)
1646
1647* Thu Dec 13 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-0.4.rc2
1648- 5.0-rc2
1649- initial try at putting non-conflicting binaries in %%_bindir
1650
1651* Thu Dec 06 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-0.3.rc1
1652- 5.0-rc1
1653
1654* Wed Nov 28 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-0.2.beta2
1655- qtbase --> qt5-qtbase
1656
1657* Mon Nov 19 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-0.1.beta2
1658- %%build: -accessibility
1659- macros.qt5: +%%_qt5_archdatadir +%%_qt5_settingsdir
1660- pull in a couple more configure-related upstream patches
1661
1662* Wed Nov 14 2012 Rex Dieter <rdieter@fedoraproject.org> 5.0.0-0.0.beta2
1663- first try
1664
Note: See TracBrowser for help on using the repository browser.