crux-commits
Threads by month
- ----- 2025 -----
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
May 2016
- 1 participants
- 207 discussions
18 May '16
commit df64bc31ecddfb222dd779762336c5901e71978f
Author: Predrag Ivanovic <predivan(a)mts.rs>
Date: Wed May 18 16:49:11 2016 +0200
dhcpcd: Fix no lease acquired (truncated packet).
Upstream ticket:
http://roy.marples.name/projects/dhcpcd/tktview?name=3f10c9b871
Upstream patch:
http://roy.marples.name/projects/dhcpcd/info/3fd740f3ed
Signed-off-by: Fredrik Rinnestam <fredrik(a)crux.nu>
diff --git a/dhcpcd/.md5sum b/dhcpcd/.md5sum
index c005718..4757128 100644
--- a/dhcpcd/.md5sum
+++ b/dhcpcd/.md5sum
@@ -1 +1,2 @@
8c1340a53fd7e56d32bb6fef6e1354ee dhcpcd-6.11.0.tar.xz
+5c1e9f596840d38affc4bddbc5e6eeb6 dhcpcd-truncated-packet.patch
diff --git a/dhcpcd/Pkgfile b/dhcpcd/Pkgfile
index 21586eb..52dbffd 100644
--- a/dhcpcd/Pkgfile
+++ b/dhcpcd/Pkgfile
@@ -5,12 +5,15 @@
name=dhcpcd
version=6.11.0
-release=1
-source=(http://roy.marples.name/downloads/dhcpcd/$name-$version.tar.xz)
+release=2
+source=(http://roy.marples.name/downloads/dhcpcd/$name-$version.tar.xz
+ dhcpcd-truncated-packet.patch)
build () {
cd $name-$version
+ patch -p0 <$SRC/dhcpcd-truncated-packet.patch
+
./configure --prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
@@ -18,7 +21,7 @@ build () {
--os=linux \
--with-hooks=
- make
+ make
make DESTDIR=$PKG install
chmod -R u+w $PKG
}
diff --git a/dhcpcd/dhcpcd-truncated-packet.patch b/dhcpcd/dhcpcd-truncated-packet.patch
new file mode 100644
index 0000000..c21fd60
--- /dev/null
+++ b/dhcpcd/dhcpcd-truncated-packet.patch
@@ -0,0 +1,77 @@
+Index: dhcp.c
+==================================================================
+--- dhcp.c
++++ dhcp.c
+@@ -1082,13 +1082,16 @@
+ }
+
+ *p++ = DHO_END;
+ len = (size_t)(p - (uint8_t *)bootp);
+
+- /* Pad out to the BOOTP minimum message length.
+- * Some DHCP servers incorrectly require this. */
+- while (len < BOOTP_MESSAGE_LENTH_MIN) {
++ /* Pad out to the BOOTP message length.
++ * Even if we send a DHCP packet with a variable length vendor area,
++ * some servers / relay agents don't like packets smaller than
++ * a BOOTP message which is fine because that's stipulated
++ * in RFC1542 section 2.1. */
++ while (len < sizeof(*bootp)) {
+ *p++ = DHO_PAD;
+ len++;
+ }
+
+ if (ifo->auth.options & DHCPCD_AUTH_SEND && auth_len != 0)
+@@ -3134,18 +3137,30 @@
+ {
+ logger(ifp->ctx, LOG_WARNING,
+ "%s: server %s is not destination",
+ ifp->name, inet_ntoa(from));
+ }
+-
++ /*
++ * DHCP has a variable option area rather than a fixed
++ * vendor area.
++ * Because DHCP uses the BOOTP protocol it should
++ * still send BOOTP sized packets to be RFC compliant.
++ * However some servers send a truncated vendor area.
++ * dhcpcd can work fine without the vendor area being sent.
++ */
+ bytes = get_udp_data(&bootp, buf);
+- if (bytes < sizeof(struct bootp)) {
++ if (bytes < offsetof(struct bootp, vend)) {
+ logger(ifp->ctx, LOG_ERR,
+ "%s: truncated packet (%zu) from %s",
+ ifp->name, bytes, inet_ntoa(from));
+ continue;
+ }
++ /* But to make our IS_DHCP macro easy, ensure the vendor
++ * area has at least 4 octets. */
++ while (bytes < offsetof(struct bootp, vend) + 4)
++ bootp[bytes++] = '\0';
++
+ dhcp_handledhcp(ifp, (struct bootp *)bootp, bytes, &from);
+ if (state->raw_fd == -1)
+ break;
+ }
+ }
+
+Index: dhcp.h
+==================================================================
+--- dhcp.h
++++ dhcp.h
+@@ -129,13 +129,10 @@
+ FQDN_NONE = 0x18,
+ FQDN_PTR = 0x20,
+ FQDN_BOTH = 0x31
+ };
+
+-/* Some crappy DHCP servers require the BOOTP minimum length */
+-#define BOOTP_MESSAGE_LENTH_MIN 300
+-
+ /* Don't import common.h as that defines __unused which causes problems
+ * on some Linux systems which define it as part of a structure */
+ #if __GNUC__ > 2 || defined(__INTEL_COMPILER)
+ # ifndef __packed
+ # define __packed __attribute__((__packed__))
+
1
0
commit e2d68ad267ed54ef75db29290b1b929a8246adcb
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Thu May 19 01:14:46 2016 +1000
aria2: 1.18.5 -> 1.23.0
diff --git a/aria2/.footprint b/aria2/.footprint
index c80da61..bb2f026 100644
--- a/aria2/.footprint
+++ b/aria2/.footprint
@@ -1,6 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/aria2c
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/aria2c.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/aria2c.1.gz
diff --git a/aria2/.md5sum b/aria2/.md5sum
index 526d80d..aa3ef84 100644
--- a/aria2/.md5sum
+++ b/aria2/.md5sum
@@ -1 +1 @@
-806d4518502d648347b1cbb3b31f1ed9 aria2-1.18.5.tar.xz
+9f907e58c624a0f8b7a737376e82cb7c aria2-1.23.0.tar.xz
diff --git a/aria2/Pkgfile b/aria2/Pkgfile
index b467525..d8921f7 100644
--- a/aria2/Pkgfile
+++ b/aria2/Pkgfile
@@ -1,25 +1,23 @@
-# Description: High speed download utility with resuming and segmented features.
+# Description: Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink.
# URL: http://aria2.sourceforge.net/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Younes Hafri ycrux at club dash internet dot fr
# Depends on: c-ares gnutls libgmp libxml2
name=aria2
-version=1.18.5
-release=2
-source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.xz)
+version=1.23.0
+release=1
+source=(https://github.com/aria2/aria2/releases/download/release-$version/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
- --mandir=$PKG/usr/man \
--disable-nls
make
make prefix=$PKG/usr install
- rm -r $PKG/usr/share/doc $PKG/usr/man/{ru,pt}
- rmdir $PKG/usr/share
+ rm -r $PKG/usr/share/doc $PKG/usr/share/man/{ru,pt}
}
1
0
commit 18e3938aab817917ec4c3d7e7844748915726c0a
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Thu May 19 01:04:27 2016 +1000
mkvtoolnix: 8.6.1 -> 9.1.0
diff --git a/mkvtoolnix/.md5sum b/mkvtoolnix/.md5sum
index 5763fde..7a21731 100644
--- a/mkvtoolnix/.md5sum
+++ b/mkvtoolnix/.md5sum
@@ -1 +1 @@
-acc96607003542f3dcc810b54cd1981b mkvtoolnix-8.6.1.tar.xz
+7eafd6f5a9affd35f9cbf607d8ccf9b3 mkvtoolnix-9.1.0.tar.xz
diff --git a/mkvtoolnix/Pkgfile b/mkvtoolnix/Pkgfile
index 3f69cca..31e5bce 100644
--- a/mkvtoolnix/Pkgfile
+++ b/mkvtoolnix/Pkgfile
@@ -1,14 +1,14 @@
# Description: Tools to create, alter and inspect Matroska files.
-# URL: http://www.bunkus.org/videotools/mkvtoolnix
+# URL: https://mkvtoolnix.download/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on: boost file flac libmatroska libvorbis ruby
# Nice to have: wxgtk
name=mkvtoolnix
-version=8.6.1
+version=9.1.0
release=1
-source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.xz)
+source=(https://mkvtoolnix.download/sources/$name-$version.tar.xz)
build() {
cd $name-$version
@@ -31,7 +31,7 @@ build() {
./drake DESTDIR=$PKG install
rm -r \
- $PKG/usr/share/man/{ca,de,es,uk,ja,nl,zh_CN} \
+ $PKG/usr/share/man/{ca,de,es,ja,ko,nl,pl,uk,zh_CN} \
$PKG/usr/share/locale
# remove doc's if wxgtk is installed
1
0
commit c5e53db51c2991cbf0e0906f210b519eac0faa9c
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Thu May 19 00:58:08 2016 +1000
libmatroska: 1.4.2 -> 1.4.4
diff --git a/libmatroska/.md5sum b/libmatroska/.md5sum
index 7c03f1e..cd2942f 100644
--- a/libmatroska/.md5sum
+++ b/libmatroska/.md5sum
@@ -1 +1 @@
-f8fe42003e072a42a19ed40405f9efdb libmatroska-1.4.2.tar.bz2
+6a8e4528f713ec33faf4d793e61f883c libmatroska-1.4.4.tar.bz2
diff --git a/libmatroska/Pkgfile b/libmatroska/Pkgfile
index 90e1aae..c317362 100644
--- a/libmatroska/Pkgfile
+++ b/libmatroska/Pkgfile
@@ -1,13 +1,13 @@
# Description: An extensible open standard Audio/Video container format library.
-# URL: http://www.bunkus.org/videotools/mkvtoolnix/
+# URL: https://mkvtoolnix.download/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org
# Depends on: libebml
name=libmatroska
-version=1.4.2
+version=1.4.4
release=1
-source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.bz2)
+source=(https://mkvtoolnix.download/sources/$name-$version.tar.bz2)
build() {
cd $name-$version
1
0
commit e4f1ad29341d69abedad1177ebfe59af8346da87
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Thu May 19 00:57:10 2016 +1000
libebml: 1.3.1 -> 1.3.3
diff --git a/libebml/.md5sum b/libebml/.md5sum
index b66ca4d..5cf00a5 100644
--- a/libebml/.md5sum
+++ b/libebml/.md5sum
@@ -1 +1 @@
-2d5a0e502fabedfded2a890c6b5513a5 libebml-1.3.1.tar.bz2
+a8b270482620970d9891958618b54d77 libebml-1.3.3.tar.bz2
diff --git a/libebml/Pkgfile b/libebml/Pkgfile
index af3171f..5833af7 100644
--- a/libebml/Pkgfile
+++ b/libebml/Pkgfile
@@ -1,19 +1,17 @@
# Description: A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.
-# URL: http://www.bunkus.org/videotools/mkvtoolnix/
+# URL: https://mkvtoolnix.download/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org.
name=libebml
-version=1.3.1
+version=1.3.3
release=1
-source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$name-$version.tar.bz2)
+source=(https://mkvtoolnix.download/sources/$name-$version.tar.bz2)
build() {
cd $name-$version
- ./configure \
- --prefix=/usr \
- --mandir=/usr/man
+ ./configure --prefix=/usr
make
make prefix=$PKG/usr install
1
0
commit 84cf6195e8b499d78de6e3d3b8eac62d27f81972
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Thu May 19 00:54:05 2016 +1000
qt5: 5.5.1 -> 5.6.0
diff --git a/qt5/.footprint b/qt5/.footprint
index fb287e7..368786b 100644
--- a/qt5/.footprint
+++ b/qt5/.footprint
@@ -4,7 +4,9 @@ drwxr-xr-x root/root etc/ld.so.conf.d/
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/assistant-qt5 -> /usr/share/qt5/bin/assistant
+lrwxrwxrwx root/root usr/bin/canbusutil-qt5 -> /usr/share/qt5/bin/canbusutil
lrwxrwxrwx root/root usr/bin/designer-qt5 -> /usr/share/qt5/bin/designer
+lrwxrwxrwx root/root usr/bin/fixqt4headers.pl-qt5 -> /usr/share/qt5/bin/fixqt4headers.pl
lrwxrwxrwx root/root usr/bin/lconvert-qt5 -> /usr/share/qt5/bin/lconvert
lrwxrwxrwx root/root usr/bin/linguist-qt5 -> /usr/share/qt5/bin/linguist
lrwxrwxrwx root/root usr/bin/lrelease-qt5 -> /usr/share/qt5/bin/lrelease
@@ -17,12 +19,12 @@ lrwxrwxrwx root/root usr/bin/qdbuscpp2xml-qt5 -> /usr/share/qt5/bin/qdbuscpp2xml
lrwxrwxrwx root/root usr/bin/qdbusviewer-qt5 -> /usr/share/qt5/bin/qdbusviewer
lrwxrwxrwx root/root usr/bin/qdbusxml2cpp-qt5 -> /usr/share/qt5/bin/qdbusxml2cpp
lrwxrwxrwx root/root usr/bin/qdoc-qt5 -> /usr/share/qt5/bin/qdoc
+lrwxrwxrwx root/root usr/bin/qgltf-qt5 -> /usr/share/qt5/bin/qgltf
lrwxrwxrwx root/root usr/bin/qhelpconverter-qt5 -> /usr/share/qt5/bin/qhelpconverter
lrwxrwxrwx root/root usr/bin/qhelpgenerator-qt5 -> /usr/share/qt5/bin/qhelpgenerator
lrwxrwxrwx root/root usr/bin/qlalr-qt5 -> /usr/share/qt5/bin/qlalr
lrwxrwxrwx root/root usr/bin/qmake-qt5 -> /usr/share/qt5/bin/qmake
lrwxrwxrwx root/root usr/bin/qml-qt5 -> /usr/share/qt5/bin/qml
-lrwxrwxrwx root/root usr/bin/qml1plugindump-qt5 -> /usr/share/qt5/bin/qml1plugindump
lrwxrwxrwx root/root usr/bin/qmleasing-qt5 -> /usr/share/qt5/bin/qmleasing
lrwxrwxrwx root/root usr/bin/qmlimportscanner-qt5 -> /usr/share/qt5/bin/qmlimportscanner
lrwxrwxrwx root/root usr/bin/qmllint-qt5 -> /usr/share/qt5/bin/qmllint
@@ -31,7 +33,6 @@ lrwxrwxrwx root/root usr/bin/qmlplugindump-qt5 -> /usr/share/qt5/bin/qmlplugindu
lrwxrwxrwx root/root usr/bin/qmlprofiler-qt5 -> /usr/share/qt5/bin/qmlprofiler
lrwxrwxrwx root/root usr/bin/qmlscene-qt5 -> /usr/share/qt5/bin/qmlscene
lrwxrwxrwx root/root usr/bin/qmltestrunner-qt5 -> /usr/share/qt5/bin/qmltestrunner
-lrwxrwxrwx root/root usr/bin/qmlviewer-qt5 -> /usr/share/qt5/bin/qmlviewer
lrwxrwxrwx root/root usr/bin/qtdiag-qt5 -> /usr/share/qt5/bin/qtdiag
lrwxrwxrwx root/root usr/bin/qtpaths-qt5 -> /usr/share/qt5/bin/qtpaths
lrwxrwxrwx root/root usr/bin/qtplugininfo-qt5 -> /usr/share/qt5/bin/qtplugininfo
@@ -45,18 +46,17 @@ lrwxrwxrwx root/root usr/include/qt5 -> ../share/qt5/include
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
lrwxrwxrwx root/root usr/lib/cmake/Qt5 -> /usr/share/qt5/lib/cmake/Qt5
-lrwxrwxrwx root/root usr/lib/cmake/Qt53DCollision -> /usr/share/qt5/lib/cmake/Qt53DCollision
lrwxrwxrwx root/root usr/lib/cmake/Qt53DCore -> /usr/share/qt5/lib/cmake/Qt53DCore
lrwxrwxrwx root/root usr/lib/cmake/Qt53DInput -> /usr/share/qt5/lib/cmake/Qt53DInput
lrwxrwxrwx root/root usr/lib/cmake/Qt53DLogic -> /usr/share/qt5/lib/cmake/Qt53DLogic
lrwxrwxrwx root/root usr/lib/cmake/Qt53DQuick -> /usr/share/qt5/lib/cmake/Qt53DQuick
-lrwxrwxrwx root/root usr/lib/cmake/Qt53DQuickRenderer -> /usr/share/qt5/lib/cmake/Qt53DQuickRenderer
-lrwxrwxrwx root/root usr/lib/cmake/Qt53DRenderer -> /usr/share/qt5/lib/cmake/Qt53DRenderer
+lrwxrwxrwx root/root usr/lib/cmake/Qt53DQuickInput -> /usr/share/qt5/lib/cmake/Qt53DQuickInput
+lrwxrwxrwx root/root usr/lib/cmake/Qt53DQuickRender -> /usr/share/qt5/lib/cmake/Qt53DQuickRender
+lrwxrwxrwx root/root usr/lib/cmake/Qt53DRender -> /usr/share/qt5/lib/cmake/Qt53DRender
lrwxrwxrwx root/root usr/lib/cmake/Qt5Bluetooth -> /usr/share/qt5/lib/cmake/Qt5Bluetooth
lrwxrwxrwx root/root usr/lib/cmake/Qt5Concurrent -> /usr/share/qt5/lib/cmake/Qt5Concurrent
lrwxrwxrwx root/root usr/lib/cmake/Qt5Core -> /usr/share/qt5/lib/cmake/Qt5Core
lrwxrwxrwx root/root usr/lib/cmake/Qt5DBus -> /usr/share/qt5/lib/cmake/Qt5DBus
-lrwxrwxrwx root/root usr/lib/cmake/Qt5Declarative -> /usr/share/qt5/lib/cmake/Qt5Declarative
lrwxrwxrwx root/root usr/lib/cmake/Qt5Designer -> /usr/share/qt5/lib/cmake/Qt5Designer
lrwxrwxrwx root/root usr/lib/cmake/Qt5Enginio -> /usr/share/qt5/lib/cmake/Qt5Enginio
lrwxrwxrwx root/root usr/lib/cmake/Qt5Gui -> /usr/share/qt5/lib/cmake/Qt5Gui
@@ -78,6 +78,7 @@ lrwxrwxrwx root/root usr/lib/cmake/Qt5QuickWidgets -> /usr/share/qt5/lib/cmake/Q
lrwxrwxrwx root/root usr/lib/cmake/Qt5Script -> /usr/share/qt5/lib/cmake/Qt5Script
lrwxrwxrwx root/root usr/lib/cmake/Qt5ScriptTools -> /usr/share/qt5/lib/cmake/Qt5ScriptTools
lrwxrwxrwx root/root usr/lib/cmake/Qt5Sensors -> /usr/share/qt5/lib/cmake/Qt5Sensors
+lrwxrwxrwx root/root usr/lib/cmake/Qt5SerialBus -> /usr/share/qt5/lib/cmake/Qt5SerialBus
lrwxrwxrwx root/root usr/lib/cmake/Qt5SerialPort -> /usr/share/qt5/lib/cmake/Qt5SerialPort
lrwxrwxrwx root/root usr/lib/cmake/Qt5Sql -> /usr/share/qt5/lib/cmake/Qt5Sql
lrwxrwxrwx root/root usr/lib/cmake/Qt5Svg -> /usr/share/qt5/lib/cmake/Qt5Svg
@@ -92,45 +93,37 @@ lrwxrwxrwx root/root usr/lib/cmake/Qt5Xml -> /usr/share/qt5/lib/cmake/Qt5Xml
lrwxrwxrwx root/root usr/lib/cmake/Qt5XmlPatterns -> /usr/share/qt5/lib/cmake/Qt5XmlPatterns
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/Enginio.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt53DCollision.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DCore.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DInput.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DLogic.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DQuick.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt53DQuickRenderer.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt53DRenderer.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DQuickInput.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DQuickRender.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/Qt53DRender.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Bluetooth.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5Bootstrap.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5CLucene.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Concurrent.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Core.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5DBus.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5Declarative.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Designer.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5DesignerComponents.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5EglDeviceIntegration.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Gui.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Help.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Location.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Multimedia.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5MultimediaQuick_p.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5MultimediaWidgets.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Network.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Nfc.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5OpenGL.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5OpenGLExtensions.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5PlatformSupport.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Positioning.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5PrintSupport.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Qml.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5QmlDevTools.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Quick.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5QuickParticles.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5QuickTest.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5QuickWidgets.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Script.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5ScriptTools.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Sensors.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/Qt5SerialBus.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5SerialPort.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Sql.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Svg.pc
@@ -140,7 +133,6 @@ drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5WebSockets.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Widgets.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5X11Extras.pc
--rw-r--r-- root/root usr/lib/pkgconfig/Qt5XcbQpa.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Xml.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5XmlPatterns.pc
lrwxrwxrwx root/root usr/lib/qt5 -> ../share/qt5/lib
@@ -148,7 +140,9 @@ drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/qt5/
drwxr-xr-x root/root usr/share/qt5/bin/
-rwxr-xr-x root/root usr/share/qt5/bin/assistant
+-rwxr-xr-x root/root usr/share/qt5/bin/canbusutil
-rwxr-xr-x root/root usr/share/qt5/bin/designer
+-rwxr-xr-x root/root usr/share/qt5/bin/fixqt4headers.pl
-rwxr-xr-x root/root usr/share/qt5/bin/lconvert
-rwxr-xr-x root/root usr/share/qt5/bin/linguist
-rwxr-xr-x root/root usr/share/qt5/bin/lrelease
@@ -161,12 +155,12 @@ drwxr-xr-x root/root usr/share/qt5/bin/
-rwxr-xr-x root/root usr/share/qt5/bin/qdbusviewer
-rwxr-xr-x root/root usr/share/qt5/bin/qdbusxml2cpp
-rwxr-xr-x root/root usr/share/qt5/bin/qdoc
+-rwxr-xr-x root/root usr/share/qt5/bin/qgltf
-rwxr-xr-x root/root usr/share/qt5/bin/qhelpconverter
-rwxr-xr-x root/root usr/share/qt5/bin/qhelpgenerator
-rwxr-xr-x root/root usr/share/qt5/bin/qlalr
-rwxr-xr-x root/root usr/share/qt5/bin/qmake
-rwxr-xr-x root/root usr/share/qt5/bin/qml
--rwxr-xr-x root/root usr/share/qt5/bin/qml1plugindump
-rwxr-xr-x root/root usr/share/qt5/bin/qmleasing
-rwxr-xr-x root/root usr/share/qt5/bin/qmlimportscanner
-rwxr-xr-x root/root usr/share/qt5/bin/qmllint
@@ -175,7 +169,6 @@ drwxr-xr-x root/root usr/share/qt5/bin/
-rwxr-xr-x root/root usr/share/qt5/bin/qmlprofiler
-rwxr-xr-x root/root usr/share/qt5/bin/qmlscene
-rwxr-xr-x root/root usr/share/qt5/bin/qmltestrunner
--rwxr-xr-x root/root usr/share/qt5/bin/qmlviewer
-rwxr-xr-x root/root usr/share/qt5/bin/qtdiag
-rwxr-xr-x root/root usr/share/qt5/bin/qtpaths
-rwxr-xr-x root/root usr/share/qt5/bin/qtplugininfo
@@ -207,6 +200,7 @@ drwxr-xr-x root/root usr/share/qt5/doc/global/includes/
-rw-r--r-- root/root usr/share/qt5/doc/global/macros.qdocconf
-rw-r--r-- root/root usr/share/qt5/doc/global/manifest-meta.qdocconf
-rw-r--r-- root/root usr/share/qt5/doc/global/qt-cpp-defines.qdocconf
+-rw-r--r-- root/root usr/share/qt5/doc/global/qt-html-templates-offline-simple.qdocconf
-rw-r--r-- root/root usr/share/qt5/doc/global/qt-html-templates-offline.qdocconf
-rw-r--r-- root/root usr/share/qt5/doc/global/qt-html-templates-online.qdocconf
-rw-r--r-- root/root usr/share/qt5/doc/global/qt-module-defaults-offline.qdocconf
@@ -263,43 +257,25 @@ drwxr-xr-x root/root usr/share/qt5/doc/global/template/style/
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/icomoon.ttf
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/icomoon.woff
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/list_arrow.png
+-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/list_expand.png
+-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/offline-simple.css
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/offline.css
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/online.css
-rw-r--r-- root/root usr/share/qt5/doc/global/template/style/theqtcompany.png
-drwxr-xr-x root/root usr/share/qt5/imports/
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/folderlistmodel/
--rwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/folderlistmodel/plugins.qmltypes
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/folderlistmodel/qmldir
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/gestures/
--rwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/gestures/libqmlgesturesplugin.so
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/gestures/plugins.qmltypes
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/gestures/qmldir
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/particles/
--rwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/particles/libqmlparticlesplugin.so
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/particles/plugins.qmltypes
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/particles/qmldir
-drwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/shaders/
--rwxr-xr-x root/root usr/share/qt5/imports/Qt/labs/shaders/libqmlshadersplugin.so
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/shaders/plugins.qmltypes
--rw-r--r-- root/root usr/share/qt5/imports/Qt/labs/shaders/qmldir
--rw-r--r-- root/root usr/share/qt5/imports/builtins.qmltypes
drwxr-xr-x root/root usr/share/qt5/include/
drwxr-xr-x root/root usr/share/qt5/include/Enginio/
-drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.2.1/
-drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/
-drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/chunkdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginiobackendconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginiobasemodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginioclient_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginiodummyreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginiofakereply_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginioobjectadaptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginioreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/enginiostring_p.h
+drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/
+drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/chunkdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginiobackendconnection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginiobasemodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginioclient_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginiodummyreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginiofakereply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginioobjectadaptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginioreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Enginio/1.6.0/Enginio/private/enginiostring_p.h
-rw-r--r-- root/root usr/share/qt5/include/Enginio/Enginio
-rw-r--r-- root/root usr/share/qt5/include/Enginio/EnginioDepends
-rw-r--r-- root/root usr/share/qt5/include/Enginio/EnginioVersion
@@ -314,252 +290,210 @@ drwxr-xr-x root/root usr/share/qt5/include/Enginio/1.2.1/Enginio/private/
-rw-r--r-- root/root usr/share/qt5/include/Enginio/enginioreply.h
-rw-r--r-- root/root usr/share/qt5/include/Enginio/enginioreplystate.h
-rw-r--r-- root/root usr/share/qt5/include/Enginio/enginioversion.h
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCollision/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCollision/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qabstractcollider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qboxcollider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qcapsulecollider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qcollisionaspect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qgeometrycollider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/5.5.1/Qt3DCollision/private/qspherecollider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QAbstractCollider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QBoxCollider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QCapsuleCollider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QCollisionAspect
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QGeometryCollider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/QSphereCollider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/Qt3DCollision
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/Qt3DCollisionDepends
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/Qt3DCollisionVersion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qabstractcollider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qboxcollider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qcapsulecollider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qcollisionaspect.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qgeometrycollider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qspherecollider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qt3dcollision_global.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCollision/qt3dcollisionversion.h
drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/corelogging_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/dependencyhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/nullservices_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/propertychangehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractaspect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractaspectjobmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractcollisionqueryservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractframeadvanceservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstractserviceprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qabstracttransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qaspectengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qaspectfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qaspectjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qaspectjobmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qaspectmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qbackendnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qbackendscenepropertychange_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qboundedcircularbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qcamera_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qcameralens_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qchangearbiter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qcircularbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qcollisionqueryresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qcomponent_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qentity_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qframeallocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qlockableobserverinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qlookattransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qmatrixtransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qobservableinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qobserverinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qopenglinformationservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qpostman_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qresourcemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qrotatetransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qscaletransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qscene_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qscenechange_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qscenepropertychange_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qscheduler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qsysteminformationservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qt3dcore_global_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qthreadpooler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qtickclock_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qtickclockservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qtransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qtranslatetransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/qurlhelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/task_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.5.1/Qt3DCore/private/weaverjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/FunctorType
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/corelogging_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/dependencyhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/nullservices_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/propertychangehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qabstractaspect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qabstractaspectjobmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qabstractframeadvanceservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qabstractframeadvanceservice_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qabstractserviceprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectjobmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectjobproviderinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qaspectthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qbackendnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qbackendnodefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qbackendscenepropertychange_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qboundedcircularbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qcamera_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qcameralens_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qchangearbiter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qcircularbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qcomponent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qentity_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qeventfilterservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qframeallocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qframeallocator_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qhandle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qhandlemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qlockableobserverinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qmath3d_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qnodevisitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qobservableinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qobserverinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qopenglinformationservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qopenglinformationservice_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qpostman_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qresourcemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qscene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qscenechange_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qsceneobserverinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qscenepropertychange_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qscheduler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qservicelocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qsysteminformationservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qsysteminformationservice_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qt3dcore_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qthreadpooler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qtickclock_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qtickclockservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/qtransform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/5.6.0/Qt3DCore/private/task_p.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractAspect
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractAttribute
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractBuffer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractBufferPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractCollisionQueryService
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractFrameAdvanceService
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractFunctor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractServiceProvider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractTransform
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAbstractNodeFactory
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectEngine
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectFactory
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectJob
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectJobProviderInterface
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectJobPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAspectThread
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QAxisAlignedBoundingBox
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendNode
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendNodeFactory
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendNodeFunctor
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendNodeFunctorPtr
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendScenePropertyChange
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBackendScenePropertyChangePtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBoundingSphere
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBoundingVolume
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QBoundingVolumeProvider
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QCamera
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QCameraLens
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QCollisionQueryResult
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QComponent
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QComponentList
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QEntity
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QFrameAllocator
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QHandle
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QHandleManager
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QLookAtTransform
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QMatrixTransform
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QNode
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QNodeId
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QNodeList
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QNodePtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QNodeVisitor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QOpenGLInformationService
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QQueryHandle
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QRay3D
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QRotateTransform
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QScaleTransform
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QSceneChange
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QSceneChangePtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QSceneObserverInterface
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QScenePropertyChange
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QScenePropertyChangePtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QServiceLocator
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QSystemInformationService
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QTransform
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/QTranslateTransform
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/Qt3DCore
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/Qt3DCoreDepends
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/Qt3DCoreVersion
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractaspect.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractattribute.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractbuffer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractcollisionqueryservice.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractframeadvanceservice.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractfunctor.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstracttransform.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qabstractnodefactory.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaspectengine.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaspectfactory.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaspectjob.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaspectjobproviderinterface.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaspectthread.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qaxisalignedboundingbox.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qbackendnode.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qbackendnodefactory.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qbackendscenepropertychange.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qboundingsphere.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qboundingvolume.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qboundingvolumeprovider.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qcamera.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qcameralens.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qcollisionqueryresult.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qcomponent.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qentity.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qframeallocator.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qhandle.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qhandlemanager.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qlookattransform.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qmatrixtransform.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qnode.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qnodeid.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qnodevisitor.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qopenglinformationservice.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qray3d.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qrotatetransform.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qscaletransform.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qscenechange.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qsceneobserverinterface.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qscenepropertychange.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qservicelocator.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qsysteminformationservice.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qt3dcore_global.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qt3dcoreversion.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qtransform.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DCore/qtranslatetransform.h
drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/assignkeyboardfocusjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/cameracontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/handle_types_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/inputhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/inputmanagers_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/keyboardcontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/keyboardeventfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/keyboardinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/keyeventdispatcherjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/mousecontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/mouseeventdispatcherjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/mouseinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/qinputaspect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/qkeyboardcontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/qkeyboardinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/qmousecontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.5.1/Qt3DInput/private/qmouseinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/MouseEventFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DKeyEvent
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DKeyEventPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DMouseEvent
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DMouseEventPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DWheelEvent
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Q3DWheelEventPtr
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/action_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/actioninput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/assignkeyboardfocusjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/axis_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/axisactionhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/axisactionpayload_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/axisinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/axissetting_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/cameracontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/handle_types_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/inputbackendnodefunctor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/inputhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/inputmanagers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/keyboardcontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/keyboardeventfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/keyboardinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/keyboardmousedeviceintegration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/keyeventdispatcherjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/logicaldevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/mousecontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/mouseeventdispatcherjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/mouseeventfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/mouseinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/movingaverage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qabstractphysicaldevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qabstractphysicaldevicebackendnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qaxisactionhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qinputaspect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qinputdeviceintegration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qinputdeviceintegrationfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qkeyboardcontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qkeyboardinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qmousecontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qmouseinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/qt3dinput_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/updateaxisactionjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/5.6.0/Qt3DInput/private/updatehandlerjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAbstractPhysicalDevice
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAbstractPhysicalDeviceBackendNode
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAction
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QActionInput
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAxis
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAxisActionHandler
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAxisInput
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QAxisSetting
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QBackendNodeFunctorPtr
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QInputAspect
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QInputDeviceIntegration
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QInputDevicePlugin
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QKeyEvent
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QKeyEventPtr
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QKeyboardController
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QKeyboardInput
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QLogicalDevice
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QMouseController
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QMouseEvent
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QMouseEventPtr
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QMouseInput
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QWheelEvent
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/QWheelEventPtr
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Qt3DInput
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Qt3DInputDepends
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/Qt3DInputVersion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/mouseeventfilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/q3dkeyevent.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/q3dmouseevent.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qabstractphysicaldevice.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qabstractphysicaldevicebackendnode.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qaction.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qactioninput.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qaxis.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qaxisactionhandler.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qaxisinput.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qaxissetting.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qinputaspect.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qinputdeviceintegration.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qinputdeviceplugin.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qkeyboardcontroller.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qkeyboardinput.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qkeyevent.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qlogicaldevice.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qmousecontroller.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qmouseevent.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qmouseinput.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qt3dinput_global.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DInput/qt3dinputversion.h
drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/handle_types_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/logiccallbackjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/logicexecutor_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/logichandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/logicmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/logicmanagers_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/qlogicaspect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/qlogiccomponent_p.h
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/callbackjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/executor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/handle_types_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/handler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/manager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/managers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/qlogicaspect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/5.6.0/Qt3DLogic/private/qlogiccomponent_p.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/QLogicAspect
-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/QLogicComponent
-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/Qt3DLogic
@@ -570,481 +504,546 @@ drwxr-xr-x root/root usr/share/qt5/include/Qt3DLogic/5.5.1/Qt3DLogic/private/
-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/qt3dlogic_global.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DLogic/qt3dlogicversion.h
drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/qqmlaspectengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/qt3dquick_global_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/qt3dquickvaluetypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/quick3dentityloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/quick3dnodeinstantiator_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.5.1/Qt3DQuick/private/quick3dnodeinstantiator_p_p.h
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/qqmlaspectengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/qquaternionanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/qt3dquick_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/qt3dquicknodefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/qt3dquickvaluetypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dconfiguration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dentity_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dentityloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dentityloader_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/5.6.0/Qt3DQuick/private/quick3dnodeinstantiator_p.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/QQmlAspectEngine
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Qt3DQuick
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Qt3DQuickDepends
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Qt3DQuickVersion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Quick3DConfiguration
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Quick3DEntity
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Quick3DEntityLoader
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Quick3DNode
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/Quick3DTransform
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/qqmlaspectengine.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/qt3dquick_global.h
-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/qt3dquickversion.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/quick3dconfiguration.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/quick3dentity.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/quick3dentityloader.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/quick3dnode.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuick/quick3dtransform.h
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRenderer/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRenderer/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRenderer/5.5.1/Qt3DQuickRenderer/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRenderer/5.5.1/Qt3DQuickRenderer/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/5.5.1/Qt3DQuickRenderer/private/quick3dparameter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/5.5.1/Qt3DQuickRenderer/private/shaderpropertyparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Qt3DQuickRenderer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Qt3DQuickRendererDepends
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Qt3DQuickRendererVersion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DEffect
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DGeometry
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DParameter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DRenderPass
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DRenderPassFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DRenderTarget
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DRenderTargetSelector
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DScene
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DShaderData
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DShaderDataArray
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DSortMethod
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DStateSet
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DTechnique
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DTechniqueFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DTextureExtension
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/Quick3DViewport
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/qt3dquickrenderer_global.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/qt3dquickrendererversion.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3deffect.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dgeometry.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dparameter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3drenderpass.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3drenderpassfilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3drendertarget.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3drendertargetselector.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dscene.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dshaderdata.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dshaderdataarray.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dsortmethod.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dstateset.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dtechnique.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dtechniquefilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dtexture.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRenderer/quick3dviewport.h
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DRenderer/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/
-drwxr-xr-x root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/abstractsceneparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/attachmentpack_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/blendstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/buffermanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/cameraselectornode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/clearbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/framecleanupjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/framegraphnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/framegraphsubtreeselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/framegraphvisitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/framepreparationjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/genericstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/geometryrenderermanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/handle_types_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/layerfilternode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/loadbufferjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/loadgeometryjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/loadscenejob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/loadtexturedatajob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/managers_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/nodraw_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/objloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/parameterpack_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/platformsurfacefilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qabstractlight_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qabstractsceneloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qabstracttextureimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qabstracttextureprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qannotation_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qcameraselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qclearbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qdiffusemapmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qdiffusespecularmapmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qdirectionallight_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qeffect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qforwardrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qframegraph_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qframegraphnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qframegraphselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgeometryrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgoochmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicscontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicshelperes2_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicshelpergl2_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicshelpergl3_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicshelpergl4_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicshelperinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qgraphicsutils_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qlayer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qlayerfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qmesh_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qnormaldiffusemapalphamaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qnormaldiffusemapmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qnormaldiffusespecularmapmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qparameter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qparametermapping_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qpervertexcolormaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qphongmaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qpointlight_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qraycastingservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrenderaspect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrenderattachment_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrenderpass_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrenderpassfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrenderstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrendertarget_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qrendertargetselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qshaderdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qshaderprogram_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qskyboxentity_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qsortcriterion_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qsortmethod_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qspotlight_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qstateset_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qt3drenderer_global_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qtechnique_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qtechniquefilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/quniformvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qviewport_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/qwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderannotation_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderattachment_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendercameralens_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendercommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderconfiguration_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendereffect_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderentity_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendergeometry_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendergeometryrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderlayer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderlogging_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendermaterial_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendernodefunctor_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderparameter_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderparametermapping_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderpassfilternode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderqueue_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderrenderpass_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderscene_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendershader_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendershaderdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertarget_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertargetselectornode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertechnique_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertexture_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertextureimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderthread_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/rendertransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderview_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderviewjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/renderviewjobutils_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/scenemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/shadervariables_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/sortcriterion_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/sortmethod_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/statesetnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/techniquefilternode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/texturedatamanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/uniformbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/updateboundingvolumejob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/updateworldtransformjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/viewportnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/5.5.1/Qt3DRenderer/private/vsyncframeadvanceservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/ParameterList
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/PropertyReaderInterface
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/PropertyReaderInterfacePtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAbstractLight
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAbstractSceneLoader
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAbstractTextureImage
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAbstractTextureProvider
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAlphaCoverage
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAlphaTest
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAnnotation
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAttribute
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QAttributeList
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBlendEquation
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBlendState
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBlendStateSeparate
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBuffer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBufferFunctor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QBufferFunctorPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QCameraSelector
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QClearBuffer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QClipPlane
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QColorMask
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QCuboidMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QCullFace
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QCylinderMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDepthMask
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDepthTest
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDiffuseMapMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDiffuseSpecularMapMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDirectionalLight
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QDithering
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QEffect
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QForwardRenderer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrameGraph
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrameGraphNode
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrameGraphSelector
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrameGraphSelectorFunctor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrameGraphSelectorFunctorPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QFrontFace
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QGeometry
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QGeometryFunctor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QGeometryFunctorPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QGeometryRenderer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QGoochMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QItemModelBuffer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QLayer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QLayerFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QNoDraw
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QNormalDiffuseMapAlphaMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QNormalDiffuseMapMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QNormalDiffuseSpecularMapMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QOpenGLFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QParameter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QParameterMapping
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QPerVertexColorMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QPhongMaterial
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QPlaneMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QPointLight
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QPolygonOffset
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRayCastingService
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderAspect
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderAttachment
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderPass
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderPassFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderState
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderTarget
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QRenderTargetSelector
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSceneLoader
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QScissorTest
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QShaderData
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QShaderProgram
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSkyboxEntity
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSortCriterion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSortMethod
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSphereMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QSpotLight
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStateSet
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStencilMask
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStencilOp
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStencilOpSeparate
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStencilTest
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QStencilTestSeparate
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTechnique
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTechniqueFilter
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture1D
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture1DArray
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture2D
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture2DArray
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture2DMultisample
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture2DMultisampleArray
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTexture3D
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureBuffer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureCubeMap
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureCubeMapArray
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureDataFunctor
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureDataFunctorPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureImage
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureRectangle
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTextureWrapMode
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QTorusMesh
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QViewport
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/QWindow
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/Qt3DRenderer
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/Qt3DRendererDepends
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/Qt3DRendererVersion
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/Sphere
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/TexImageData
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/TexImageDataPtr
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/TextureDict
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qabstractlight.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qabstractsceneloader.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qabstracttextureimage.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qabstracttextureprovider.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qalphacoverage.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qalphatest.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qannotation.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qattribute.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qblendequation.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qblendstate.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qbuffer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qbufferfunctor.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qcameraselector.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qclearbuffer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qclipplane.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qcolormask.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qcuboidmesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qcullface.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qcylindermesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdepthmask.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdepthtest.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdiffusemapmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdiffusespecularmapmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdirectionallight.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qdithering.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qeffect.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qforwardrenderer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qframegraph.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qframegraphnode.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qframegraphselector.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qfrontface.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qgeometry.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qgeometryfunctor.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qgeometryrenderer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qgoochmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qitemmodelbuffer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qlayer.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qlayerfilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qmesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qnodraw.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qnormaldiffusemapalphamaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qnormaldiffusemapmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qnormaldiffusespecularmapmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qopenglfilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qparameter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qparametermapping.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qpervertexcolormaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qphongmaterial.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qplanemesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qpointlight.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qpolygonoffset.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qraycastingservice.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrenderaspect.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrenderattachment.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrenderpass.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrenderpassfilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrenderstate.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrendertarget.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qrendertargetselector.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qsceneloader.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qscissortest.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qshaderdata.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qshaderprogram.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qskyboxentity.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qsortcriterion.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qsortmethod.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qspheremesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qspotlight.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstateset.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstencilmask.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstencilop.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstencilopseparate.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstenciltest.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qstenciltestseparate.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qt3drenderer_global.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qt3drendererversion.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtechnique.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtechniquefilter.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtexture.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtextureimage.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtextureproviders.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qtorusmesh.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qviewport.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qwindow.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/qwrapmode.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/sphere.h
--rw-r--r-- root/root usr/share/qt5/include/Qt3DRenderer/texturedata.h
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickInput/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/qt3dquickinput_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/qt3dquickinputnodefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/quick3daction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/quick3daxis_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/quick3dlogicaldevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/5.6.0/Qt3DQuickInput/private/quick3dphysicaldevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/Qt3DQuickInput
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/Qt3DQuickInputDepends
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/Qt3DQuickInputVersion
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/qt3dquickinput_global.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickInput/qt3dquickinputversion.h
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRender/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/qt3dquickrender_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/qt3dquickrendernodefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3deffect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dgeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dparameter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dparameter_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3drenderpass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3drenderpassfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3drendertarget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3drendertargetselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dscene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dshaderdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dshaderdataarray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dsortmethod_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dstateset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dtechnique_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dtechniquefilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dtexture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/5.6.0/Qt3DQuickRender/private/quick3dviewport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/Qt3DQuickRender
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/Qt3DQuickRenderDepends
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/Qt3DQuickRenderVersion
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/qt3dquickrender_global.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DQuickRender/qt3dquickrenderversion.h
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DRender/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DRender/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/
+drwxr-xr-x root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/abstractrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/annotation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/attachmentpack_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/attribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/boundingvolumedebug_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/buffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/buffermanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/calcboundingvolumejob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/calcgeometrytrianglevolumes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/cameralens_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/cameraselectornode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/clearbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/dispatchcompute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/effect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/entity_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/framecleanupjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/framegraphnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/framegraphsubtreeselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/framegraphvisitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/framepreparationjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/frustumculling_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/genericstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/geometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/geometryrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/geometryrenderermanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicscontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelperes2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelpergl2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelpergl3_3_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelpergl3_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelpergl4_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/graphicshelperinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/handle_types_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/layer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/layerfilternode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/light_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/lighting_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/loadbufferjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/loadgeometryjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/loadscenejob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/loadtexturedatajob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/managers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/material_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/nodefunctor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/nodemanagers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/nodraw_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/objectpicker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/objloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/openglvertexarrayobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/parameter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/parametermapping_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/parameterpack_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/pickboundingvolumejob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/pickeventfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/platformsurfacefilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstractattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstractbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstractcollisionqueryservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstractsceneloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstracttextureimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qabstracttextureprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qannotation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qaxisalignedboundingbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qboundingsphere_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qboundingvolume_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qboundingvolumeprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qcameraselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qclearbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qcollisionqueryresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qcuboidgeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qcylindergeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qdiffusemapmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qdiffusespecularmapmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qdirectionallight_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qeffect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qforwardrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qframegraph_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qframegraphnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qframegraphselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qgeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qgeometryrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qgoochmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qgraphicsutils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qlayer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qlayerfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qlight_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qlighting_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qmesh_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qnormaldiffusemapalphamaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qnormaldiffusemapmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qnormaldiffusespecularmapmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qparameter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qparametermapping_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qpervertexcolormaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qphongalphamaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qphongmaterial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qplanegeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qpointlight_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qraycastingservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrenderaspect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrenderattachment_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrenderpass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrenderpassfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrenderstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrendertarget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qrendertargetselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qsceneparserfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qshaderdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qshaderprogram_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qskyboxentity_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qsortcriterion_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qsortmethod_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qspheregeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qspotlight_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qstateset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qt3drender_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qtechnique_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qtechniquefilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qtexturedata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qtorusgeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/quniformvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qurlhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qviewport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/qwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderattachment_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/rendercommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderconfiguration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderlogging_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderpass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderpassfilternode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderqueue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderstates_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderstateset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/rendertarget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/rendertargetselectornode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderviewjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/renderviewjobutils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/scene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/scenemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/shader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/shaderdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/shadervariables_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/sortcriterion_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/sortmethod_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/sphere_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/statesetnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/technique_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/techniquefilternode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/texture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/texturedatamanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/textureimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/transform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/triangleboundingvolume_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/trianglesextractor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/uniformbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/updateboundingvolumejob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/updateworldtransformjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/viewportnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/5.6.0/Qt3DRender/private/vsyncframeadvanceservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/FunctorType
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/ParameterList
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/PropertyReaderInterface
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/PropertyReaderInterfacePtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractAttribute
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractBuffer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractBufferPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractFunctor
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractSceneLoader
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractSceneParser
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractTextureImage
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAbstractTextureProvider
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAlphaCoverage
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAlphaTest
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAnnotation
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAttribute
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QAttributeList
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBlendEquation
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBlendState
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBlendStateSeparate
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBoundingVolumeDebug
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBoundingVolumeSpecifier
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBuffer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBufferFunctor
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QBufferFunctorPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCameraSelector
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QClearBuffer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QClipPlane
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QColorMask
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCuboidGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCuboidMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCullFace
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCylinderGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QCylinderMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDepthMask
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDepthTest
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDiffuseMapMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDiffuseSpecularMapMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDirectionalLight
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDispatchCompute
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QDithering
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QEffect
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QForwardRenderer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrameGraph
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrameGraphNode
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrameGraphSelector
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrameGraphSelectorFunctor
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrameGraphSelectorFunctorPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrontFace
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QFrustumCulling
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGeometryFunctor
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGeometryFunctorPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGeometryRenderer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGoochMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QGraphicsApiFilter
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QItemModelBuffer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QLayer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QLayerFilter
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QLight
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QLighting
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QNoDraw
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QNormalDiffuseMapAlphaMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QNormalDiffuseMapMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QNormalDiffuseSpecularMapMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QObjectPicker
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QParameter
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QParameterMapping
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPerVertexColorMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPhongAlphaMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPhongMaterial
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPickEvent
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPlaneGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPlaneMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPointLight
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPointSize
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QPolygonOffset
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderAspect
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderAttachment
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderPass
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderPassFilter
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderState
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderTarget
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QRenderTargetSelector
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSceneLoader
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSceneParserPlugin
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QScissorTest
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QShaderData
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QShaderProgram
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSkyboxEntity
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSortCriterion
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSortMethod
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSphereGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSphereMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QSpotLight
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStateSet
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStencilMask
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStencilOp
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStencilOpSeparate
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStencilTest
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QStencilTestSeparate
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTechnique
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTechniqueFilter
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexImageData
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexImageDataPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture1D
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture1DArray
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture2D
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture2DArray
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture2DMultisample
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture2DMultisampleArray
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTexture3D
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureBuffer
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureCubeMap
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureCubeMapArray
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureDataFunctor
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureDataFunctorPtr
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureImage
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureRectangle
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTextureWrapMode
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTorusGeometry
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QTorusMesh
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QViewport
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/QWindow
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/Qt3DRender
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/Qt3DRenderDepends
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/Qt3DRenderVersion
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/TextureDict
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstractattribute.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstractbuffer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstractfunctor.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstractsceneloader.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstractsceneparser.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstracttextureimage.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qabstracttextureprovider.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qalphacoverage.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qalphatest.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qannotation.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qattribute.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qblendequation.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qblendstate.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qboundingvolumedebug.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qboundingvolumespecifier.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qbuffer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qbufferfunctor.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcameraselector.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qclearbuffer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qclipplane.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcolormask.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcuboidgeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcuboidmesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcullface.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcylindergeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qcylindermesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdepthmask.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdepthtest.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdiffusemapmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdiffusespecularmapmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdirectionallight.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdispatchcompute.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qdithering.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qeffect.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qforwardrenderer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qframegraph.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qframegraphnode.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qframegraphselector.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qfrontface.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qfrustumculling.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qgeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qgeometryfunctor.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qgeometryrenderer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qgoochmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qgraphicsapifilter.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qitemmodelbuffer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qlayer.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qlayerfilter.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qlight.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qlighting.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qmesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qnodraw.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qnormaldiffusemapalphamaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qnormaldiffusemapmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qnormaldiffusespecularmapmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qobjectpicker.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qparameter.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qparametermapping.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qpervertexcolormaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qphongalphamaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qphongmaterial.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qpickevent.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qplanegeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qplanemesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qpointlight.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qpointsize.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qpolygonoffset.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrenderaspect.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrenderattachment.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrenderpass.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrenderpassfilter.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrenderstate.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrendertarget.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qrendertargetselector.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qsceneloader.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qsceneparserplugin.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qscissortest.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qshaderdata.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qshaderprogram.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qskyboxentity.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qsortcriterion.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qsortmethod.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qspheregeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qspheremesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qspotlight.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstateset.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstencilmask.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstencilop.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstencilopseparate.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstenciltest.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qstenciltestseparate.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qt3drender_global.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qt3drenderversion.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtechnique.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtechniquefilter.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtexture.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtexturedata.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtextureimage.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtextureproviders.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtorusgeometry.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qtorusmesh.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qviewport.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qwindow.h
+-rw-r--r-- root/root usr/share/qt5/include/Qt3DRender/qwrapmode.h
drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/
-drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/
-drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/adapter1_bluez5_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/adapter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/agent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/androidbroadcastreceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/bluez5_helper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/bluez_data_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/corebluetoothwrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/device1_bluez5_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/device_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/devicediscoverybroadcastreceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/hcimanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/inputstreamthread_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/jni_android_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/localdevicebroadcastreceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/lowenergynotificationhub_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/manager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_agent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_client1_bluez5_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_client_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_manager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_objectpush1_bluez5_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_transfer1_bluez5_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/obex_transfer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/objectmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtcentralmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtchanneldelegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtconnectionmonitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtdeviceinquiry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtdevicepair_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtl2capchannel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtledeviceinquiry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtobexsession_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtrfcommchannel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtsdpinquiry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtservicerecord_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtsocketlistener_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/osxbtutility_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/ppshelpers_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/profile1_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/properties_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothaddress_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothdevicediscoveryagent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothdevicediscoverytimer_osx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothdeviceinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothhostinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothlocaldevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothserver_osx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothservicediscoveryagent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothserviceinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothsocket_osx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothtransferreply_bluez_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothtransferreply_osx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothtransferreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothtransferreply_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qbluetoothtransferrequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qlowenergycontroller_osx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qlowenergycontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qlowenergyserviceprivate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/qprivatelinearbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/serveracceptancethread_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/service_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/servicediscoverybroadcastreceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/servicemap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private/uistrings_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/
+drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/adapter1_bluez5_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/adapter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/agent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/androidbroadcastreceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/bluez5_helper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/bluez_data_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/corebluetoothwrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/device1_bluez5_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/device_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/devicediscoverybroadcastreceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/hcimanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/inputstreamthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/jni_android_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/localdevicebroadcastreceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/lowenergynotificationhub_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/manager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_agent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_client1_bluez5_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_client_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_manager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_objectpush1_bluez5_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_transfer1_bluez5_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/obex_transfer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/objectmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtcentralmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtchanneldelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtconnectionmonitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtdeviceinquiry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtdevicepair_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtl2capchannel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtledeviceinquiry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtnotifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtobexsession_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtrfcommchannel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtsdpinquiry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtservicerecord_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtsocketlistener_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/osxbtutility_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/profile1_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/properties_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothaddress_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothdevicediscoveryagent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothdevicediscoverytimer_osx_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothdeviceinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothhostinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothlocaldevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothserver_osx_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothservicediscoveryagent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothserviceinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothsocket_osx_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothtransferreply_bluez_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothtransferreply_osx_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothtransferreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qbluetoothtransferrequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qlowenergycontroller_osx_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qlowenergycontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qlowenergyserviceprivate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/qprivatelinearbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/serveracceptancethread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/service_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/servicediscoverybroadcastreceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/servicemap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/5.6.0/QtBluetooth/private/uistrings_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/QBluetoothAddress
-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/QBluetoothDeviceDiscoveryAgent
-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/QBluetoothDeviceInfo
@@ -1087,27 +1086,27 @@ drwxr-xr-x root/root usr/share/qt5/include/QtBluetooth/5.5.1/QtBluetooth/private
-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/qlowenergyservice.h
-rw-r--r-- root/root usr/share/qt5/include/QtBluetooth/qtbluetoothversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/
-drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/
-drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qanalyzer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qclucene-config_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qclucene_global_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qdocument_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qhits_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qindexreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qindexwriter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qquery_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qqueryparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qsearchable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qsort_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qterm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qtoken_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qtokenizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.5.1/QtCLucene/private/qtokenstream_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/
+drwxr-xr-x root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qanalyzer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qclucene-config_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qclucene_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qdocument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qhits_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qindexreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qindexwriter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qquery_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qqueryparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qsearchable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qsort_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qterm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qtoken_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qtokenizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/5.6.0/QtCLucene/private/qtokenstream_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/QtCLucene
-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/QtCLuceneDepends
-rw-r--r-- root/root usr/share/qt5/include/QtCLucene/QtCLuceneVersion
@@ -1136,164 +1135,168 @@ drwxr-xr-x root/root usr/share/qt5/include/QtConcurrent/
-rw-r--r-- root/root usr/share/qt5/include/QtConcurrent/qtconcurrentthreadengine.h
-rw-r--r-- root/root usr/share/qt5/include/QtConcurrent/qtconcurrentversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtCore/
-drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/
-drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/cp949codetbl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstractanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstracteventdispatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstractfileengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstractitemmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstractproxymodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstractstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qabstracttransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qanimationgroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qbig5codec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qbytedata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcollator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcore_mac_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcore_unix_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcoreapplication_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcorecmdlineargs_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcoreglobaldata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qcrashhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdatastream_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdataurl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdatetime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdatetimeparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdebug_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qdir_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qelfparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeucjpcodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeuckrcodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventdispatcher_blackberry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventdispatcher_glib_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventdispatcher_unix_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventdispatcher_win_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventdispatcher_winrt_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventloop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qeventtransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfactoryloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfiledevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfileinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfileselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystementry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemmetadata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_fsevents_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_inotify_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_kqueue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_polling_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfilesystemwatcher_win_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfreelist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfsfileengine_iterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfsfileengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfutureinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qfuturewatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qgb18030codec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qharfbuzz_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qhistorystate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qhooks_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qiconvcodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qicucodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qiodevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qipaddress_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qisciicodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qitemselectionmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjiscodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjni_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjnihelpers_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjpunicode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjson_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjsonparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qjsonwriter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlatincodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlibrary_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlocale_data_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlocale_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlocale_tools_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qlockfile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qloggingregistry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmachparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmetaobject_moc_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmetaobjectbuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmetatype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmetatypeswitcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimedatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimeglobpattern_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimemagicrule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimemagicrulematcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimeprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmimetypeparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmutex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qmutexpool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qnoncontiguousbytedevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qnumeric_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qorderedmutexlocker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qparallelanimationgroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qpodlist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qppsattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qppsattributeprivate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qppsobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qppsobjectprivate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qprocess_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qpropertyanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qreadwritelock_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qresource_iterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qresource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qringbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsavefile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qscopedpointer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsequentialanimationgroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsettings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsharedmemory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsignaleventgenerator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsignaltransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsimd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsimplecodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsjiscodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qstatemachine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qstorageinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qstringalgorithms_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qstringiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsystemerror_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsystemlibrary_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qsystemsemaphore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qt_pch.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtemporaryfile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtextcodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtextstream_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qthread_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qthreadpool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtimerinfo_unix_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtimezoneprivate_data_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtimezoneprivate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtldurl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtools_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtranslator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qtsciicodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qunicodetables_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qunicodetools_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qurl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qurltlds_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qutfcodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qvariant_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qvariantanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qversionnumber_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qwindowscodec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qwindowspipereader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qwindowspipewriter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qwinoverlappedionotifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qxmlstream_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/qxmlutils_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/
+drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/cp949codetbl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstractanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstracteventdispatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstractfileengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstractitemmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstractproxymodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstractstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qabstracttransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qanimationgroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qbig5codec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qbytearray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qbytedata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcfsocketnotifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcollator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcore_mac_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcore_unix_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcoreapplication_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcorecmdlineargs_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcoreglobaldata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qcrashhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdatastream_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdataurl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdatetime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdatetimeparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdebug_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qdir_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qelfparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeucjpcodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeuckrcodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_blackberry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_cf_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_glib_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_unix_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_win_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventdispatcher_winrt_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventloop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qeventtransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfactoryloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfiledevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfileinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfileselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystementry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemmetadata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_fsevents_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_inotify_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_kqueue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_polling_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfilesystemwatcher_win_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfinalstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfreelist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfsfileengine_iterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfsfileengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfunctions_fake_env_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfutureinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qfuturewatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qgb18030codec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qharfbuzz_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qhistorystate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qhooks_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qiconvcodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qicucodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qiodevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qipaddress_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qisciicodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qitemselectionmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjiscodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjni_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjnihelpers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjpunicode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjson_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjsonparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qjsonwriter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlatincodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlibrary_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlocale_data_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlocale_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlocale_tools_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qlockfile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qloggingregistry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmachparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmetaobject_moc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmetaobjectbuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmetatype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmetatypeswitcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimedatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimeglobpattern_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimemagicrule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimemagicrulematcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimeprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmimetypeparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmutex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qmutexpool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qnoncontiguousbytedevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qnumeric_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qorderedmutexlocker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qparallelanimationgroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qpodlist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qppsattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qppsattributeprivate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qppsobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qppsobjectprivate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qprocess_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qpropertyanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qreadwritelock_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qresource_iterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qresource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qringbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsavefile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qscopedpointer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsequentialanimationgroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsettings_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsharedmemory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsignaleventgenerator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsignaltransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsimd_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsimplecodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsjiscodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qstatemachine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qstorageinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qstringalgorithms_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qstringiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsystemerror_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsystemlibrary_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qsystemsemaphore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qt_pch.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtemporaryfile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtextcodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtextstream_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qthreadpool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtimerinfo_unix_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtimezoneprivate_data_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtimezoneprivate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtldurl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtools_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtranslator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qtsciicodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qunicodetables_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qunicodetools_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qurl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qurltlds_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qutfcodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qvariant_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qvariantanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qwindowscodec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qwindowspipereader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qwindowspipewriter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qwinoverlappedionotifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qxmlstream_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/5.6.0/QtCore/private/qxmlutils_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QAbstractAnimation
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QAbstractEventDispatcher
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QAbstractItemModel
@@ -1382,6 +1385,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHash
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHashData
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHashDummyValue
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHashFunctions
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHashIterator
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHashNode
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QHistoryState
@@ -1419,6 +1423,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QLocale
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QLockFile
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QLoggingCategory
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMacAutoReleasePool
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMap
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMapData
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMapDataBase
@@ -1436,9 +1441,6 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaObject
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaProperty
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaType
--rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaTypeId
--rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaTypeId2
--rw-r--r-- root/root usr/share/qt5/include/QtCore/QMetaTypeIdQObject
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMimeData
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMimeDatabase
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QMimeType
@@ -1568,6 +1570,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QVariantMap
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QVector
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QVectorIterator
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/QVersionNumber
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QWaitCondition
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QWeakPointer
-rw-r--r-- root/root usr/share/qt5/include/QtCore/QWinEventNotifier
@@ -1623,7 +1626,6 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_cxx11.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_gcc.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_ia64.h
--rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_mips.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_msvc.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_unix.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qatomic_x86.h
@@ -1684,6 +1686,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qglobalstatic.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qhash.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/qhashfunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qhistorystate.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qidentityproxymodel.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qiodevice.h
@@ -1792,31 +1795,33 @@ drwxr-xr-x root/root usr/share/qt5/include/QtCore/5.5.1/QtCore/private/
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qvariantanimation.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qvarlengtharray.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qvector.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/qversionnumber.h
+-rw-r--r-- root/root usr/share/qt5/include/QtCore/qversiontagging.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qwaitcondition.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qwineventnotifier.h
-rw-r--r-- root/root usr/share/qt5/include/QtCore/qxmlstream.h
drwxr-xr-x root/root usr/share/qt5/include/QtDBus/
-drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/
-drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/dbus_minimal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbus_symbols_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusabstractadaptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusabstractinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusargument_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusconnectionmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbuscontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusintegrator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusintrospection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusmessage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusmetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusmetatype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbuspendingcall_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusthreaddebug_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusutil_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/qdbusxmlparser_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/
+drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/dbus_minimal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbus_symbols_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusabstractadaptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusabstractinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusargument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusconnection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusconnectionmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbuscontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusintegrator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusintrospection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusmessage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusmetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusmetatype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbuspendingcall_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusthreaddebug_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusutil_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDBus/5.6.0/QtDBus/private/qdbusxmlparser_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/QDBusAbstractAdaptor
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/QDBusAbstractInterface
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/QDBusAbstractInterfaceBase
@@ -1863,315 +1868,96 @@ drwxr-xr-x root/root usr/share/qt5/include/QtDBus/5.5.1/QtDBus/private/
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/qdbusunixfiledescriptor.h
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/qdbusvirtualobject.h
-rw-r--r-- root/root usr/share/qt5/include/QtDBus/qtdbusversion.h
-drwxr-xr-x root/root usr/share/qt5/include/QtDeclarative/
-drwxr-xr-x root/root usr/share/qt5/include/QtDeclarative/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/
-drwxr-xr-x root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qbitfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanchors_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanchors_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanimatedimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanimatedimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeanimation_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeapplication_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativebehavior_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativebind_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativebinding_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativebinding_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeborderimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeborderimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeboundsignal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecleanup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecompiledbindings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecompiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecomponent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeconnections_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecontextscriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecustomparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativecustomparser_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugclient_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebuggerstatus_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebughelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugserverconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugservice_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedebugtrace_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedirparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedom_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativedom_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeenginedebug_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeenginedebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeevents_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativefastproperties_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeflickable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeflickable_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeflipable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativefocuspanel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativefocusscope_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativefontloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeglobalscriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativegraphicswidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativegridview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeguard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimagebase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimagebase_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimplicitsizeitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimplicitsizeitem_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeimport_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeinclude_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeinspectorinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeinspectorservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeinstruction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeintegercache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeitemchangelistener_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeitemsmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsast_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsastfwd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsastvisitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsgrammar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejslexer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsmemorypool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsnodepool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativejsparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelayoutitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistaccessor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistmodel_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistmodelworkeragent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistscriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativelistview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeloader_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativemetatype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativemousearea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativemousearea_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativenotifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativenullablevalue_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeobjectscriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeopenmetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepackage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepainteditem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepainteditem_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepath_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepathview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepathview_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepincharea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepincharea_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepixmapcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepositioners_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepositioners_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeproperty_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepropertycache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativepropertychanges_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeproxymetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerectangle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerectangle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerefcount_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerepeater_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerepeater_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativerewrite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativescalegrid_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativescriptparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativesmoothedanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativesmoothedanimation_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativespringanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativesqldatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestate_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestategroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestateoperations_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestringconverters_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativestyledtext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativesystempalette_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetext_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetextedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetextedit_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetextinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetextinput_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetextlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetimeline_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetimer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetransitionmanager_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetranslate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetypeloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetypenamecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetypenamescriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativetypenotavailable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeutilmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativevaluetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativevaluetypescriptclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativevisualitemmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativevme_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativevmemetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativewatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativeworkerscript_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativexmlhttprequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qdeclarativexmllistmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qjsdebuggeragent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qjsdebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qlistmodelinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qpacketprotocol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qpodvector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/qtdeclarativeglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/5.5.1/QtDeclarative/private/textwriter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeAttachedPropertiesFunc
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeComponent
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeContext
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeDebuggingEnabler
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeEngine
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeError
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeExpression
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeExtensionInterface
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeExtensionPlugin
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeImageProvider
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeInfo
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeItem
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeListProperty
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeListReference
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeNetworkAccessManagerFactory
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeParserStatus
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeProperties
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeProperty
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativePropertyMap
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativePropertyValueInterceptor
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativePropertyValueSource
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeScriptString
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeTypeInfo
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QDeclarativeView
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QtDeclarative
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QtDeclarativeDepends
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/QtDeclarativeVersion
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarative.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativecomponent.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativecontext.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativedebug.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeengine.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeerror.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeexpression.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeextensioninterface.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeextensionplugin.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeimageprovider.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeinfo.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeitem.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativelist.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativenetworkaccessmanagerfactory.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeparserstatus.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeprivate.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeproperty.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativepropertymap.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativepropertyvalueinterceptor.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativepropertyvaluesource.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativescriptstring.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qdeclarativeview.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qtdeclarativeglobal.h
--rw-r--r-- root/root usr/share/qt5/include/QtDeclarative/qtdeclarativeversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/abstractdialoggui_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/abstractintrospection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/actioneditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/actionprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/actionrepository_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/codedialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/connectionedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/csshighlighter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/deviceprofile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/dialoggui_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/extensionfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/formbuilderextra_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/formlayoutmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/formwindowbase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/grid_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/gridpanel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/htmlhighlighter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/iconloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/iconselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/invisible_widget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/layout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/layoutinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/lib_pch.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/metadatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/morphmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/newactiondialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/newformwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/orderdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/plaintexteditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/plugindialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/pluginmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/previewconfigurationwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/previewmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/promotionmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/promotiontaskmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/properties_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/propertylineedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_command2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_command_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_dnditem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_dockwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_formbuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_formeditorcommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_formwindowcommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_formwindowmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_introspection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_membersheet_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_menu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_menubar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_objectinspector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_promotion_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_promotiondialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_propertycommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_propertyeditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_propertysheet_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_qsettings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_stackedbox_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_tabwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_taskmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_toolbar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_toolbox_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_utils_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_widget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_widgetbox_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qdesigner_widgetitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qlayout_widget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qsimpleresource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qtresourceeditordialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qtresourcemodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/qtresourceview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/rcc_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/resourcebuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/richtexteditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/shared_enums_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/shared_global_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/shared_settings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/sheet_delegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/signalslotdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/spacer_widget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/stylesheeteditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/textbuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/textpropertyeditor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/ui4_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/widgetdatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/widgetfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/zoomwidget_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/
+drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/abstractdialoggui_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/abstractintrospection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/actioneditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/actionprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/actionrepository_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/codedialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/connectionedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/csshighlighter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/deviceprofile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/dialoggui_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/extensionfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/formbuilderextra_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/formlayoutmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/formwindowbase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/grid_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/gridpanel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/htmlhighlighter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/iconloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/iconselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/invisible_widget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/layout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/layoutinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/lib_pch.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/metadatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/morphmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/newactiondialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/newformwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/orderdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/plaintexteditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/plugindialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/pluginmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/previewconfigurationwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/previewmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/promotionmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/promotiontaskmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/properties_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/propertylineedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_command2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_command_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_dnditem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_dockwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_formbuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_formeditorcommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_formwindowcommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_formwindowmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_introspection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_membersheet_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_menu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_menubar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_objectinspector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_promotion_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_promotiondialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_propertycommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_propertyeditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_propertysheet_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_qsettings_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_stackedbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_tabwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_taskmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_toolbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_toolbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_utils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_widget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_widgetbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qdesigner_widgetitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qlayout_widget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qsimpleresource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qtresourceeditordialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qtresourcemodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/qtresourceview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/rcc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/resourcebuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/richtexteditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/shared_enums_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/shared_global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/shared_settings_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/sheet_delegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/signalslotdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/spacer_widget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/stylesheeteditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/textbuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/textpropertyeditor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/ui4_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/widgetdatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/widgetfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/5.6.0/QtDesigner/private/zoomwidget_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/QAbstractExtensionFactory
-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/QAbstractExtensionManager
-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/QAbstractFormBuilder
@@ -2258,184 +2044,186 @@ drwxr-xr-x root/root usr/share/qt5/include/QtDesigner/5.5.1/QtDesigner/private/
-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/taskmenu.h
-rw-r--r-- root/root usr/share/qt5/include/QtDesigner/uilib_global.h
drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.5.1/QtDesignerComponents/
-drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.5.1/QtDesignerComponents/private/
--rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/5.5.1/QtDesignerComponents/private/lib_pch.h
+drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.6.0/QtDesignerComponents/
+drwxr-xr-x root/root usr/share/qt5/include/QtDesignerComponents/5.6.0/QtDesignerComponents/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/5.6.0/QtDesignerComponents/private/lib_pch.h
-rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/QtDesignerComponents
-rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/QtDesignerComponentsDepends
-rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/QtDesignerComponentsVersion
-rw-r--r-- root/root usr/share/qt5/include/QtDesignerComponents/qtdesignercomponentsversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtGui/
-drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/
-drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qabstractlayoutstyleinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qabstracttextdocumentlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qaccessiblecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qbezier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qblendfunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qblittable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qbmphandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qcolor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qcosmeticstroker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qcssparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qcssutil_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qcursor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdatabuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdistancefield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdnd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdrawhelper_mips_dsp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdrawhelper_neon_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdrawhelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdrawhelper_x86_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qdrawingprimitive_sse2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qemulationpaintengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qevent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfixed_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfont_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfontengine_ft_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfontengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfontengine_qpf2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfontengineglyphcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfontsubset_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qfragmentmap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qgifhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qglyphrun_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qgrayraster_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qgridlayoutengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qguiapplication_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qharfbuzzng_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qhexstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qicon_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qiconloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qimagepixmapcleanuphooks_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qimagescale_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qinputdevicemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qinputdevicemanager_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qinputmethod_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qjpeghandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qkeymapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qkeysequence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qlayoutpolicy_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qmath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qmemrotate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qnativeimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengl2pexvertexarray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglcustomshaderstage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglengineshadermanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglengineshadersource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglextensions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglframebufferobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglgradientcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglpaintdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglpaintengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglqueryhelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglshadercache_meego_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglshadercache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengltexture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengltextureblitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengltexturecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengltextureglyphcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopengltexturehelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglversionfunctionsfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qopenglvertexarrayobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qoutlinemapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpagedpaintdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintdevicewindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintengine_blitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintengine_pic_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintengine_raster_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpaintengineex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpainter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpainterpath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpathclipper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpathsimplifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpdf_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpicture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpixmap_blitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpixmap_raster_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpixmapcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpnghandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qpolygonclipper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qppmhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qrasterdefs_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qrasterizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qrawfont_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qrbtree_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qscreen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qsessionmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qshapedpixmapdndwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qshortcutmap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qsimpledrag_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qstandarditemmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qstatictext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qstroker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qt_gui_pch.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qt_mips_asm_dsp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextcursor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextdocument_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextdocumentfragment_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextdocumentlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextformat_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtexthtmlparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextimagehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextodfwriter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtexttable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtextureglyphcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtouchdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtriangulatingstroker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qtriangulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qvectorpath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qxbmhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qxpmhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qzipreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/private/qzipwriter_p.h
-drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformaccessibility.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformbackingstore.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformclipboard.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformcursor.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformdialoghelper.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformdrag.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformfontdatabase.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformgraphicsbuffer.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformgraphicsbufferhelper.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatforminputcontext.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatforminputcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatforminputcontextfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatforminputcontextplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformintegration.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformintegrationfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformintegrationplugin.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformmenu.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformnativeinterface.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformoffscreensurface.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformopenglcontext.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformpixmap.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformscreen.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformscreen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformservices.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformsessionmanager.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformsharedgraphicscache.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformsurface.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformsystemtrayicon.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformtheme.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformtheme_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformthemefactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformthemeplugin.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformwindow.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qplatformwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qwindowsysteminterface.h
--rw-r--r-- root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/qwindowsysteminterface_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/
+drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qabstractlayoutstyleinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qabstracttextdocumentlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qaccessiblecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qbezier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qblendfunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qblittable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qbmphandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qcolor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qcosmeticstroker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qcssparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qcssutil_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qcursor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdatabuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdistancefield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdnd_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdrawhelper_mips_dsp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdrawhelper_neon_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdrawhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdrawhelper_x86_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qdrawingprimitive_sse2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qemulationpaintengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qevent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfixed_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfont_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfontengine_ft_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfontengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfontengine_qpf2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfontengineglyphcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfontsubset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qfragmentmap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qgifhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qglyphrun_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qgrayraster_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qgridlayoutengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qguiapplication_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qharfbuzzng_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qhexstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qhighdpiscaling_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qicon_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qiconloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qimagepixmapcleanuphooks_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qimagescale_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qinputdevicemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qinputdevicemanager_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qinputmethod_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qjpeghandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qkeymapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qkeysequence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qlayoutpolicy_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qmath_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qmemrotate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qnativeimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengl2pexvertexarray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglcustomshaderstage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglengineshadermanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglengineshadersource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglextensions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglframebufferobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglgradientcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglpaintdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglpaintengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglqueryhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglshadercache_meego_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglshadercache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengltexture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengltextureblitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengltexturecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengltextureglyphcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopengltexturehelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglversionfunctionsfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qopenglvertexarrayobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qoutlinemapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpagedpaintdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintdevicewindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintengine_blitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintengine_pic_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintengine_raster_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpaintengineex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpainter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpainterpath_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpathclipper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpathsimplifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpdf_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpicture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpixmap_blitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpixmap_raster_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpixmapcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpnghandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qpolygonclipper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qppmhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qrasterdefs_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qrasterizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qrawfont_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qrbtree_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qrgba64_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qscreen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qsessionmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qshapedpixmapdndwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qshortcutmap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qsimpledrag_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qstandarditemmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qstatictext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qstroker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qt_gui_pch.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qt_mips_asm_dsp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextcursor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextdocument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextdocumentfragment_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextdocumentlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextformat_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtexthtmlparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextimagehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextodfwriter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtexttable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtextureglyphcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtouchdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtriangulatingstroker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qtriangulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qvectorpath_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qxbmhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qxpmhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qzipreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/private/qzipwriter_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformaccessibility.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformbackingstore.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformclipboard.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformcursor.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformdialoghelper.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformdrag.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformfontdatabase.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformgraphicsbuffer.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformgraphicsbufferhelper.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatforminputcontext.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatforminputcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatforminputcontextfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatforminputcontextplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformintegration.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformintegrationfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformintegrationplugin.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformmenu.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformnativeinterface.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformoffscreensurface.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformopenglcontext.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformpixmap.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformscreen.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformscreen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformservices.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformsessionmanager.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformsharedgraphicscache.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformsurface.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformsystemtrayicon.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformtheme.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformtheme_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformthemefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformthemeplugin.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformwindow.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qplatformwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qwindowsysteminterface.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/5.6.0/QtGui/qpa/qwindowsysteminterface_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QAbstractTextDocumentLayout
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QAbstractUndoItem
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QAccessible
@@ -2540,6 +2328,8 @@ drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLContextGroup
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLDebugLogger
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLDebugMessage
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLExtraFunctions
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLExtraFunctionsPrivate
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLFramebufferObject
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLFramebufferObjectFormat
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QOpenGLFunctions
@@ -2614,6 +2404,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QRegularExpressionValidator
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QResizeEvent
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QRgb
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/QRgba64
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QScreen
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QScreenOrientationChangeEvent
-rw-r--r-- root/root usr/share/qt5/include/QtGui/QScrollEvent
@@ -2721,6 +2512,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopengldebug.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopengles2ext.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopenglext.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopenglextrafunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopenglframebufferobject.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopenglfunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qopenglfunctions_1_0.h
@@ -2780,6 +2572,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qrawfont.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qregion.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qrgb.h
+-rw-r--r-- root/root usr/share/qt5/include/QtGui/qrgba64.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qscreen.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qsessionmanager.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qstandarditemmodel.h
@@ -2809,22 +2602,22 @@ drwxr-xr-x root/root usr/share/qt5/include/QtGui/5.5.1/QtGui/qpa/
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qwindowdefs.h
-rw-r--r-- root/root usr/share/qt5/include/QtGui/qwindowdefs_win.h
drwxr-xr-x root/root usr/share/qt5/include/QtHelp/
-drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/
-drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qclucenefieldnames_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpcollectionhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpdatainterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpdbreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpgenerator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpprojectdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindex_default_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindexreader_clucene_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindexreader_default_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindexreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindexwriter_clucene_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/qhelpsearchindexwriter_default_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/
+drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qclucenefieldnames_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpcollectionhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpdatainterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpdbreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpgenerator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpprojectdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindex_default_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindexreader_clucene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindexreader_default_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindexreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindexwriter_clucene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtHelp/5.6.0/QtHelp/private/qhelpsearchindexwriter_default_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/QHelpContentItem
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/QHelpContentModel
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/QHelpContentWidget
@@ -2849,66 +2642,140 @@ drwxr-xr-x root/root usr/share/qt5/include/QtHelp/5.5.1/QtHelp/private/
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/qhelpsearchquerywidget.h
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/qhelpsearchresultwidget.h
-rw-r--r-- root/root usr/share/qt5/include/QtHelp/qthelpversion.h
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsControls/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsControls/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/qquickpaddedrectangle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/qquickproxytheme_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/qquickstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/qquickstyleselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/5.6.0/QtLabsControls/private/qquickstyleselector_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/QtLabsControls
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/QtLabsControlsDepends
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/QtLabsControlsVersion
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsControls/qtlabscontrolsversion.h
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsTemplates/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/
+drwxr-xr-x root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickabstractbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickabstractbutton_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickapplicationwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickbusyindicator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickbuttongroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcheckbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcombobox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcontainer_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickcontrol_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickdial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickdrawer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickframe_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickframe_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickgroupbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickitemdelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicklabel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicklabel_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickmenu_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickmenuitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickoverlay_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpageindicator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpane_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpane_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpopup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpopup_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickpressandholdhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickprogressbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickradiobutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickrangeslider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickscrollbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickscrollindicator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickslider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickspinbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickstackview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickstackview_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickswipeview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquickswitch_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktabbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktabbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktextarea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktextarea_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktextfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktextfield_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktoolbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktoolbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qquicktumbler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/5.6.0/QtLabsTemplates/private/qtlabstemplatesglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/QtLabsTemplates
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/QtLabsTemplatesDepends
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/QtLabsTemplatesVersion
+-rw-r--r-- root/root usr/share/qt5/include/QtLabsTemplates/qtlabstemplatesversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtLocation/
-drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/
-drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qcache3q_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocameracapabilities_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocameradata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocameratiles_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocodereply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocodingmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeocodingmanagerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomaneuver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomap_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomapcontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomappingmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomappingmanager_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomappingmanagerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomappingmanagerengine_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomapscene_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomaptype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeomaptype_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoroute_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoroutereply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeorouterequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoroutesegment_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoroutingmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoroutingmanagerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeoserviceprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmap_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmappingmanagerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmappingmanagerengine_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmapreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotiledmapreply_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilefetcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilefetcher_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilerequestmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilespec_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qgeotilespec_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplace_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacecategory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacecontactdetail_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacecontent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacecontentrequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceeditorial_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceicon_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacemanagerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceproposedsearchresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceratings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacereply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacereview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacesearchresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplacesupplier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/qplaceuser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/unsupportedreplies_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/
+drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qabstractgeotilecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qcache3q_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocameracapabilities_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocameradata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocameratiles_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocodereply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocodingmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeocodingmanagerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeofiletilecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomaneuver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomap_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomapcontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomappingmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomappingmanager_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomappingmanagerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomappingmanagerengine_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomapscene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomaptype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeomaptype_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoroute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoroutereply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeorouterequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoroutesegment_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoroutingmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoroutingmanagerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeoserviceprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmap_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmappingmanagerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmappingmanagerengine_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmapreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotiledmapreply_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotilefetcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotilefetcher_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotilerequestmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotilespec_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qgeotilespec_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplace_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacecategory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacecontactdetail_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacecontent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacecontentrequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceeditorial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceicon_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacemanagerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceproposedsearchresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceratings_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacereply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacereview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacesearchresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplacesupplier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/qplaceuser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtLocation/5.6.0/QtLocation/private/unsupportedreplies_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtLocation/QGeoCodeReply
-rw-r--r-- root/root usr/share/qt5/include/QtLocation/QGeoCodingManager
-rw-r--r-- root/root usr/share/qt5/include/QtLocation/QGeoCodingManagerEngine
@@ -2996,68 +2863,71 @@ drwxr-xr-x root/root usr/share/qt5/include/QtLocation/5.5.1/QtLocation/private/
-rw-r--r-- root/root usr/share/qt5/include/QtLocation/qplaceuser.h
-rw-r--r-- root/root usr/share/qt5/include/QtLocation/qtlocationversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/gstvideoconnector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/playlistfileparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qabstractvideobuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qaudiobuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qaudiodevicefactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qaudiohelpers_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qcamera_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qdeclarativevideooutput_backend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qdeclarativevideooutput_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstappsrc_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstbufferpoolinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstcodecsinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreameraudioinputselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreameraudioprobecontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamerbufferprobe_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamerbushelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamergltexturerenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamermessage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamermirtexturerenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideoinputdevicecontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideooverlay_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideoprobecontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideorenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideorendererinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideowidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstreamervideowindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstutils_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstvideobuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstvideorendererplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qgstvideorenderersink_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qimagevideobuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediacontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmedianetworkplaylistprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaopenglhelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylistcontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylistioplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylistnavigator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylistprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaplaylistsourcecontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediapluginloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediarecorder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaresourcepolicy_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaresourcepolicyplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaresourceset_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediaserviceprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmediastoragelocation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qmemoryvideobuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qsamplecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qsgvideonode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qsoundeffect_pulse_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qsoundeffect_qaudio_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qtmultimediaquickdefs_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qvideooutputorientationhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qvideosurfacegstsink_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qvideosurfaceoutput_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/private/qwavedecoder_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/gstvideoconnector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/playlistfileparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qabstractvideobuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qaudiobuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qaudiodevicefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qaudiohelpers_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qcamera_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qdeclarativevideooutput_backend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qdeclarativevideooutput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstappsrc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstbufferpoolinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstcodecsinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreameraudioinputselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreameraudioprobecontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamerbufferprobe_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamerbushelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamergltexturerenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamermessage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamermirtexturerenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideoinputdevicecontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideooverlay_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideoprobecontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideorenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideorendererinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideowidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstreamervideowindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstutils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstvideobuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstvideorendererplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qgstvideorenderersink_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qimagevideobuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediacontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmedianetworkplaylistprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaopenglhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylistcontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylistioplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylistnavigator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylistprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaplaylistsourcecontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediapluginloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediarecorder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaresourcepolicy_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaresourcepolicyplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaresourceset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediaserviceprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmediastoragelocation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmemoryvideobuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qmultimediautils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qsamplecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qsgvideonode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qsoundeffect_pulse_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qsoundeffect_qaudio_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qtmultimediaquickdefs_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qvideoframe_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qvideoframeconversionhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qvideooutputorientationhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qvideosurfacegstsink_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qvideosurfaceoutput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/5.6.0/QtMultimedia/private/qwavedecoder_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAbstractAudioDeviceInfo
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAbstractAudioInput
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAbstractAudioOutput
@@ -3079,6 +2949,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/priva
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioOutputSelectorControl
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioProbe
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioRecorder
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioRoleControl
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioSystemFactoryInterface
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QAudioSystemPlugin
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/QCamera
@@ -3173,6 +3044,7 @@ drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/priva
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudiooutputselectorcontrol.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudioprobe.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudiorecorder.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudiorolecontrol.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudiosystem.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qaudiosystemplugin.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qcamera.h
@@ -3238,31 +3110,25 @@ drwxr-xr-x root/root usr/share/qt5/include/QtMultimedia/5.5.1/QtMultimedia/priva
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qvideosurfaceformat.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimedia/qvideowindowcontrol.h
drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.5.1/QtMultimediaQuick_p/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.5.1/QtMultimediaQuick_p/private/
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.5.1/QtMultimediaQuick_p/private/qdeclarativevideooutput_render_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.5.1/QtMultimediaQuick_p/private/qdeclarativevideooutput_window_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNodeFactory_RGB
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNodeFactory_Texture
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNodeFactory_YUV
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNode_RGB
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNode_Texture
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QSGVideoNode_YUV
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/qdeclarativevideooutput_render_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/qdeclarativevideooutput_window_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/qsgvideonode_rgb_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/qsgvideonode_texture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/5.6.0/QtMultimediaQuick_p/private/qsgvideonode_yuv_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QtMultimediaQuick_p
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QtMultimediaQuick_pDepends
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/QtMultimediaQuick_pVersion
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/qsgvideonode_rgb.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/qsgvideonode_texture.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/qsgvideonode_yuv.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaQuick_p/qtmultimediaquick_pversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimediaWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimediaWidgets/private/
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimediaWidgets/private/qeglimagetexturesurface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimediaWidgets/private/qpaintervideosurface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimediaWidgets/private/qvideowidget_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/QtMultimediaWidgets/
+drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/QtMultimediaWidgets/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/QtMultimediaWidgets/private/qeglimagetexturesurface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/QtMultimediaWidgets/private/qpaintervideosurface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/5.6.0/QtMultimediaWidgets/private/qvideowidget_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/QCameraViewfinder
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/QGraphicsVideoItem
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/QVideoWidget
@@ -3277,78 +3143,77 @@ drwxr-xr-x root/root usr/share/qt5/include/QtMultimediaWidgets/5.5.1/QtMultimedi
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/qvideowidget.h
-rw-r--r-- root/root usr/share/qt5/include/QtMultimediaWidgets/qvideowidgetcontrol.h
drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/
-drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/
-drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qabstractnetworkcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qabstractprotocolhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qabstractsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qabstractsocketengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qasn1element_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qauthenticator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qbearerengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qbearerplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qdnslookup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qftp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhostaddress_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhostinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpmultipart_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpnetworkconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpnetworkconnectionchannel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpnetworkheader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpnetworkreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpnetworkrequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpprotocolhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpsocketengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qhttpthreaddelegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qlocalserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qlocalsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnativesocketengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnativesocketengine_winrt_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnet_unix_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessauthenticationmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessbackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccesscache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccesscachebackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessdebugpipebackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessfilebackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessftpbackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkaccessmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkconfigmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkconfiguration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkcookie_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkcookiejar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkdiskcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkinterface_win_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkproxy_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreply_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreplydataimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreplyfileimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreplyhttpimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreplyimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkreplynsurlconnectionimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworkrequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qnetworksession_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsharednetworksession_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsocks5socketengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qspdyprotocolhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qssl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslcertificate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslcertificateextension_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslcipher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslconfiguration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslcontext_openssl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslkey_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslsocket_mac_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslsocket_openssl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslsocket_openssl_symbols_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qsslsocket_winrt_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qtcpserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qtcpsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/qurlinfo_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/
+drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qabstractnetworkcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qabstractprotocolhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qabstractsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qabstractsocketengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qasn1element_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qauthenticator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qbearerengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qbearerplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qdnslookup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qftp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhostaddress_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhostinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpmultipart_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpnetworkconnection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpnetworkconnectionchannel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpnetworkheader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpnetworkreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpnetworkrequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpprotocolhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpsocketengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qhttpthreaddelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qlocalserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qlocalsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnativesocketengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnativesocketengine_winrt_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnet_unix_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessauthenticationmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessbackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccesscache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccesscachebackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessdebugpipebackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessfilebackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessftpbackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkaccessmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkconfigmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkconfiguration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkcookie_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkcookiejar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkdiskcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkproxy_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreply_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreplydataimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreplyfileimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreplyhttpimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreplyimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkreplynsurlconnectionimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworkrequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qnetworksession_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsharednetworksession_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsocks5socketengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qspdyprotocolhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qssl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslcertificate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslcertificateextension_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslcipher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslconfiguration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslcontext_openssl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslkey_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslsocket_mac_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslsocket_openssl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslsocket_openssl_symbols_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qsslsocket_winrt_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qtcpserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qtcpsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/5.6.0/QtNetwork/private/qurlinfo_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/QAbstractNetworkCache
-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/QAbstractSocket
-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/QAuthenticator
@@ -3433,52 +3298,49 @@ drwxr-xr-x root/root usr/share/qt5/include/QtNetwork/5.5.1/QtNetwork/private/
-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/qtnetworkversion.h
-rw-r--r-- root/root usr/share/qt5/include/QtNetwork/qudpsocket.h
drwxr-xr-x root/root usr/share/qt5/include/QtNfc/
-drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/
-drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/adapter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/agent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/dbusobjectmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/dbusproperties_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/manager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/neard_helper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpserver_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpserver_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpserver_simulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpsocket_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpsocket_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qllcpsocket_simulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qndefnfcsmartposterrecord_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qndefrecord_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanager_emulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanager_neard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanager_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanager_simulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanagerimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldmanagervirtualbase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharemanager_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharemanagerimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharetarget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharetarget_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldsharetargetimpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtagtype1_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtagtype2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtagtype3_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtagtype4_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtarget_emulator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtarget_neard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtarget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnearfieldtarget_qnx_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnxnfceventfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnxnfcmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qnxnfcsharemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/qtlv_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/tag_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/targetemulator_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/
+drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/adapter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/agent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/androidjninfc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/androidmainnewintentlistener_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/dbusobjectmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/dbusproperties_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/manager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/neard_helper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpserver_android_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpserver_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpserver_simulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpsocket_android_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpsocket_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qllcpsocket_simulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qndefnfcsmartposterrecord_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qndefrecord_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanager_android_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanager_emulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanager_neard_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanager_simulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanagerimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldmanagervirtualbase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldsharemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldsharemanagerimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldsharetarget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldsharetargetimpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtagtype1_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtagtype2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtagtype3_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtagtype4_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtarget_android_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtarget_emulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtarget_neard_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qnearfieldtarget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/qtlv_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/tag_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtNfc/5.6.0/QtNfc/private/targetemulator_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtNfc/QNdefFilter
-rw-r--r-- root/root usr/share/qt5/include/QtNfc/QNdefMessage
-rw-r--r-- root/root usr/share/qt5/include/QtNfc/QNdefNfcIconRecord
@@ -3508,23 +3370,23 @@ drwxr-xr-x root/root usr/share/qt5/include/QtNfc/5.5.1/QtNfc/private/
-rw-r--r-- root/root usr/share/qt5/include/QtNfc/qqmlndefrecord.h
-rw-r--r-- root/root usr/share/qt5/include/QtNfc/qtnfcversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/
-drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/
-drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qgl2pexvertexarray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qgl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglcustomshaderstage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglengineshadermanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglengineshadersource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglframebufferobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglgradientcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglpaintdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglpixelbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglshadercache_meego_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qglshadercache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qgraphicsshadereffect_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qpaintengineex_opengl2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.5.1/QtOpenGL/private/qtextureglyphcache_gl_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/
+drwxr-xr-x root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qgl2pexvertexarray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qgl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglcustomshaderstage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglengineshadermanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglengineshadersource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglframebufferobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglgradientcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglpaintdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglpixelbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglshadercache_meego_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qglshadercache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qgraphicsshadereffect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qpaintengineex_opengl2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/5.6.0/QtOpenGL/private/qtextureglyphcache_gl_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/QGL
-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/QGLBuffer
-rw-r--r-- root/root usr/share/qt5/include/QtOpenGL/QGLColormap
@@ -3559,113 +3421,117 @@ drwxr-xr-x root/root usr/share/qt5/include/QtOpenGLExtensions/
-rw-r--r-- root/root usr/share/qt5/include/QtOpenGLExtensions/qtopenglextensionsversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtPlatformHeaders/
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QCocoaNativeContext
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QCocoaWindowFunctions
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QEGLNativeContext
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QEglFSFunctions
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QGLXNativeContext
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QPlatformHeaderHelper
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QWGLNativeContext
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QWindowsWindowFunctions
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QXcbIntegrationFunctions
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QXcbWindowFunctions
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QtPlatformHeaders
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QtPlatformHeadersDepends
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/QtPlatformHeadersVersion
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qcocoanativecontext.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qcocoawindowfunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qeglfsfunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qeglnativecontext.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qglxnativecontext.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qplatformheaderhelper.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qtplatformheadersversion.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qwglnativecontext.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qwindowswindowfunctions.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qxcbintegrationfunctions.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformHeaders/qxcbwindowfunctions.h
drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/
-drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/
-drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/application_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/atspiadaptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/bridge_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/cache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/cglconvenience_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/constant_mappings_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/dbusconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qaccessiblebridgeutils_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qbasicfontdatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qcfsocketnotifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qcoretextfontdatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbusmenuadaptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbusmenuconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbusmenutypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbusplatformmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbustrayicon_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdbustraytypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdevicediscovery_dummy_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdevicediscovery_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdevicediscovery_static_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qdevicediscovery_udev_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglconvenience_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglpbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglplatformcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglplatformcursor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglplatformintegration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglplatformscreen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeglplatformwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevkeyboard_defaultmap_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevkeyboardhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevkeyboardmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevmousehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevmousemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevtablet_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevtouchhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qevdevtouchmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeventdispatcher_cf_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qeventdispatcher_glib_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfbbackingstore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfbcursor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfbscreen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfbvthandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfbwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfontconfigdatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfontengine_coretext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qfontenginemultifontconfig_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qgenericunixeventdispatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qgenericunixfontdatabase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qgenericunixservices_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qgenericunixthemes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qglxconvenience_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qlibinputhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qlibinputkeyboard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qlibinputpointer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qlibinputtouch_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qmacmime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qopenglcompositor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qopenglcompositorbackingstore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qstatusnotifieritemadaptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qtslib_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qunixeventdispatcher_qpa_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qxdgnotificationproxy_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/qxlibeglintegration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.5.1/QtPlatformSupport/private/struct_marshallers_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/
+drwxr-xr-x root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/application_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/atspiadaptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/bridge_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/cache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/cglconvenience_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/constant_mappings_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/dbusconnection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qaccessiblebridgeutils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qbasicfontdatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qcoretextfontdatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbusmenuadaptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbusmenuconnection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbusmenutypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbusplatformmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbustrayicon_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdbustraytypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdevicediscovery_dummy_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdevicediscovery_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdevicediscovery_static_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qdevicediscovery_udev_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qeglconvenience_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qeglpbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qeglplatformcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qeglstreamconvenience_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevkeyboard_defaultmap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevkeyboardhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevkeyboardmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevmousehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevmousemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevtablet_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevtouchhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qevdevtouchmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qeventdispatcher_glib_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfbbackingstore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfbcursor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfbscreen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfbvthandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfbwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfontconfigdatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfontengine_coretext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qfontenginemultifontconfig_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qgenericunixeventdispatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qgenericunixfontdatabase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qgenericunixservices_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qgenericunixthemes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qglxconvenience_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qlibinputhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qlibinputkeyboard_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qlibinputpointer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qlibinputtouch_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qmacmime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qopenglcompositor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qopenglcompositorbackingstore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qstatusnotifieritemadaptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qtslib_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qunixeventdispatcher_qpa_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qwindowsguieventdispatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qxdgnotificationproxy_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/qxlibeglintegration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/5.6.0/QtPlatformSupport/private/struct_marshallers_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/QtPlatformSupport
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/QtPlatformSupportDepends
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/QtPlatformSupportVersion
-rw-r--r-- root/root usr/share/qt5/include/QtPlatformSupport/qtplatformsupportversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/
-drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/
-drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qdeclarativegeoaddress_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qdeclarativegeolocation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qdoublevector2d_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qdoublevector3d_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeoaddress_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeocircle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeocoordinate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeolocation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeopositioninfosource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeoprojection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeorectangle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qgeoshape_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qlocationutils_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/private/qnmeapositioninfosource_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/
+drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qdeclarativegeoaddress_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qdeclarativegeolocation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qdoublevector2d_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qdoublevector3d_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeoaddress_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeocircle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeocoordinate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeolocation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeopositioninfosource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeoprojection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeorectangle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qgeoshape_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qlocationdata_simulator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qlocationutils_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qnmeapositioninfosource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/5.6.0/QtPositioning/private/qpositioningglobal_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/QGeoAddress
-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/QGeoAreaMonitorInfo
-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/QGeoAreaMonitorSource
@@ -3700,26 +3566,26 @@ drwxr-xr-x root/root usr/share/qt5/include/QtPositioning/5.5.1/QtPositioning/pri
-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/qpositioningglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtPositioning/qtpositioningversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/
-drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/
-drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qabstractprintdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qcups_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qcupsjobwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qpagesetupdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qpagesetupdialog_unix_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qpaintengine_alpha_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qpaintengine_preview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprint_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprintdevice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprintengine_pdf_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprintengine_win_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprinter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/private/qprinterinfo_p.h
-drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/qpa/
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/qpa/qplatformprintdevice.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/qpa/qplatformprintersupport.h
--rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/qpa/qplatformprintplugin.h
+drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/
+drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qabstractprintdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qcups_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qcupsjobwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qpagesetupdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qpagesetupdialog_unix_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qpaintengine_alpha_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qpaintengine_preview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprint_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprintdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprintengine_pdf_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprintengine_win_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprinter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/private/qprinterinfo_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/qpa/
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/qpa/qplatformprintdevice.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/qpa/qplatformprintersupport.h
+-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/5.6.0/QtPrintSupport/qpa/qplatformprintplugin.h
-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/QAbstractPrintDialog
-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/QPageSetupDialog
-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/QPrintDialog
@@ -3742,210 +3608,197 @@ drwxr-xr-x root/root usr/share/qt5/include/QtPrintSupport/5.5.1/QtPrintSupport/q
-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/qtprintsupportglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtPrintSupport/qtprintsupportversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtQml/
-drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/
-drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qabstractanimationjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qanimationgroupjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qanimationjobutil_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qbitfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qcontinuinganimationgroupjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qdebugmessageservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qdeletewatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qfieldlist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qfinitestack_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qflagpointer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qhashedstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qhashfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qintrusivelist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qjsengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qjsvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qjsvalueiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qlazilyallocated_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qparallelanimationgroupjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qpauseanimationjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qpodvector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qpointervaluepair_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlabstractbinding_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlabstractexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlabstractprofileradapter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlaccessors_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmladaptormodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlapplicationengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlbind_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlbinding_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlboundsignal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlboundsignalexpressionpointer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlbuiltinfunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlchangeset_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcleanup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcompiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcomponent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcomponentattached_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlconfigurabledebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlconfigurabledebugservice_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlconnections_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcontextwrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlcustomparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldebugserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldebugserverconnection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldebugservice_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldebugstatesdelegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldelegatemodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldelegatemodel_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmldirparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlenginecontrolservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlenginedebugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlextensionplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlfileselector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlguard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlimport_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlincubator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlinspectorinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlinspectorservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlinstantiator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlinstantiator_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlirbuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljavascriptexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsast_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsastfwd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsastvisitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsgrammar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljskeywords_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljslexer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsmemorypool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmljsparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistaccessor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistcompositor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistmodel_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistmodelworkeragent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllistwrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmllocale_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlmemoryprofiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlmetatype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlmodelindexvaluetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlmodelsmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlnotifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlnullablevalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlobjectcreator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlobjectmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlopenmetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlplatform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlpool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlprofiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlprofilerdefinitions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlprofilerservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlproperty_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlpropertycache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlpropertyvalueinterceptor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlproxymetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlrefcount_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlscriptstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlstringconverters_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlthread_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltimer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltypecompiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltypeloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltypenamecache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltypenotavailable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmltypewrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlvaluetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlvaluetypeproxybinding_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlvaluetypewrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlvme_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlvmemetaobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlwatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qqmlxmlhttprequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qquickpackage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qquickworkerscript_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qrecursionwatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qrecyclepool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qsequentialanimationgroupjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qtqmlglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4alloca_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4argumentsobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4arraybuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4arraydata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4arrayobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4assembler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4binop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4booleanobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4codegen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4compileddata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4compiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4context_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4dataview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4dateobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4debugging_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4debugservice_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4domerrors_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4engine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4errorobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4executableallocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4function_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4functionobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4global_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4globalobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4identifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4identifiertable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4include_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4instr_moth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4internalclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4isel_masm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4isel_moth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4isel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4isel_util_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4jsir_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4jsonobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4lookup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4managed_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4math_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4mathobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4memberdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4mm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4numberobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4object_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4objectiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4objectproto_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4persistent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4profileradapter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4profiling_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4property_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4qmlextensions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4qobjectwrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4regalloc_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4regexp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4regexpobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4registerinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4runtime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4scopedvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4script_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4sequenceobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4serialize_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4sparsearray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4sqlerrors_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4ssa_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4string_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4stringobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4targetplatform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4typedarray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4unop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4util_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4value_inl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4value_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4variantobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv4vme_moth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/qv8engine_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/
+drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qabstractanimationjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qanimationgroupjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qanimationjobutil_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qbitfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qcontinuinganimationgroupjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qdeletewatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qfieldlist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qfinitestack_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qflagpointer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qhashedstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qhashfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qintrusivelist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qjsengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qjsvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qjsvalueiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qlazilyallocated_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qparallelanimationgroupjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qpauseanimationjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qpodvector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qpointervaluepair_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlabstractbinding_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlabstractprofileradapter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlaccessors_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmladaptormodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlapplicationengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlbind_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlbinding_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlboundsignal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlboundsignalexpressionpointer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlbuiltinfunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlchangeset_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcleanup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcompiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcomponent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcomponentattached_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlconnections_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcontextwrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlcustomparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugconnector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugpluginmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugservice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugservicefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugserviceinterfaces_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldebugstatesdelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldelegatemodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldelegatemodel_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmldirparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlextensionplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlfileselector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlguard_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlimport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlincubator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlinstantiator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlinstantiator_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlirbuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljavascriptexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsast_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsastfwd_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsastvisitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsgrammar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljskeywords_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljslexer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsmemorypool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmljsparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistaccessor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistcompositor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistmodel_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistmodelworkeragent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllistwrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmllocale_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlmemoryprofiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlmetatype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlmodelindexvaluetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlmodelsmodule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlnotifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlnullablevalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlobjectcreator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlobjectmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlopenmetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlplatform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlprofiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlprofilerdefinitions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlproperty_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlpropertycache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlpropertyvalueinterceptor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlproxymetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlrefcount_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlscriptstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlstringconverters_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltimer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltypecompiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltypeloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltypenamecache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltypenotavailable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmltypewrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlvaluetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlvaluetypeproxybinding_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlvaluetypewrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlvme_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlvmemetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qqmlxmlhttprequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qquickpackage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qquickworkerscript_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qrecursionwatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qrecyclepool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qsequentialanimationgroupjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qtqmlglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4alloca_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4argumentsobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4arraybuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4arraydata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4arrayobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4assembler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4binop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4booleanobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4codegen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4compileddata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4compiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4context_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4dataview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4dateobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4debugging_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4domerrors_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4engine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4errorobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4executableallocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4function_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4functionobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4globalobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4heap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4identifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4identifiertable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4include_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4instr_moth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4internalclass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4isel_masm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4isel_moth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4isel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4isel_util_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4jsir_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4jsonobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4lookup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4managed_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4math_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4mathobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4memberdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4mm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4numberobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4object_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4objectiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4objectproto_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4persistent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4profiling_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4property_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4qobjectwrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4regalloc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4regexp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4regexpobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4registerinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4runtime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4scopedvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4script_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4sequenceobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4serialize_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4sparsearray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4sqlerrors_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4ssa_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4string_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4stringobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4targetplatform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4typedarray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4unop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4util_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4value_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4variantobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv4vme_moth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQml/5.6.0/QtQml/private/qv8engine_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtQml/QJSEngine
-rw-r--r-- root/root usr/share/qt5/include/QtQml/QJSValue
-rw-r--r-- root/root usr/share/qt5/include/QtQml/QJSValueIterator
@@ -4010,266 +3863,275 @@ drwxr-xr-x root/root usr/share/qt5/include/QtQml/5.5.1/QtQml/private/
-rw-r--r-- root/root usr/share/qt5/include/QtQml/qtqmlglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtQml/qtqmlversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qbitfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qdeletewatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qfieldlist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qfinitestack_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qflagpointer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qhashedstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qhashfield_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qintrusivelist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qlazilyallocated_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qpodvector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qpointervaluepair_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmlirbuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsast_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsastfwd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsastvisitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsgrammar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljskeywords_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljslexer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsmemorypool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmljsparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmlnullablevalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmlpool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmlrefcount_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmlthread_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qqmltypecompiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qrecursionwatcher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qrecyclepool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qtqmldevtoolsglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4alloca_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4argumentsobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4arraybuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4arraydata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4arrayobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4booleanobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4codegen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4compileddata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4compiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4context_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4dataview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4dateobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4debugging_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4engine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4errorobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4executableallocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4function_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4functionobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4global_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4globalobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4identifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4identifiertable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4include_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4instr_moth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4internalclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4isel_moth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4isel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4isel_util_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4jsir_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4jsonobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4lookup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4managed_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4math_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4mathobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4memberdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4mm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4numberobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4object_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4objectiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4objectproto_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4persistent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4profiling_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4property_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4qmlextensions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4qobjectwrapper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4regexp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4regexpobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4runtime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4scopedvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4script_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4sequenceobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4serialize_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4sparsearray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4ssa_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4string_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4stringobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4typedarray_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4util_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4value_inl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4value_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4variantobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.5.1/QtQmlDevTools/private/qv4vme_moth_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/
+drwxr-xr-x root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qbitfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qdeletewatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qfieldlist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qfinitestack_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qflagpointer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qhashedstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qhashfield_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qintrusivelist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qlazilyallocated_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qpodvector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qpointervaluepair_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmlirbuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsast_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsastfwd_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsastvisitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsgrammar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljskeywords_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljslexer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsmemorypool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmljsparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmlnullablevalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmlrefcount_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmlthread_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qqmltypecompiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qrecursionwatcher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qrecyclepool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qtqmldevtoolsglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4alloca_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4argumentsobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4arraybuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4arraydata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4arrayobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4booleanobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4codegen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4compileddata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4compiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4context_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4dataview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4dateobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4debugging_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4engine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4errorobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4executableallocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4function_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4functionobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4global_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4globalobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4heap_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4identifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4identifiertable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4include_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4instr_moth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4internalclass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4isel_moth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4isel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4isel_util_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4jsir_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4jsonobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4lookup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4managed_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4math_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4mathobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4memberdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4mm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4numberobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4object_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4objectiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4objectproto_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4persistent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4profiling_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4property_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4qobjectwrapper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4regexp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4regexpobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4runtime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4scopedvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4script_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4sequenceobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4serialize_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4sparsearray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4ssa_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4string_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4stringobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4typedarray_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4util_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4value_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4variantobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/5.6.0/QtQmlDevTools/private/qv4vme_moth_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/QtQmlDevTools
-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/QtQmlDevToolsDepends
-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/QtQmlDevToolsVersion
-rw-r--r-- root/root usr/share/qt5/include/QtQmlDevTools/qtqmldevtoolsversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtQuick/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/designerwindowmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qaccessiblequickitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qaccessiblequickview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickaccessibleattached_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickaccessiblefactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanchors_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanchors_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimatedimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimatedimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimatedsprite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimation_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimationcontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimator_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimatorcontroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickanimatorjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickapplication_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickbehavior_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickborderimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickborderimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcanvascontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcanvasitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickclipnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcontext2d_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcontext2dcommandbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcontext2dtexture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickcontext2dtile_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickdrag_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickdroparea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickevents_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickflickable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickflickable_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickflickablebehavior_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickflipable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickfocusscope_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickfontloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickfontmetrics_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickgridview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimage_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimagebase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimagebase_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimplicitsizeitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickimplicitsizeitem_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemanimation_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemchangelistener_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemsmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemview_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickitemviewtransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicklistview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickloader_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickmousearea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickmousearea_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickmultipointtoucharea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickopenglinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpainteditem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpath_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpathinterpolator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpathview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpathview_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpincharea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpincharea_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpixmapcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpositioners_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpositioners_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickprofiler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickpropertychanges_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickrectangle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickrectangle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickrendercontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickrepeater_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickrepeater_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickscalegrid_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickscreen_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickshadereffect_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickshadereffectmesh_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickshadereffectnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickshadereffectsource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickshortcut_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicksmoothedanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicksmoothedanimation_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickspringanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicksprite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickspriteengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickspritesequence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstate_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstatechangescript_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstategroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstateoperations_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickstyledtext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicksvgparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicksystempalette_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktext_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextcontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextcontrol_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextedit_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextinput_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextinput_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextmetrics_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextnodeengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktextutil_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktimeline_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktransitionmanager_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquicktranslate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickutilmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickvaluetypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickwindowattached_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qquickwindowmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgabstractrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgadaptationlayer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgareaallocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgatlastexture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgbatchrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgcontextplugin_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultdistancefieldglyphcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultglyphnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultglyphnode_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultimagenode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultlayer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultpainternode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdefaultrectanglenode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdepthstencilbuffer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdistancefieldglyphnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdistancefieldglyphnode_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgdistancefieldutil_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsggeometry_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgmaterialshader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgnodeupdater_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgrenderer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgrenderloop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgrendernode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgshadersourcebuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgshareddistancefieldglyphcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgtexture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgtexturematerial_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgthreadedrenderloop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qsgwindowsrenderloop_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qtquick2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/qtquickglobal_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qaccessiblequickitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qaccessiblequickview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qqmldesignermetaobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickaccessibleattached_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickaccessiblefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanchors_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanchors_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimatedimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimatedimage_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimatedsprite_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimation_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimationcontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimator_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimatorcontroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickanimatorjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickapplication_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickbehavior_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickborderimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickborderimage_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcanvascontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcanvasitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickclipnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcontext2d_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcontext2dcommandbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcontext2dtexture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickcontext2dtile_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignercustomobjectdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupportitems_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupportmetainfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupportproperties_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupportpropertychanges_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignersupportstates_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdesignerwindowmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdrag_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickdroparea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickevents_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickflickable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickflickable_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickflickablebehavior_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickflipable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickfocusscope_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickfontloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickfontmetrics_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickgridview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimage_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimagebase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimagebase_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimplicitsizeitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickimplicitsizeitem_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemanimation_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemchangelistener_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemsmodule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemview_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickitemviewtransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicklistview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickloader_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickmousearea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickmousearea_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickmultipointtoucharea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickopenglinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpainteditem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpath_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpath_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpathinterpolator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpathview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpathview_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpincharea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpincharea_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpixmapcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpositioners_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpositioners_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickprofiler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickpropertychanges_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickrectangle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickrectangle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickrendercontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickrepeater_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickrepeater_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickscalegrid_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickscreen_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickshadereffect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickshadereffectmesh_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickshadereffectnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickshadereffectsource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickshortcut_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicksmoothedanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicksmoothedanimation_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickspringanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicksprite_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickspriteengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickspritesequence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstate_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstatechangescript_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstategroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstateoperations_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickstyledtext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicksvgparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicksystempalette_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktext_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextcontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextcontrol_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextdocument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextedit_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextinput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextinput_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextmetrics_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextnodeengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktextutil_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktimeline_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktransitionmanager_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquicktranslate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickutilmodule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickvalidator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickvaluetypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickwindowattached_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qquickwindowmodule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgabstractrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgadaptationlayer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgareaallocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgatlastexture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgbatchrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgcontextplugin_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultdistancefieldglyphcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultglyphnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultglyphnode_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultimagenode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultlayer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultpainternode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdefaultrectanglenode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdepthstencilbuffer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdistancefieldglyphnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdistancefieldglyphnode_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgdistancefieldutil_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsggeometry_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgmaterialshader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgnodeupdater_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgrenderer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgrenderloop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgrendernode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgshadersourcebuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgtexture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgtexturematerial_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgthreadedrenderloop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qsgwindowsrenderloop_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qtquick2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/5.6.0/QtQuick/private/qtquickglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickAsyncImageProvider
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickFramebufferObject
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickImageProvider
+-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickImageResponse
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickItem
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickItemGrabResult
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QQuickPaintedItem
@@ -4308,7 +4170,6 @@ drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QtQuick
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QtQuickDepends
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/QtQuickVersion
--rw-r--r-- root/root usr/share/qt5/include/QtQuick/designersupport.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/qquickframebufferobject.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/qquickimageprovider.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/qquickitem.h
@@ -4334,51 +4195,51 @@ drwxr-xr-x root/root usr/share/qt5/include/QtQuick/5.5.1/QtQuick/private/
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/qtquickglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuick/qtquickversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickage_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickangledirection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickcumulativedirection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickcustomaffector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickcustomparticle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickdirection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickellipseextruder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickfriction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickgravity_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickgroupgoal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickimageparticle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickitemparticle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquicklineextruder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickmaskextruder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticleaffector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticleemitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticleextruder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticlegroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticlepainter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticlesmodule_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickparticlesystem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickpointattractor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickpointdirection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickrectangleextruder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickspritegoal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquicktargetdirection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquicktrailemitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickturbulence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickv4particledata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qquickwander_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.5.1/QtQuickParticles/private/qtquickparticlesglobal_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickage_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickangledirection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickcumulativedirection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickcustomaffector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickcustomparticle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickdirection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickellipseextruder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickfriction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickgravity_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickgroupgoal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickimageparticle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickitemparticle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquicklineextruder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickmaskextruder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticleaffector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticleemitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticleextruder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticlegroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticlepainter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticlesmodule_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickparticlesystem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickpointattractor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickpointdirection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickrectangleextruder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickspritegoal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquicktargetdirection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquicktrailemitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickturbulence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickv4particledata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qquickwander_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/5.6.0/QtQuickParticles/private/qtquickparticlesglobal_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/QtQuickParticles
-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/QtQuickParticlesDepends
-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/QtQuickParticlesVersion
-rw-r--r-- root/root usr/share/qt5/include/QtQuickParticles/qtquickparticlesversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/private/qtestoptions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/private/quicktestevent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/private/quicktestresult_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.6.0/QtQuickTest/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.6.0/QtQuickTest/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.6.0/QtQuickTest/private/qtestoptions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.6.0/QtQuickTest/private/quicktestevent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/5.6.0/QtQuickTest/private/quicktestresult_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/QtQuickTest
-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/QtQuickTestDepends
-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/QtQuickTestVersion
@@ -4386,10 +4247,10 @@ drwxr-xr-x root/root usr/share/qt5/include/QtQuickTest/5.5.1/QtQuickTest/private
-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/quicktest.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuickTest/quicktestglobal.h
drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.5.1/QtQuickWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.5.1/QtQuickWidgets/private/
--rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/5.5.1/QtQuickWidgets/private/qquickwidget_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.6.0/QtQuickWidgets/
+drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.6.0/QtQuickWidgets/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/5.6.0/QtQuickWidgets/private/qquickwidget_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/QQuickWidget
-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/QtQuickWidgets
-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/QtQuickWidgetsDepends
@@ -4398,33 +4259,33 @@ drwxr-xr-x root/root usr/share/qt5/include/QtQuickWidgets/5.5.1/QtQuickWidgets/p
-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/qtquickwidgetsglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtQuickWidgets/qtquickwidgetsversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtScript/
-drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/
-drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptactivationobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptast_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptastfwd_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptastvisitor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptclassobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptdeclarativeclass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptdeclarativeobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptengineagent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptfunction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptglobalobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptgrammar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptlexer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptprogram_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptqobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptstaticscopeobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptsyntaxchecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/qscriptvariant_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/
+drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptactivationobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptast_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptastfwd_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptastvisitor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptclassobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptdeclarativeclass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptdeclarativeobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptengineagent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptfunction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptglobalobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptgrammar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptlexer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptprogram_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptqobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptstaticscopeobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptsyntaxchecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScript/5.6.0/QtScript/private/qscriptvariant_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtScript/QScriptClass
-rw-r--r-- root/root usr/share/qt5/include/QtScript/QScriptClassPropertyIterator
-rw-r--r-- root/root usr/share/qt5/include/QtScript/QScriptContext
@@ -4460,93 +4321,93 @@ drwxr-xr-x root/root usr/share/qt5/include/QtScript/5.5.1/QtScript/private/
-rw-r--r-- root/root usr/share/qt5/include/QtScript/qtscriptglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtScript/qtscriptversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptbreakpointdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptbreakpointsmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptbreakpointswidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptbreakpointswidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptbreakpointswidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptcompletionproviderinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptcompletiontask_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptcompletiontaskinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptcompletiontaskinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebugger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggeragent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggeragent_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerbackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerbackend_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodefinderwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodeview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodeviewinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodeviewinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodewidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommandexecutor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommandschedulerfrontend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommandschedulerinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsole_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommand_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommandgroupdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolecommandmanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsoleglobalobject_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolehistorianinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolewidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerevent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggereventhandlerinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerfrontend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerfrontend_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerjob_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerjob_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerjobschedulerinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerlocalsmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerlocalswidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerobjectsnapshotdelta_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerresponse_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerresponsehandlerinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerscriptedconsolecommand_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerscriptsmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerscriptswidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerstackmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerstackwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerstandardwidgetfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggervalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggervalueproperty_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebuggerwidgetfactoryinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebugoutputwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptenginedebuggerfrontend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscripterrorlogwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscripterrorlogwidgetinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscripterrorlogwidgetinterface_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptmessagehandlerinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptobjectsnapshot_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptscriptdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptstdmessagehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptsyntaxhighlighter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscripttooltipproviderinterface_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptvalueproperty_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/private/qscriptxmlparser_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/
+drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptbreakpointdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptbreakpointsmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptbreakpointswidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptbreakpointswidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptbreakpointswidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptcompletionproviderinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptcompletiontask_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptcompletiontaskinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptcompletiontaskinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebugger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggeragent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggeragent_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerbackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerbackend_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodefinderwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodeview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodeviewinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodeviewinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodewidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommandexecutor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommandschedulerfrontend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommandschedulerinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsole_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommand_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommandgroupdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolecommandmanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsoleglobalobject_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolehistorianinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolewidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerevent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggereventhandlerinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerfrontend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerfrontend_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerjob_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerjob_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerjobschedulerinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerlocalsmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerlocalswidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerobjectsnapshotdelta_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerresponse_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerresponsehandlerinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerscriptedconsolecommand_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerscriptsmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerscriptswidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerstackmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerstackwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerstandardwidgetfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggervalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggervalueproperty_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebuggerwidgetfactoryinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebugoutputwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptenginedebuggerfrontend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscripterrorlogwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscripterrorlogwidgetinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscripterrorlogwidgetinterface_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptmessagehandlerinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptobjectsnapshot_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptscriptdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptstdmessagehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptsyntaxhighlighter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscripttooltipproviderinterface_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptvalueproperty_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/5.6.0/QtScriptTools/private/qscriptxmlparser_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/QScriptEngineDebugger
-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/QtScriptTools
-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/QtScriptToolsDepends
@@ -4554,32 +4415,32 @@ drwxr-xr-x root/root usr/share/qt5/include/QtScriptTools/5.5.1/QtScriptTools/pri
-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/qscriptenginedebugger.h
-rw-r--r-- root/root usr/share/qt5/include/QtScriptTools/qtscripttoolsversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtSensors/
-drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/
-drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qaccelerometer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qaltimeter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qambientlightsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qambienttemperaturesensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qcompass_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qdistancesensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qgyroscope_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qholstersensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qirproximitysensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qlightsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qmagnetometer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qorientationsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qpressuresensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qproximitysensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qrotationsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qsensorbackend_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qsensorgesture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qsensorgesturemanagerprivate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qtapsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/qtiltsensor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/sensorlog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/simulatorgesturescommon_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/
+drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qaccelerometer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qaltimeter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qambientlightsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qambienttemperaturesensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qcompass_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qdistancesensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qgyroscope_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qholstersensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qirproximitysensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qlightsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qmagnetometer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qorientationsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qpressuresensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qproximitysensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qrotationsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qsensorbackend_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qsensorgesture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qsensorgesturemanagerprivate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qtapsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/qtiltsensor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/sensorlog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSensors/5.6.0/QtSensors/private/simulatorgesturescommon_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/QAccelerometer
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/QAccelerometerFilter
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/QAccelerometerReading
@@ -4673,13 +4534,65 @@ drwxr-xr-x root/root usr/share/qt5/include/QtSensors/5.5.1/QtSensors/private/
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/qtapsensor.h
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/qtiltsensor.h
-rw-r--r-- root/root usr/share/qt5/include/QtSensors/qtsensorsversion.h
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialBus/
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialBus/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qcanbusdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbus_symbols_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusadu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusclient_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbuscommevent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusdevice_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusrtuserialmaster_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusrtuserialslave_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbusserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbustcpclient_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/5.6.0/QtSerialBus/private/qmodbustcpserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QCanBus
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QCanBusDevice
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QCanBusFactory
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QCanBusFrame
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusClient
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusDataUnit
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusDataUnitMap
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusDevice
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusExceptionResponse
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusPdu
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusReply
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusRequest
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusResponse
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusRtuSerialMaster
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusRtuSerialSlave
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusServer
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusTcpClient
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QModbusTcpServer
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QtSerialBus
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QtSerialBusDepends
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/QtSerialBusVersion
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qcanbus.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qcanbusdevice.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qcanbusfactory.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qcanbusframe.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusclient.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusdataunit.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusdevice.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbuspdu.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusreply.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusrtuserialmaster.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusrtuserialslave.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbusserver.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbustcpclient.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qmodbustcpserver.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qserialbusglobal.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialBus/qtserialbusversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/
-drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/
-drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/private/
--rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/private/qserialport_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/private/qserialportinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/private/qtudev_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.6.0/QtSerialPort/
+drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.6.0/QtSerialPort/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.6.0/QtSerialPort/private/qserialport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.6.0/QtSerialPort/private/qserialportinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/5.6.0/QtSerialPort/private/qtudev_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/QSerialPort
-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/QSerialPortInfo
-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/QtSerialPort
@@ -4690,24 +4603,24 @@ drwxr-xr-x root/root usr/share/qt5/include/QtSerialPort/5.5.1/QtSerialPort/priva
-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/qserialportinfo.h
-rw-r--r-- root/root usr/share/qt5/include/QtSerialPort/qtserialportversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtSql/
-drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/
-drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_db2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_ibase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_mysql_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_oci_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_odbc_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_psql_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_sqlite2_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_sqlite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsql_tds_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqlcachedresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqldriver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqlnulldriver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqlquerymodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqlresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/qsqltablemodel_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/
+drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_db2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_ibase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_mysql_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_oci_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_odbc_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_psql_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_sqlite2_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_sqlite_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsql_tds_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqlcachedresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqldriver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqlnulldriver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqlquerymodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqlresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSql/5.6.0/QtSql/private/qsqltablemodel_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtSql/QSql
-rw-r--r-- root/root usr/share/qt5/include/QtSql/QSqlDatabase
-rw-r--r-- root/root usr/share/qt5/include/QtSql/QSqlDriver
@@ -4744,18 +4657,18 @@ drwxr-xr-x root/root usr/share/qt5/include/QtSql/5.5.1/QtSql/private/
-rw-r--r-- root/root usr/share/qt5/include/QtSql/qsqltablemodel.h
-rw-r--r-- root/root usr/share/qt5/include/QtSql/qtsqlversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtSvg/
-drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/
-drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgfont_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgfunctions_wince_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvggraphics_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvghandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgnode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgstructure_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qsvgtinydocument_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/qtsvgglobal_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/
+drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgfont_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgfunctions_wince_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvggraphics_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvghandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgnode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgstructure_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qsvgtinydocument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtSvg/5.6.0/QtSvg/private/qtsvgglobal_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtSvg/QGraphicsSvgItem
-rw-r--r-- root/root usr/share/qt5/include/QtSvg/QSvgGenerator
-rw-r--r-- root/root usr/share/qt5/include/QtSvg/QSvgRenderer
@@ -4770,35 +4683,35 @@ drwxr-xr-x root/root usr/share/qt5/include/QtSvg/5.5.1/QtSvg/private/
-rw-r--r-- root/root usr/share/qt5/include/QtSvg/qtsvgglobal.h
-rw-r--r-- root/root usr/share/qt5/include/QtSvg/qtsvgversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtTest/
-drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/
-drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/callgrind_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/cycle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/linux_perf_event_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qabstracttestlogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmark_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmarkevent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmarkmeasurement_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmarkmetric_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmarkperfevents_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qbenchmarkvalgrind_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qcsvbenchmarklogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qplaintestlogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qsignaldumper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestblacklist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestcoreelement_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestcorelist_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestelement_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestelementattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestlog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestresult_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtesttable_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qtestxunitstreamer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qxctestlogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qxmltestlogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/qxunittestlogger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtTest/5.5.1/QtTest/private/valgrind_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/
+drwxr-xr-x root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/callgrind_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/cycle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/linux_perf_event_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qabstracttestlogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmark_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmarkevent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmarkmeasurement_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmarkmetric_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmarkperfevents_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qbenchmarkvalgrind_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qcsvbenchmarklogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qplaintestlogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qsignaldumper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestblacklist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestcoreelement_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestcorelist_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestelement_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestelementattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestlog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestresult_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtesttable_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qtestxunitstreamer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qxctestlogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qxmltestlogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/qxunittestlogger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtTest/5.6.0/QtTest/private/valgrind_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtTest/QEventSizeOfChecker
-rw-r--r-- root/root usr/share/qt5/include/QtTest/QSignalSpy
-rw-r--r-- root/root usr/share/qt5/include/QtTest/QSpontaneKeyEvent
@@ -4847,10 +4760,10 @@ drwxr-xr-x root/root usr/share/qt5/include/QtUiPlugin/
-rw-r--r-- root/root usr/share/qt5/include/QtUiPlugin/qdesignerexportwidget.h
-rw-r--r-- root/root usr/share/qt5/include/QtUiPlugin/qtuipluginversion.h
drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.5.1/QtUiTools/
-drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.5.1/QtUiTools/private/
--rw-r--r-- root/root usr/share/qt5/include/QtUiTools/5.5.1/QtUiTools/private/quiloader_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.6.0/QtUiTools/
+drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.6.0/QtUiTools/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/5.6.0/QtUiTools/private/quiloader_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/QUiLoader
-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/QtUiTools
-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/QtUiToolsDepends
@@ -4858,14 +4771,14 @@ drwxr-xr-x root/root usr/share/qt5/include/QtUiTools/5.5.1/QtUiTools/private/
-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/qtuitoolsversion.h
-rw-r--r-- root/root usr/share/qt5/include/QtUiTools/quiloader.h
drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/
--rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/qmetaobjectpublisher_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/qqmlwebchannelattached_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/qwebchannel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/signalhandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/private/variantargument_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/
+drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/qmetaobjectpublisher_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/qqmlwebchannelattached_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/qwebchannel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/signalhandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/5.6.0/QtWebChannel/private/variantargument_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/QQmlWebChannel
-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/QWebChannel
-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/QWebChannelAbstractTransport
@@ -4878,19 +4791,19 @@ drwxr-xr-x root/root usr/share/qt5/include/QtWebChannel/5.5.1/QtWebChannel/priva
-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/qwebchannelabstracttransport.h
-rw-r--r-- root/root usr/share/qt5/include/QtWebChannel/qwebchannelglobal.h
drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/
-drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qdefaultmaskgenerator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qsslserver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocket_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocketcorsauthenticator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocketdataprocessor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocketframe_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsockethandshakerequest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsockethandshakeresponse_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocketprotocol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/private/qwebsocketserver_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/
+drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qdefaultmaskgenerator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qsslserver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocket_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocketcorsauthenticator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocketdataprocessor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocketframe_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsockethandshakerequest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsockethandshakeresponse_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocketprotocol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/5.6.0/QtWebSockets/private/qwebsocketserver_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/QMaskGenerator
-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/QWebSocket
-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/QWebSocketCorsAuthenticator
@@ -4906,146 +4819,145 @@ drwxr-xr-x root/root usr/share/qt5/include/QtWebSockets/5.5.1/QtWebSockets/priva
-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/qwebsockets_global.h
-rw-r--r-- root/root usr/share/qt5/include/QtWebSockets/qwebsocketserver.h
drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/
-drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/complexwidgets_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/itemviews_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractbutton_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractitemdelegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractitemview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractscrollarea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractslider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qabstractspinbox_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaccessiblemenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaccessiblewidgetfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaccessiblewidgets_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qandroidstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qapplication_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qbasickeyeventtransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qbasicmouseeventtransition_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qbsptree_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcolordialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcolumnview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcolumnviewgrip_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcombobox_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcommonstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcommonstylepixmaps_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qcompleter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qdatetimeedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qdesktopwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qdockarealayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qdockwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qeffects_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfiledialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfileiconprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfileinfogatherer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfilesystemmodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qflickgesture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfontdialog_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qframe_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfscompleter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfusionstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qfusionstyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgesture_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgesturemanager_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraph_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsanchorlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicseffect_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsgridlayoutengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicslayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicslayoutitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicslayoutstyleinfo_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsproxywidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsscene_bsp_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsscene_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsscenebsptreeindex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicssceneindex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsscenelinearindex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicstransform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicsview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgraphicswidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgtk2painter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgtkglobal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgtkpainter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgtkstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qgtkstyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qheaderview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qitemeditorfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qkeysequenceedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlabel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlayoutengine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlineedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlistview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qlistwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmacgesturerecognizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmacstyle_mac_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmacstyle_mac_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmainwindowlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmdiarea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmdisubwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmenu_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmenu_wince_resource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qmenubar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qpixmapfilter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qplaintextedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qproxystyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qpushbutton_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qscrollarea_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qscrollbar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qscroller_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qscrollerproperties_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qsidebar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qsimplex_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qsplitter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qstandardgestures_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qstyleanimation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qstylehelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qstylesheetstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qsystemtrayicon_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qt_widgets_pch.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtabbar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtableview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtablewidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtextedit_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtoolbar_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtoolbararealayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtoolbarextension_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtoolbarlayout_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtoolbarseparator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtreeview_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtreewidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qtreewidgetitemiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qundostack_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidget_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetaction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetanimator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetbackingstore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetitemdata_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetlinecontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetresizehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgettextcontrol_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgettextcontrol_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwidgetwindow_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowcontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowscestyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowscestyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsmobilestyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsmobilestyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsstyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsvistastyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsvistastyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsxpstyle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwindowsxpstyle_p_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/qwizard_win_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/rangecontrols_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.5.1/QtWidgets/private/simplewidgets_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/
+drwxr-xr-x root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/complexwidgets_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/itemviews_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractitemdelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractitemview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractscrollarea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractslider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qabstractspinbox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qaccessiblemenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qaccessiblewidgetfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qaccessiblewidgets_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qaction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qandroidstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qapplication_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qbasickeyeventtransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qbasicmouseeventtransition_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qbsptree_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcolumnview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcolumnviewgrip_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcombobox_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcommonstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcommonstylepixmaps_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qcompleter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qdatetimeedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qdesktopwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qdockarealayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qdockwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qeffects_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfiledialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfileiconprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfileinfogatherer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfilesystemmodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qflickgesture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfontdialog_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qframe_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfscompleter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfusionstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qfusionstyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgesture_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgesturemanager_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraph_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsanchorlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicseffect_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsgridlayoutengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicslayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicslayoutitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicslayoutstyleinfo_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsproxywidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsscene_bsp_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsscene_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsscenebsptreeindex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicssceneindex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsscenelinearindex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicstransform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicsview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgraphicswidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgtk2painter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgtkglobal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgtkpainter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgtkstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qgtkstyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qheaderview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qitemeditorfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qkeysequenceedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlabel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlayoutengine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlineedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlistview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qlistwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmacgesturerecognizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmacstyle_mac_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmacstyle_mac_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmainwindowlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmdiarea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmdisubwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmenu_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmenu_wince_resource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qmenubar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qpixmapfilter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qplaintextedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qproxystyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qpushbutton_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qscrollarea_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qscrollbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qscroller_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qscrollerproperties_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qsidebar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qsimplex_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qsplitter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qstandardgestures_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qstyleanimation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qstylehelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qstylesheetstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qsystemtrayicon_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qt_widgets_pch.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtabbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtableview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtablewidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtextedit_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtoolbar_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtoolbararealayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtoolbarextension_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtoolbarlayout_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtoolbarseparator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtreeview_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtreewidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qtreewidgetitemiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qundostack_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidget_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetaction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetanimator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetbackingstore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetitemdata_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetlinecontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetresizehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgettextcontrol_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgettextcontrol_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwidgetwindow_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowcontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowscestyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowscestyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsmobilestyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsmobilestyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsstyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsvistastyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsvistastyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsxpstyle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwindowsxpstyle_p_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/qwizard_win_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/rangecontrols_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/5.6.0/QtWidgets/private/simplewidgets_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/QAbstractButton
-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/QAbstractGraphicsShapeItem
-rw-r--r-- root/root usr/share/qt5/include/QtWidgets/QAbstractItemDelegate
@@ -5406,10 +5318,10 @@ drwxr-xr-x root/root usr/share/qt5/include/QtX11Extras/
-rw-r--r-- root/root usr/share/qt5/include/QtX11Extras/qtx11extrasversion.h
-rw-r--r-- root/root usr/share/qt5/include/QtX11Extras/qx11info_x11.h
drwxr-xr-x root/root usr/share/qt5/include/QtXml/
-drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.5.1/QtXml/
-drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.5.1/QtXml/private/
--rw-r--r-- root/root usr/share/qt5/include/QtXml/5.5.1/QtXml/private/qxml_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.6.0/QtXml/
+drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.6.0/QtXml/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtXml/5.6.0/QtXml/private/qxml_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtXml/QDomAttr
-rw-r--r-- root/root usr/share/qt5/include/QtXml/QDomCDATASection
-rw-r--r-- root/root usr/share/qt5/include/QtXml/QDomCharacterData
@@ -5449,377 +5361,377 @@ drwxr-xr-x root/root usr/share/qt5/include/QtXml/5.5.1/QtXml/private/
-rw-r--r-- root/root usr/share/qt5/include/QtXml/qtxmlversion.h
-rw-r--r-- root/root usr/share/qt5/include/QtXml/qxml.h
drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/
-drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/
-drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/
-drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractdatetime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractduration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloat_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloat_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloatcasters_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloatcasters_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloatmathematician_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfloatmathematician_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractfunctionfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractnodetest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractxmlforwarditerator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractxmlnodemodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractxmlpullprovider_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qabstractxmlreceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qacceliterators_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qacceltree_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qacceltreebuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qacceltreebuilder_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qacceltreeresourceloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qaccessorfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qaggregatefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qaggregator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qandexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qanyitemtype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qanynodetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qanysimpletype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qanytype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qanyuri_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qapplytemplate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qargumentconverter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qargumentreference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qarithmeticexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qassemblestringfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccaster_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccasterlocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccasterlocators_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccasters_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccomparator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccomparatorlocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccomparatorlocators_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomiccomparators_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomicmathematician_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomicmathematicianlocator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomicmathematicianlocators_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomicmathematicians_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomicstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomictype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomictypedispatch_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qatomizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qattributeconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qattributenamevalidator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qautoptr_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qaxisstep_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbase64binary_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbasictypesfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qboolean_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbooleanfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbuiltinatomictype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbuiltinatomictypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbuiltinnodetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbuiltinnodetype_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qbuiltintypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcachecells_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcachingiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcallsite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcalltargetdescription_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcalltemplate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcardinality_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcardinalityverifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcastableas_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcastas_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcastingplatform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcastingplatform_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcollationchecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcoloringmessagehandler_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcoloroutput_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcombinenodes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcommentconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcommonnamespaces_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcommonsequencetypes_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcommonvalues_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparescaseaware_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparestringfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparingaggregator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparingaggregator_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparisonfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparisonplatform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomparisonplatform_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcompressedwhitespace_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcomputednamespaceconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qconstructorfunctionsfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcontextfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcontextitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcontextnodechecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcopyof_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcppcastinghelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcurrentfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcurrentitemcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qcurrentitemstore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdatetimefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdatetimefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdatetimefns_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdaytimeduration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdecimal_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdeduplicateiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdeepequalfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdelegatingdynamiccontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdelegatingnamespaceresolver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdelegatingstaticcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qderivedinteger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qderivedstring_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdeviceresourceloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdistinctiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdocumentconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdocumentcontentvalidator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdocumentfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdocumentprojector_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qduration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdynamiccontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qdynamiccontextstore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qebvextractor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qebvtype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qelementavailablefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qelementconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qemptycontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qemptyiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qemptysequence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qemptysequencetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qerrorfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qevaluationcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qevaluationcache_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexceptiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexpressiondispatch_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexpressionfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexpressionsequence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexpressionvariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexternalvariableloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qexternalvariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfirstitempredicate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfocus_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qforclause_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctionargument_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctionavailablefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctioncall_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctionfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctionfactorycollection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qfunctionsignature_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgday_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgeneralcomparison_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenerateidfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenericdynamiccontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenericnamespaceresolver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenericpredicate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenericsequencetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgenericstaticcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgmonth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgmonthday_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgyear_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qgyearmonth_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qhexbinary_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qifthenclause_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qindexofiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qinsertioniterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qinstanceof_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qinteger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qintersectiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qiodevicedelegate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qitem_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qitemmappingiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qitemtype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qitemverifier_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qletclause_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qliteral_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qliteralsequence_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qlocalnametest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qmaintainingreader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qmaintainingreader_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qmultiitemtype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamedschemacomponent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamepool_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamespacebinding_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamespaceconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamespacenametest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamespaceresolver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnamespacesupport_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qncnameconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnetworkaccessdelegator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnodebuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnodecomparison_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnodefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnodenamespaceresolver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnodesort_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnonetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnumericfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qnumerictype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qoperandsiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qoptimizationpasses_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qoptimizerblocks_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qoptimizerframework_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qorderby_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qorexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qoutputvalidator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpaircontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qparentnodeaxis_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qparsercontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpath_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpatternistlocale_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpatternmatchingfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpatternplatform_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpositionalvariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qprimitives_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qprocessinginstructionconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qprojectedexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qpullbridge_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qqnameconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qqnamefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qqnametest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qqnamevalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qquantifiedexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qquerytransformparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qrangeexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qrangeiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qrangevariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qreceiverdynamiccontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qreferencecountedvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qremovaliterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qreportcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qresolveurifn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qresourcedelegator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qresourceloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qreturnorderby_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschemacomponent_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschemadatetime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschemanumeric_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschematime_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschematype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qschematypefactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsequencefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsequencegeneratingfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsequencemappingiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsequencereceiver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsequencetype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsimplecontentconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsinglecontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsingletoniterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsorttuple_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsourcelocationreflection_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstackcontextbase_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstackcontextbase_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticbaseuricontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticbaseuricontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticbaseuristore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticcompatibilitycontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticcompatibilitystore_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticcurrentcontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticfocuscontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticnamespacecontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstaticnamespacescontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qstringvaluefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsubsequenceiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsubstringfns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qsystempropertyfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtemplate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtemplateinvoker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtemplatemode_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtemplateparameterreference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtemplatepattern_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtextnodeconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtimezonefns_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtocodepointsiterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtokenizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtokenrevealer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtokensource_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtokenvalue_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtracefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtreatas_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtriplecontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtruthpredicate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtypeavailablefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qtypechecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunaryexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunioniterator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunlimitedcontainer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunparsedentitypublicidfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunparsedentityurifn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunparsedtextavailablefn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunparsedtextfn_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qunresolvedvariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quntyped_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quntypedatomic_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quntypedatomicconverter_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quriloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quserfunction_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/quserfunctioncallsite_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvalidate_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvalidationerror_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvaluecomparison_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvaluefactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvariabledeclaration_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvariableloader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qvariablereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qwithparam_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmldebug_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlpatternistcli_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlquery_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlresultitems_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlschema_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlschemavalidator_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxmlserializer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxpath10corefunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxpath20corefunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxpathhelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxquerytokenizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdalternative_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdannotated_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdannotation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdapplicationinformation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdassertion_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdattribute_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdattributegroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdattributereference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdattributeterm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdattributeuse_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdcomplextype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsddocumentation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdelement_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdfacet_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdidcache_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdidchelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdidentityconstraint_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdinstancereader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdmodelgroup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdnotation_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdparticle_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdparticlechecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdreference_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschema_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemachecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemacontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemadebugger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemahelper_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemamerger_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemaparser_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemaparsercontext_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschemaresolver_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschematoken_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdschematypesfactory_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdsimpletype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdstatemachine_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdstatemachine_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdstatemachinebuilder_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdterm_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdtypechecker_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsduserschematype_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsduserschematype_tpl_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdvalidatedxmlnodemodel_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdvalidatinginstancereader_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdwildcard_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsdxpathexpression_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxslt20corefunctions_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsltnodetest_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxsltsimplecontentconstructor_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxslttokenizer_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qxslttokenlookup_p.h
--rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.5.1/QtXmlPatterns/private/qyearmonthduration_p.h
+drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/
+drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/
+drwxr-xr-x root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractdatetime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractduration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloat_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloat_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloatcasters_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloatcasters_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloatmathematician_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfloatmathematician_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractfunctionfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractnodetest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractxmlforwarditerator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractxmlnodemodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractxmlpullprovider_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qabstractxmlreceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qacceliterators_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qacceltree_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qacceltreebuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qacceltreebuilder_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qacceltreeresourceloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qaccessorfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qaggregatefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qaggregator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qandexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qanyitemtype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qanynodetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qanysimpletype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qanytype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qanyuri_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qapplytemplate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qargumentconverter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qargumentreference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qarithmeticexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qassemblestringfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccaster_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccasterlocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccasterlocators_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccasters_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccomparator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccomparatorlocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccomparatorlocators_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomiccomparators_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomicmathematician_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomicmathematicianlocator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomicmathematicianlocators_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomicmathematicians_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomicstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomictype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomictypedispatch_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qatomizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qattributeconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qattributenamevalidator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qautoptr_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qaxisstep_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbase64binary_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbasictypesfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qboolean_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbooleanfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbuiltinatomictype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbuiltinatomictypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbuiltinnodetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbuiltinnodetype_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qbuiltintypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcachecells_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcachingiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcallsite_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcalltargetdescription_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcalltemplate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcardinality_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcardinalityverifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcastableas_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcastas_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcastingplatform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcastingplatform_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcollationchecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcoloringmessagehandler_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcoloroutput_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcombinenodes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcommentconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcommonnamespaces_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcommonsequencetypes_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcommonvalues_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparescaseaware_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparestringfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparingaggregator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparingaggregator_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparisonfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparisonplatform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomparisonplatform_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcompressedwhitespace_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcomputednamespaceconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qconstructorfunctionsfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcontextfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcontextitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcontextnodechecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcopyof_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcppcastinghelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcurrentfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcurrentitemcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qcurrentitemstore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdatetimefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdatetimefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdatetimefns_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdaytimeduration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdecimal_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdeduplicateiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdeepequalfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdelegatingdynamiccontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdelegatingnamespaceresolver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdelegatingstaticcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qderivedinteger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qderivedstring_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdeviceresourceloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdistinctiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdocumentconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdocumentcontentvalidator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdocumentfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdocumentprojector_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qduration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdynamiccontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qdynamiccontextstore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qebvextractor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qebvtype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qelementavailablefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qelementconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qemptycontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qemptyiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qemptysequence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qemptysequencetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qerrorfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qevaluationcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qevaluationcache_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexceptiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexpressiondispatch_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexpressionfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexpressionsequence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexpressionvariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexternalvariableloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qexternalvariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfirstitempredicate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfocus_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qforclause_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctionargument_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctionavailablefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctioncall_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctionfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctionfactorycollection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qfunctionsignature_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgday_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgeneralcomparison_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenerateidfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenericdynamiccontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenericnamespaceresolver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenericpredicate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenericsequencetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgenericstaticcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgmonth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgmonthday_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgyear_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qgyearmonth_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qhexbinary_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qifthenclause_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qindexofiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qinsertioniterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qinstanceof_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qinteger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qintersectiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qiodevicedelegate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qitem_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qitemmappingiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qitemtype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qitemverifier_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qletclause_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qliteral_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qliteralsequence_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qlocalnametest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qmaintainingreader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qmaintainingreader_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qmultiitemtype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamedschemacomponent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamepool_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamespacebinding_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamespaceconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamespacenametest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamespaceresolver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnamespacesupport_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qncnameconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnetworkaccessdelegator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnodebuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnodecomparison_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnodefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnodenamespaceresolver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnodesort_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnonetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnumericfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qnumerictype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qoperandsiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qoptimizationpasses_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qoptimizerblocks_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qoptimizerframework_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qorderby_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qorexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qoutputvalidator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpaircontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qparentnodeaxis_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qparsercontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpath_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpatternistlocale_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpatternmatchingfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpatternplatform_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpositionalvariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qprimitives_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qprocessinginstructionconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qprojectedexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qpullbridge_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qqnameconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qqnamefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qqnametest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qqnamevalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qquantifiedexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qquerytransformparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qrangeexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qrangeiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qrangevariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qreceiverdynamiccontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qreferencecountedvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qremovaliterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qreportcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qresolveurifn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qresourcedelegator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qresourceloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qreturnorderby_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschemacomponent_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschemadatetime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschemanumeric_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschematime_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschematype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qschematypefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsequencefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsequencegeneratingfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsequencemappingiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsequencereceiver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsequencetype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsimplecontentconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsinglecontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsingletoniterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsorttuple_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsourcelocationreflection_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstackcontextbase_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstackcontextbase_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticbaseuricontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticbaseuricontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticbaseuristore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticcompatibilitycontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticcompatibilitystore_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticcurrentcontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticfocuscontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticnamespacecontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstaticnamespacescontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qstringvaluefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsubsequenceiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsubstringfns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qsystempropertyfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtemplate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtemplateinvoker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtemplatemode_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtemplateparameterreference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtemplatepattern_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtextnodeconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtimezonefns_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtocodepointsiterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtokenizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtokenrevealer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtokensource_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtokenvalue_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtracefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtreatas_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtriplecontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtruthpredicate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtypeavailablefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qtypechecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunaryexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunioniterator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunlimitedcontainer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunparsedentitypublicidfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunparsedentityurifn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunparsedtextavailablefn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunparsedtextfn_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qunresolvedvariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quntyped_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quntypedatomic_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quntypedatomicconverter_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quriloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quserfunction_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/quserfunctioncallsite_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvalidate_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvalidationerror_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvaluecomparison_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvaluefactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvariabledeclaration_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvariableloader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qvariablereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qwithparam_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmldebug_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlpatternistcli_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlquery_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlresultitems_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlschema_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlschemavalidator_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxmlserializer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxpath10corefunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxpath20corefunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxpathhelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxquerytokenizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdalternative_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdannotated_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdannotation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdapplicationinformation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdassertion_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdattribute_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdattributegroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdattributereference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdattributeterm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdattributeuse_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdcomplextype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsddocumentation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdelement_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdfacet_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdidcache_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdidchelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdidentityconstraint_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdinstancereader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdmodelgroup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdnotation_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdparticle_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdparticlechecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdreference_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschema_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemachecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemacontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemadebugger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemahelper_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemamerger_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemaparser_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemaparsercontext_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschemaresolver_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschematoken_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdschematypesfactory_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdsimpletype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdstatemachine_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdstatemachine_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdstatemachinebuilder_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdterm_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdtypechecker_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsduserschematype_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsduserschematype_tpl_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdvalidatedxmlnodemodel_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdvalidatinginstancereader_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdwildcard_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsdxpathexpression_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxslt20corefunctions_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsltnodetest_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxsltsimplecontentconstructor_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxslttokenizer_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qxslttokenlookup_p.h
+-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/5.6.0/QtXmlPatterns/private/qyearmonthduration_p.h
-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/QAbstractMessageHandler
-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/QAbstractUriResolver
-rw-r--r-- root/root usr/share/qt5/include/QtXmlPatterns/QAbstractXmlNodeModel
@@ -5860,9 +5772,6 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5/Qt5Config.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5/Qt5ConfigVersion.cmake
-drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DCollision/
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DCollision/Qt53DCollisionConfig.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DCollision/Qt53DCollisionConfigVersion.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DCore/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DCore/Qt53DCoreConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DCore/Qt53DCoreConfigVersion.cmake
@@ -5875,13 +5784,17 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DLogic/
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DQuick/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuick/Qt53DQuickConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuick/Qt53DQuickConfigVersion.cmake
-drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DQuickRenderer/
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickRenderer/Qt53DQuickRendererConfig.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickRenderer/Qt53DQuickRendererConfigVersion.cmake
-drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DRenderer/
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRenderer/Qt53DRendererConfig.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRenderer/Qt53DRendererConfigVersion.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRenderer/Qt53DRenderer_GLTFParser.cmake
+drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DQuickInput/
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickInput/Qt53DQuickInputConfig.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickInput/Qt53DQuickInputConfigVersion.cmake
+drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DQuickRender/
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DQuickRender/Qt53DQuickRenderConfigVersion.cmake
+drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt53DRender/
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRender/Qt53DRenderConfig.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRender/Qt53DRenderConfigVersion.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRender/Qt53DRender_AssimpParserPlugin.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt53DRender/Qt53DRender_GLTFSceneParserPlugin.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Bluetooth/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Bluetooth/Qt5BluetoothConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Bluetooth/Qt5BluetoothConfigVersion.cmake
@@ -5900,15 +5813,9 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5DBus/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5DBus/Qt5DBusConfigExtras.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5DBus/Qt5DBusConfigVersion.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5DBus/Qt5DBusMacros.cmake
-drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Declarative/
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Declarative/Qt5DeclarativeConfig.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Declarative/Qt5DeclarativeConfigVersion.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Declarative/Qt5Declarative_QTcpServerConnection.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Declarative/Qt5Declarative_QtQuick1Plugin.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Designer/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Designer/Qt5DesignerConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Designer/Qt5DesignerConfigVersion.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Designer/Qt5Designer_QDeclarativeViewPlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Designer/Qt5Designer_QQuickWidgetPlugin.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Enginio/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Enginio/Qt5EnginioConfig.cmake
@@ -5930,7 +5837,6 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Gui/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QLinuxFbIntegrationPlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Gui/Qt5Gui_QMinimalEglIntegrationPlugin.cmake
@@ -5988,15 +5894,22 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5OpenGLExtensions/
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Positioning/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Positioning/Qt5PositioningConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Positioning/Qt5PositioningConfigVersion.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryPoll.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5PrintSupport/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Qml/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5QmlConfig.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnection.cmake
--rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QtQuick2Plugin.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Quick/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Quick/Qt5QuickConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake
@@ -6019,6 +5932,12 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5Sensors/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Sensors/Qt5Sensors_QShakeSensorGesturePlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Sensors/Qt5Sensors_QtSensorGesturePlugin.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5Sensors/Qt5Sensors_genericSensorPlugin.cmake
+drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5SerialBus/
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialBus/Qt5SerialBusConfig.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialBus/Qt5SerialBusConfigVersion.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialBus/Qt5SerialBus_PeakCanBusPlugin.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialBus/Qt5SerialBus_SocketCanBusPlugin.cmake
+-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialBus/Qt5SerialBus_TinyCanBusPlugin.cmake
drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5SerialPort/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5SerialPort/Qt5SerialPortConfigVersion.cmake
@@ -6062,163 +5981,166 @@ drwxr-xr-x root/root usr/share/qt5/lib/cmake/Qt5XmlPatterns/
-rw-r--r-- root/root usr/share/qt5/lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfigVersion.cmake
-rw-r--r-- root/root usr/share/qt5/lib/libEnginio.la
-rw-r--r-- root/root usr/share/qt5/lib/libEnginio.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so -> libEnginio.so.1.2.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so.1 -> libEnginio.so.1.2.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so.1.2 -> libEnginio.so.1.2.1
--rwxr-xr-x root/root usr/share/qt5/lib/libEnginio.so.1.2.1
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DCollision.la
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DCollision.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCollision.so -> libQt53DCollision.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCollision.so.5 -> libQt53DCollision.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCollision.so.5.5 -> libQt53DCollision.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DCollision.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so -> libEnginio.so.1.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so.1 -> libEnginio.so.1.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libEnginio.so.1.6 -> libEnginio.so.1.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libEnginio.so.1.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DCore.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DCore.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so -> libQt53DCore.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so.5 -> libQt53DCore.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so.5.5 -> libQt53DCore.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DCore.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so -> libQt53DCore.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so.5 -> libQt53DCore.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DCore.so.5.6 -> libQt53DCore.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DCore.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DInput.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DInput.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so -> libQt53DInput.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so.5 -> libQt53DInput.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so.5.5 -> libQt53DInput.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DInput.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so -> libQt53DInput.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so.5 -> libQt53DInput.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DInput.so.5.6 -> libQt53DInput.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DInput.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DLogic.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DLogic.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so -> libQt53DLogic.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so.5 -> libQt53DLogic.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so.5.5 -> libQt53DLogic.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DLogic.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so -> libQt53DLogic.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so.5 -> libQt53DLogic.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DLogic.so.5.6 -> libQt53DLogic.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DLogic.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuick.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuick.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so -> libQt53DQuick.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so.5 -> libQt53DQuick.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so.5.5 -> libQt53DQuick.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DQuick.so.5.5.1
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickRenderer.la
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickRenderer.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRenderer.so -> libQt53DQuickRenderer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRenderer.so.5 -> libQt53DQuickRenderer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRenderer.so.5.5 -> libQt53DQuickRenderer.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DQuickRenderer.so.5.5.1
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DRenderer.la
--rw-r--r-- root/root usr/share/qt5/lib/libQt53DRenderer.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRenderer.so -> libQt53DRenderer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRenderer.so.5 -> libQt53DRenderer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRenderer.so.5.5 -> libQt53DRenderer.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt53DRenderer.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so -> libQt53DQuick.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so.5 -> libQt53DQuick.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuick.so.5.6 -> libQt53DQuick.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DQuick.so.5.6.0
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickInput.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickInput.prl
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickInput.so -> libQt53DQuickInput.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickInput.so.5 -> libQt53DQuickInput.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickInput.so.5.6 -> libQt53DQuickInput.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DQuickInput.so.5.6.0
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickRender.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DQuickRender.prl
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRender.so -> libQt53DQuickRender.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRender.so.5 -> libQt53DQuickRender.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DQuickRender.so.5.6 -> libQt53DQuickRender.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DQuickRender.so.5.6.0
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DRender.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt53DRender.prl
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRender.so -> libQt53DRender.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRender.so.5 -> libQt53DRender.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt53DRender.so.5.6 -> libQt53DRender.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt53DRender.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Bluetooth.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Bluetooth.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so -> libQt5Bluetooth.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so.5 -> libQt5Bluetooth.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so.5.5 -> libQt5Bluetooth.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Bluetooth.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so -> libQt5Bluetooth.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so.5 -> libQt5Bluetooth.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Bluetooth.so.5.6 -> libQt5Bluetooth.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Bluetooth.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Bootstrap.a
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Bootstrap.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Bootstrap.prl
-rw-r--r-- root/root usr/share/qt5/lib/libQt5CLucene.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5CLucene.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so -> libQt5CLucene.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so.5 -> libQt5CLucene.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so.5.5 -> libQt5CLucene.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5CLucene.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so -> libQt5CLucene.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so.5 -> libQt5CLucene.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5CLucene.so.5.6 -> libQt5CLucene.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5CLucene.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Concurrent.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Concurrent.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so -> libQt5Concurrent.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so.5 -> libQt5Concurrent.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so.5.5 -> libQt5Concurrent.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Concurrent.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so -> libQt5Concurrent.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so.5 -> libQt5Concurrent.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Concurrent.so.5.6 -> libQt5Concurrent.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Concurrent.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Core.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Core.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so -> libQt5Core.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so.5 -> libQt5Core.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so.5.5 -> libQt5Core.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Core.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so -> libQt5Core.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so.5 -> libQt5Core.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Core.so.5.6 -> libQt5Core.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Core.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5DBus.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5DBus.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so -> libQt5DBus.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so.5 -> libQt5DBus.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so.5.5 -> libQt5DBus.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5DBus.so.5.5.1
--rw-r--r-- root/root usr/share/qt5/lib/libQt5Declarative.la
--rw-r--r-- root/root usr/share/qt5/lib/libQt5Declarative.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Declarative.so -> libQt5Declarative.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Declarative.so.5 -> libQt5Declarative.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Declarative.so.5.5 -> libQt5Declarative.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Declarative.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so -> libQt5DBus.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so.5 -> libQt5DBus.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DBus.so.5.6 -> libQt5DBus.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5DBus.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Designer.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Designer.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so -> libQt5Designer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so.5 -> libQt5Designer.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so.5.5 -> libQt5Designer.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Designer.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so -> libQt5Designer.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so.5 -> libQt5Designer.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Designer.so.5.6 -> libQt5Designer.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Designer.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5DesignerComponents.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5DesignerComponents.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so -> libQt5DesignerComponents.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5 -> libQt5DesignerComponents.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5.5 -> libQt5DesignerComponents.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so -> libQt5DesignerComponents.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5 -> libQt5DesignerComponents.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5.6 -> libQt5DesignerComponents.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5DesignerComponents.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so -> libQt5EglDeviceIntegration.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5 -> libQt5EglDeviceIntegration.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5.5 -> libQt5EglDeviceIntegration.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so -> libQt5EglDeviceIntegration.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5 -> libQt5EglDeviceIntegration.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5.6 -> libQt5EglDeviceIntegration.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5EglDeviceIntegration.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Gui.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Gui.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so -> libQt5Gui.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so.5 -> libQt5Gui.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so.5.5 -> libQt5Gui.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Gui.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so -> libQt5Gui.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so.5 -> libQt5Gui.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Gui.so.5.6 -> libQt5Gui.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Gui.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Help.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Help.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so -> libQt5Help.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so.5 -> libQt5Help.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so.5.5 -> libQt5Help.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Help.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so -> libQt5Help.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so.5 -> libQt5Help.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Help.so.5.6 -> libQt5Help.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Help.so.5.6.0
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5LabsControls.a
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5LabsControls.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5LabsControls.prl
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5LabsTemplates.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5LabsTemplates.prl
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5LabsTemplates.so -> libQt5LabsTemplates.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5LabsTemplates.so.5 -> libQt5LabsTemplates.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5LabsTemplates.so.5.6 -> libQt5LabsTemplates.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5LabsTemplates.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Location.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Location.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so -> libQt5Location.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so.5 -> libQt5Location.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so.5.5 -> libQt5Location.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Location.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so -> libQt5Location.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so.5 -> libQt5Location.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Location.so.5.6 -> libQt5Location.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Location.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Multimedia.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Multimedia.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so -> libQt5Multimedia.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so.5 -> libQt5Multimedia.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so.5.5 -> libQt5Multimedia.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Multimedia.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so -> libQt5Multimedia.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so.5 -> libQt5Multimedia.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Multimedia.so.5.6 -> libQt5Multimedia.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Multimedia.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so -> libQt5MultimediaQuick_p.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5 -> libQt5MultimediaQuick_p.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5.5 -> libQt5MultimediaQuick_p.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so -> libQt5MultimediaQuick_p.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5 -> libQt5MultimediaQuick_p.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5.6 -> libQt5MultimediaQuick_p.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5MultimediaQuick_p.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5MultimediaWidgets.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5MultimediaWidgets.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so -> libQt5MultimediaWidgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5 -> libQt5MultimediaWidgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5.5 -> libQt5MultimediaWidgets.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so -> libQt5MultimediaWidgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5 -> libQt5MultimediaWidgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5.6 -> libQt5MultimediaWidgets.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5MultimediaWidgets.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Network.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Network.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so -> libQt5Network.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so.5 -> libQt5Network.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so.5.5 -> libQt5Network.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Network.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so -> libQt5Network.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so.5 -> libQt5Network.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Network.so.5.6 -> libQt5Network.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Network.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Nfc.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Nfc.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so -> libQt5Nfc.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so.5 -> libQt5Nfc.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so.5.5 -> libQt5Nfc.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Nfc.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so -> libQt5Nfc.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so.5 -> libQt5Nfc.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Nfc.so.5.6 -> libQt5Nfc.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Nfc.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5OpenGL.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5OpenGL.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so -> libQt5OpenGL.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so.5 -> libQt5OpenGL.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so.5.5 -> libQt5OpenGL.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5OpenGL.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so -> libQt5OpenGL.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so.5 -> libQt5OpenGL.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so.5.6 -> libQt5OpenGL.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5OpenGL.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5OpenGLExtensions.a
-rw-r--r-- root/root usr/share/qt5/lib/libQt5OpenGLExtensions.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5OpenGLExtensions.prl
@@ -6227,136 +6149,142 @@ lrwxrwxrwx root/root usr/share/qt5/lib/libQt5OpenGL.so.5.5 -> libQt5OpenGL.so.5.
-rw-r--r-- root/root usr/share/qt5/lib/libQt5PlatformSupport.prl
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Positioning.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Positioning.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so -> libQt5Positioning.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so.5 -> libQt5Positioning.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so.5.5 -> libQt5Positioning.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Positioning.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so -> libQt5Positioning.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so.5 -> libQt5Positioning.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Positioning.so.5.6 -> libQt5Positioning.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Positioning.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5PrintSupport.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5PrintSupport.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so -> libQt5PrintSupport.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so.5 -> libQt5PrintSupport.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so.5.5 -> libQt5PrintSupport.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5PrintSupport.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so -> libQt5PrintSupport.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so.5 -> libQt5PrintSupport.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5PrintSupport.so.5.6 -> libQt5PrintSupport.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5PrintSupport.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Qml.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Qml.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so -> libQt5Qml.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so.5 -> libQt5Qml.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so.5.5 -> libQt5Qml.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Qml.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so -> libQt5Qml.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so.5 -> libQt5Qml.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Qml.so.5.6 -> libQt5Qml.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Qml.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QmlDevTools.a
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QmlDevTools.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QmlDevTools.prl
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Quick.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Quick.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so -> libQt5Quick.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so.5 -> libQt5Quick.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so.5.5 -> libQt5Quick.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Quick.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so -> libQt5Quick.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so.5 -> libQt5Quick.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Quick.so.5.6 -> libQt5Quick.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Quick.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickParticles.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickParticles.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so -> libQt5QuickParticles.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so.5 -> libQt5QuickParticles.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so.5.5 -> libQt5QuickParticles.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickParticles.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so -> libQt5QuickParticles.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so.5 -> libQt5QuickParticles.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickParticles.so.5.6 -> libQt5QuickParticles.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickParticles.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickTest.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickTest.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so -> libQt5QuickTest.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so.5 -> libQt5QuickTest.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so.5.5 -> libQt5QuickTest.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickTest.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so -> libQt5QuickTest.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so.5 -> libQt5QuickTest.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickTest.so.5.6 -> libQt5QuickTest.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickTest.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickWidgets.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5QuickWidgets.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so -> libQt5QuickWidgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5 -> libQt5QuickWidgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5.5 -> libQt5QuickWidgets.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so -> libQt5QuickWidgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5 -> libQt5QuickWidgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5.6 -> libQt5QuickWidgets.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5QuickWidgets.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Script.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Script.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so -> libQt5Script.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so.5 -> libQt5Script.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so.5.5 -> libQt5Script.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Script.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so -> libQt5Script.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so.5 -> libQt5Script.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Script.so.5.6 -> libQt5Script.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Script.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5ScriptTools.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5ScriptTools.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so -> libQt5ScriptTools.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so.5 -> libQt5ScriptTools.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so.5.5 -> libQt5ScriptTools.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5ScriptTools.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so -> libQt5ScriptTools.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so.5 -> libQt5ScriptTools.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5ScriptTools.so.5.6 -> libQt5ScriptTools.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5ScriptTools.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Sensors.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Sensors.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so -> libQt5Sensors.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so.5 -> libQt5Sensors.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so.5.5 -> libQt5Sensors.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Sensors.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so -> libQt5Sensors.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so.5 -> libQt5Sensors.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sensors.so.5.6 -> libQt5Sensors.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Sensors.so.5.6.0
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5SerialBus.la
+-rw-r--r-- root/root usr/share/qt5/lib/libQt5SerialBus.prl
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialBus.so -> libQt5SerialBus.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialBus.so.5 -> libQt5SerialBus.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialBus.so.5.6 -> libQt5SerialBus.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5SerialBus.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5SerialPort.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5SerialPort.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so -> libQt5SerialPort.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so.5 -> libQt5SerialPort.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so.5.5 -> libQt5SerialPort.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5SerialPort.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so -> libQt5SerialPort.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so.5 -> libQt5SerialPort.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5SerialPort.so.5.6 -> libQt5SerialPort.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5SerialPort.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Sql.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Sql.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so -> libQt5Sql.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so.5 -> libQt5Sql.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so.5.5 -> libQt5Sql.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Sql.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so -> libQt5Sql.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so.5 -> libQt5Sql.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Sql.so.5.6 -> libQt5Sql.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Sql.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Svg.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Svg.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so -> libQt5Svg.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so.5 -> libQt5Svg.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so.5.5 -> libQt5Svg.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Svg.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so -> libQt5Svg.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so.5 -> libQt5Svg.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Svg.so.5.6 -> libQt5Svg.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Svg.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Test.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Test.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so -> libQt5Test.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so.5 -> libQt5Test.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so.5.5 -> libQt5Test.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Test.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so -> libQt5Test.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so.5 -> libQt5Test.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Test.so.5.6 -> libQt5Test.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Test.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5UiTools.a
-rw-r--r-- root/root usr/share/qt5/lib/libQt5UiTools.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5UiTools.prl
-rw-r--r-- root/root usr/share/qt5/lib/libQt5WebChannel.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5WebChannel.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so -> libQt5WebChannel.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so.5 -> libQt5WebChannel.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so.5.5 -> libQt5WebChannel.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5WebChannel.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so -> libQt5WebChannel.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so.5 -> libQt5WebChannel.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebChannel.so.5.6 -> libQt5WebChannel.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5WebChannel.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5WebSockets.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5WebSockets.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so -> libQt5WebSockets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so.5 -> libQt5WebSockets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so.5.5 -> libQt5WebSockets.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5WebSockets.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so -> libQt5WebSockets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so.5 -> libQt5WebSockets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5WebSockets.so.5.6 -> libQt5WebSockets.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5WebSockets.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Widgets.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Widgets.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so -> libQt5Widgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so.5 -> libQt5Widgets.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so.5.5 -> libQt5Widgets.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Widgets.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so -> libQt5Widgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so.5 -> libQt5Widgets.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Widgets.so.5.6 -> libQt5Widgets.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Widgets.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5X11Extras.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5X11Extras.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so -> libQt5X11Extras.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so.5 -> libQt5X11Extras.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so.5.5 -> libQt5X11Extras.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5X11Extras.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so -> libQt5X11Extras.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so.5 -> libQt5X11Extras.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5X11Extras.so.5.6 -> libQt5X11Extras.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5X11Extras.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5XcbQpa.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5XcbQpa.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so -> libQt5XcbQpa.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so.5 -> libQt5XcbQpa.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so.5.5 -> libQt5XcbQpa.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5XcbQpa.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so -> libQt5XcbQpa.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so.5 -> libQt5XcbQpa.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XcbQpa.so.5.6 -> libQt5XcbQpa.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5XcbQpa.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Xml.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5Xml.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so -> libQt5Xml.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so.5 -> libQt5Xml.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so.5.5 -> libQt5Xml.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5Xml.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so -> libQt5Xml.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so.5 -> libQt5Xml.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5Xml.so.5.6 -> libQt5Xml.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5Xml.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libQt5XmlPatterns.la
-rw-r--r-- root/root usr/share/qt5/lib/libQt5XmlPatterns.prl
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so -> libQt5XmlPatterns.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5 -> libQt5XmlPatterns.so.5.5.1
-lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5.5 -> libQt5XmlPatterns.so.5.5.1
--rwxr-xr-x root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5.5.1
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so -> libQt5XmlPatterns.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5 -> libQt5XmlPatterns.so.5.6.0
+lrwxrwxrwx root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5.6 -> libQt5XmlPatterns.so.5.6.0
+-rwxr-xr-x root/root usr/share/qt5/lib/libQt5XmlPatterns.so.5.6.0
-rw-r--r-- root/root usr/share/qt5/lib/libqgsttools_p.prl
lrwxrwxrwx root/root usr/share/qt5/lib/libqgsttools_p.so -> libqgsttools_p.so.1.0.0
lrwxrwxrwx root/root usr/share/qt5/lib/libqgsttools_p.so.1 -> libqgsttools_p.so.1.0.0
@@ -6368,7 +6296,7 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/common/aix/
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/aix/qplatformdefs.h
drwxr-xr-x root/root usr/share/qt5/mkspecs/common/android/
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/android/qplatformdefs.h
--rw-r--r-- root/root usr/share/qt5/mkspecs/common/armcc.conf
+-rw-r--r-- root/root usr/share/qt5/mkspecs/common/angle.conf
drwxr-xr-x root/root usr/share/qt5/mkspecs/common/c89/
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/c89/qplatformdefs.h
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/clang-mac.conf
@@ -6389,6 +6317,7 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/common/ios/GLES2/
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/linux-android.conf
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/linux.conf
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/llvm.conf
+-rw-r--r-- root/root usr/share/qt5/mkspecs/common/msvc-base.conf
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/msvc-desktop.conf
drwxr-xr-x root/root usr/share/qt5/mkspecs/common/nacl/
-rw-r--r-- root/root usr/share/qt5/mkspecs/common/nacl/g++-nacl32.conf
@@ -6437,8 +6366,6 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/features/android/
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/android/android.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/android/android_deployment_settings.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/build_pass.prf
--rw-r--r-- root/root usr/share/qt5/mkspecs/features/c++11.prf
--rw-r--r-- root/root usr/share/qt5/mkspecs/features/c++14.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/cmake_functions.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/configure.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/create_cmake.prf
@@ -6454,6 +6381,10 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/features/data/cmake/
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/data/cmake/Qt5ConfigVersion.cmake.in
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/data/dummy.cpp
+drwxr-xr-x root/root usr/share/qt5/mkspecs/features/data/mac/
+-rwxr-xr-x root/root usr/share/qt5/mkspecs/features/data/mac/objc_namespace.sh
+drwxr-xr-x root/root usr/share/qt5/mkspecs/features/data/unix/
+-rw-r--r-- root/root usr/share/qt5/mkspecs/features/data/unix/findclasslist.pl
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/dbusadaptors.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/dbuscommon.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/dbusinterfaces.prf
@@ -6477,8 +6408,10 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/features/data/cmake/
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/ltcg.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/moc.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/no_debug_info.prf
+-rw-r--r-- root/root usr/share/qt5/mkspecs/features/plugin_bundle.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/precompile_header.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qfeatures.prf
+-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qgltf.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qlalr.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qml1_module.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qml1_plugin.prf
@@ -6494,6 +6427,7 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/features/qpa/
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_app.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_build_config.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_build_paths.prf
+-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_clear_installs.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_common.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_config.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/qt_docs.prf
@@ -6544,7 +6478,6 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/features/unix/
drwxr-xr-x root/root usr/share/qt5/mkspecs/features/winrt/
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/winrt/console.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/winrt/default_pre.prf
--rw-r--r-- root/root usr/share/qt5/mkspecs/features/winrt/font_deployment.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/winrt/package_manifest.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/xctest.prf
-rw-r--r-- root/root usr/share/qt5/mkspecs/features/yacc.prf
@@ -6558,8 +6491,6 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/linux-g++/
-rw-r--r-- root/root usr/share/qt5/mkspecs/linux-g++/qmake.conf
-rw-r--r-- root/root usr/share/qt5/mkspecs/linux-g++/qplatformdefs.h
drwxr-xr-x root/root usr/share/qt5/mkspecs/modules/
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dcollision.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dcollision_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dcore.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dcore_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dinput.pri
@@ -6568,10 +6499,12 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/modules/
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dlogic_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquick.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquick_private.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickrenderer.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickrenderer_private.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3drenderer.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3drenderer_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickinput.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickinput_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickrender.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3dquickrender_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3drender.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_3drender_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_bluetooth.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_bluetooth_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_bootstrap_private.pri
@@ -6582,8 +6515,6 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/modules/
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_core_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_dbus.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_dbus_private.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_declarative.pri
--rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_declarative_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_designer.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_designer_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_designercomponents_private.pri
@@ -6594,6 +6525,8 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/modules/
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_gui_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_help.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_help_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_labscontrols_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_labstemplates_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_location.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_location_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_multimedia.pri
@@ -6630,6 +6563,8 @@ drwxr-xr-x root/root usr/share/qt5/mkspecs/modules/
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_scripttools_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_sensors.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_sensors_private.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_serialbus.pri
+-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_serialbus_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_serialport.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_serialport_private.pri
-rw-r--r-- root/root usr/share/qt5/mkspecs/modules/qt_lib_sql.pri
@@ -6663,8 +6598,11 @@ drwxr-xr-x root/root usr/share/qt5/plugins/bearer/
-rwxr-xr-x root/root usr/share/qt5/plugins/bearer/libqconnmanbearer.so
-rwxr-xr-x root/root usr/share/qt5/plugins/bearer/libqgenericbearer.so
-rwxr-xr-x root/root usr/share/qt5/plugins/bearer/libqnmbearer.so
+drwxr-xr-x root/root usr/share/qt5/plugins/canbus/
+-rwxr-xr-x root/root usr/share/qt5/plugins/canbus/libqtpeakcanbus.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/canbus/libqtsocketcanbus.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/canbus/libqttinycanbus.so
drwxr-xr-x root/root usr/share/qt5/plugins/designer/
--rwxr-xr-x root/root usr/share/qt5/plugins/designer/libqdeclarativeview.so
-rwxr-xr-x root/root usr/share/qt5/plugins/designer/libqquickwidget.so
drwxr-xr-x root/root usr/share/qt5/plugins/egldeviceintegrations/
-rwxr-xr-x root/root usr/share/qt5/plugins/egldeviceintegrations/libqeglfs-kms-integration.so
@@ -6686,7 +6624,6 @@ drwxr-xr-x root/root usr/share/qt5/plugins/imageformats/
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqgif.so
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqicns.so
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqico.so
--rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqjp2.so
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqjpeg.so
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqmng.so
-rwxr-xr-x root/root usr/share/qt5/plugins/imageformats/libqsvg.so
@@ -6712,14 +6649,18 @@ drwxr-xr-x root/root usr/share/qt5/plugins/platforms/
drwxr-xr-x root/root usr/share/qt5/plugins/playlistformats/
-rwxr-xr-x root/root usr/share/qt5/plugins/playlistformats/libqtmultimedia_m3u.so
drwxr-xr-x root/root usr/share/qt5/plugins/position/
+-rwxr-xr-x root/root usr/share/qt5/plugins/position/libqtposition_geoclue.so
-rwxr-xr-x root/root usr/share/qt5/plugins/position/libqtposition_positionpoll.so
-drwxr-xr-x root/root usr/share/qt5/plugins/qml1tooling/
--rwxr-xr-x root/root usr/share/qt5/plugins/qml1tooling/libqmldbg_inspector.so
--rwxr-xr-x root/root usr/share/qt5/plugins/qml1tooling/libqmldbg_tcp_qtdeclarative.so
drwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/
--rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_qtquick2.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_debugger.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_inspector.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_local.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_native.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_profiler.so
+-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_server.so
-rwxr-xr-x root/root usr/share/qt5/plugins/qmltooling/libqmldbg_tcp.so
drwxr-xr-x root/root usr/share/qt5/plugins/sceneparsers/
+-rwxr-xr-x root/root usr/share/qt5/plugins/sceneparsers/libassimpsceneparser.so
-rwxr-xr-x root/root usr/share/qt5/plugins/sceneparsers/libgltfsceneparser.so
drwxr-xr-x root/root usr/share/qt5/plugins/sensorgestures/
-rwxr-xr-x root/root usr/share/qt5/plugins/sensorgestures/libqtsensorgestures_plugin.so
@@ -6741,6 +6682,155 @@ drwxr-xr-x root/root usr/share/qt5/qml/Qt/
drwxr-xr-x root/root usr/share/qt5/qml/Qt/WebSockets/
-rw-r--r-- root/root usr/share/qt5/qml/Qt/WebSockets/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/calendar/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/calendar/DayOfWeekRow.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/calendar/MonthGrid.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/calendar/WeekNumberColumn.qml
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/calendar/libqtlabscalendarplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/calendar/plugins.qmltypes
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/calendar/qmldir
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ApplicationWindow.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/BusyIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Button.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/CheckBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ComboBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Dial.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Drawer.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Frame.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/GroupBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ItemDelegate.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Label.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Menu.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/MenuItem.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Page.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/PageIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Pane.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Popup.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ProgressBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/RadioButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/RangeSlider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ScrollBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ScrollIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Slider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/SpinBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/StackView.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/SwipeView.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Switch.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/TabBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/TabButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/TextArea.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/TextField.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ToolBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/ToolButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/Tumbler.qml
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/designer/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/BusyIndicatorSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ButtonSection.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ButtonSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/CheckBoxSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ComboBoxSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ControlSection.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ControlSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/DialSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/FrameSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/GroupBoxSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ItemDelegateSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/LabelSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/PaddingSection.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/PageIndicatorSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/PaneSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ProgressBarSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/RadioButtonSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/SliderSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/SpinBoxSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/SwitchSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/TextAreaSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/TextFieldSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ToolBarSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/ToolButtonSpecifics.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/TumblerSpecifics.qml
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/designer/images/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/images/todo.png
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/images/todo16.png
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/designer/qtlabscontrols.metainfo
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/libqtlabscontrolsplugin.so
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/material/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ApplicationWindow.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/BusyIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Button.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/CheckBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ComboBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Dial.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Drawer.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Frame.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/GroupBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ItemDelegate.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Label.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Menu.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/MenuItem.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Page.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/PageIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Pane.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Popup.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ProgressBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/RadioButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/RangeSlider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Ripple.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ScrollBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ScrollIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Slider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/SliderHandle.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/SpinBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/StackView.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/SwipeView.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Switch.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/TabBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/TabButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/TextArea.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/TextField.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ToolBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/ToolButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/Tumbler.qml
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/material/libqtlabsmaterialstyleplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/material/qmldir
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/plugins.qmltypes
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/qmldir
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/universal/
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ApplicationWindow.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/BusyIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Button.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/CheckBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ComboBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Dial.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Frame.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/GroupBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ItemDelegate.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Label.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Menu.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/MenuItem.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Page.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/PageIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Pane.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Popup.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ProgressBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/RadioButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/RangeSlider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ScrollBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ScrollIndicator.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Slider.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/SpinBox.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/StackView.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Switch.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/TabBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/TabButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/TextArea.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/TextField.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ToolBar.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/ToolButton.qml
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/Tumbler.qml
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/controls/universal/libqtlabsuniversalstyleplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/controls/universal/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/folderlistmodel/
-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so
-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/folderlistmodel/plugins.qmltypes
@@ -6749,33 +6839,28 @@ drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/settings/
-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/settings/libqmlsettingsplugin.so
-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/settings/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/settings/qmldir
+drwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/templates/
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt/labs/templates/libqtlabstemplatesplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/templates/plugins.qmltypes
+-rw-r--r-- root/root usr/share/qt5/qml/Qt/labs/templates/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/
-drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Collision/
--rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Collision/libquick3dcollisionplugin.so
--rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Collision/qmldir
+drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Core/
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Core/libquick3dcoreplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Core/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Input/
-rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Input/libquick3dinputplugin.so
-rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Input/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Logic/
-rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Logic/libquick3dlogicplugin.so
-rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Logic/qmldir
-drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Renderer/
--rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Renderer/libquick3drendererplugin.so
--rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Renderer/qmldir
--rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/libquick3dcoreplugin.so
--rw-r--r-- root/root usr/share/qt5/qml/Qt3D/qmldir
+drwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Render/
+-rwxr-xr-x root/root usr/share/qt5/qml/Qt3D/Render/libquick3drenderplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/Qt3D/Render/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/QtBluetooth/
-rwxr-xr-x root/root usr/share/qt5/qml/QtBluetooth/libdeclarative_bluetooth.so
-rw-r--r-- root/root usr/share/qt5/qml/QtBluetooth/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/QtBluetooth/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/QtCanvas3D/
-drwxr-xr-x root/root usr/share/qt5/qml/QtCanvas3D/designer/
-drwxr-xr-x root/root usr/share/qt5/qml/QtCanvas3D/designer/default/
--rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/designer/default/Canvas3D.qml
-drwxr-xr-x root/root usr/share/qt5/qml/QtCanvas3D/designer/images/
--rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/designer/images/canvas3d-icon.png
--rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/designer/images/canvas3d-icon16.png
--rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/designer/qtcanvas3d.metainfo
-rwxr-xr-x root/root usr/share/qt5/qml/QtCanvas3D/libqtcanvas3d.so
-rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/QtCanvas3D/qmldir
@@ -6806,6 +6891,7 @@ drwxr-xr-x root/root usr/share/qt5/qml/QtGraphicalEffects/
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/ThresholdMask.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/ZoomBlur.qml
drwxr-xr-x root/root usr/share/qt5/qml/QtGraphicalEffects/private/
+-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/DropShadowBase.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/FastGlow.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/FastInnerShadow.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/FastMaskedBlur.qml
@@ -6813,7 +6899,8 @@ drwxr-xr-x root/root usr/share/qt5/qml/QtGraphicalEffects/private/
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/GaussianGlow.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/GaussianInnerShadow.qml
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/GaussianMaskedBlur.qml
--rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/SourceProxy.qml
+-rwxr-xr-x root/root usr/share/qt5/qml/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.so
+-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/private/qmldir
-rw-r--r-- root/root usr/share/qt5/qml/QtGraphicalEffects/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/QtLocation/
-rwxr-xr-x root/root usr/share/qt5/qml/QtLocation/libdeclarative_location.so
@@ -6841,6 +6928,8 @@ drwxr-xr-x root/root usr/share/qt5/qml/QtQml/StateMachine/
-rwxr-xr-x root/root usr/share/qt5/qml/QtQml/StateMachine/libqtqmlstatemachine.so
-rw-r--r-- root/root usr/share/qt5/qml/QtQml/StateMachine/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/QtQml/StateMachine/qmldir
+-rw-r--r-- root/root usr/share/qt5/qml/QtQml/plugins.qmltypes
+-rw-r--r-- root/root usr/share/qt5/qml/QtQml/qmldir
drwxr-xr-x root/root usr/share/qt5/qml/QtQuick.2/
-rwxr-xr-x root/root usr/share/qt5/qml/QtQuick.2/libqtquick2plugin.so
-rw-r--r-- root/root usr/share/qt5/qml/QtQuick.2/plugins.qmltypes
@@ -7022,6 +7111,7 @@ drwxr-xr-x root/root usr/share/qt5/qml/QtQuick/Controls/Styles/Flat/
drwxr-xr-x root/root usr/share/qt5/qml/QtQuick/Dialogs/
drwxr-xr-x root/root usr/share/qt5/qml/QtQuick/Dialogs/Private/
-rwxr-xr-x root/root usr/share/qt5/qml/QtQuick/Dialogs/Private/libdialogsprivateplugin.so
+-rw-r--r-- root/root usr/share/qt5/qml/QtQuick/Dialogs/Private/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/QtQuick/Dialogs/Private/qmldir
-rwxr-xr-x root/root usr/share/qt5/qml/QtQuick/Dialogs/libdialogplugin.so
-rw-r--r-- root/root usr/share/qt5/qml/QtQuick/Dialogs/plugins.qmltypes
@@ -7105,3 +7195,4 @@ drwxr-xr-x root/root usr/share/qt5/qml/QtWebSockets/
-rwxr-xr-x root/root usr/share/qt5/qml/QtWebSockets/libdeclarative_qmlwebsockets.so
-rw-r--r-- root/root usr/share/qt5/qml/QtWebSockets/plugins.qmltypes
-rw-r--r-- root/root usr/share/qt5/qml/QtWebSockets/qmldir
+-rw-r--r-- root/root usr/share/qt5/qml/builtins.qmltypes
diff --git a/qt5/.md5sum b/qt5/.md5sum
index 0ed4ced..5e4010c 100644
--- a/qt5/.md5sum
+++ b/qt5/.md5sum
@@ -1 +1 @@
-c2a249e8795d45200d997d96860d0353 qt-everywhere-opensource-src-5.5.1.tar.xz
+47763c168f58b1196271b231f03c8bae qt-everywhere-opensource-src-5.6.0.tar.xz
diff --git a/qt5/Pkgfile b/qt5/Pkgfile
index 33d5217..e26603e 100644
--- a/qt5/Pkgfile
+++ b/qt5/Pkgfile
@@ -5,8 +5,8 @@
# Depends on: dbus gst-plugins-base gst-plugins-base-compat libmng mesa3d xorg-libxcursor xorg-libxi xorg-libxinerama xorg-libxrandr xorg-xcb-util-image xorg-xcb-util-wm xorg-xcb-util-keysyms
name=qt5
-version=5.5.1
-release=2
+version=5.6.0
+release=1
source=(http://download.qt.io/official_releases/qt/${version%.*}/$version/single/qt-everywhere-opensource-src-$version.tar.xz)
build() {
1
0
commit 84c909805233093383b3b0422968e00e693bc6e7
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Wed May 18 22:14:30 2016 +1000
atkmm: 2.24.1 -> 2.24.2
diff --git a/atkmm/.md5sum b/atkmm/.md5sum
index e699eca..3409c3b 100644
--- a/atkmm/.md5sum
+++ b/atkmm/.md5sum
@@ -1 +1 @@
-279f32c23b74e5d25bce2b941294cdc8 atkmm-2.24.1.tar.xz
+d53b60b0f1be597e86070954a49cf0c3 atkmm-2.24.2.tar.xz
diff --git a/atkmm/Pkgfile b/atkmm/Pkgfile
index e60297a..bf73b39 100644
--- a/atkmm/Pkgfile
+++ b/atkmm/Pkgfile
@@ -5,7 +5,7 @@
# Depends on: glibmm
name=atkmm
-version=2.24.1
+version=2.24.2
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$v…
1
0
commit fb80c0825e897b9a9eed940c8e36e3541f668a1a
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Wed May 18 22:13:40 2016 +1000
boost: 1.60.0 -> 1.61.0
diff --git a/boost/.footprint b/boost/.footprint
index 8db3f0b..f956afa 100644
--- a/boost/.footprint
+++ b/boost/.footprint
@@ -182,6 +182,10 @@ drwxr-xr-x root/root usr/include/boost/algorithm/string/std/
-rw-r--r-- root/root usr/include/boost/align.hpp
drwxr-xr-x root/root usr/include/boost/align/
-rw-r--r-- root/root usr/include/boost/align/align.hpp
+-rw-r--r-- root/root usr/include/boost/align/align_down.hpp
+-rw-r--r-- root/root usr/include/boost/align/align_down_forward.hpp
+-rw-r--r-- root/root usr/include/boost/align/align_up.hpp
+-rw-r--r-- root/root usr/include/boost/align/align_up_forward.hpp
-rw-r--r-- root/root usr/include/boost/align/aligned_alloc.hpp
-rw-r--r-- root/root usr/include/boost/align/aligned_allocator.hpp
-rw-r--r-- root/root usr/include/boost/align/aligned_allocator_adaptor.hpp
@@ -193,10 +197,11 @@ drwxr-xr-x root/root usr/include/boost/align/
-rw-r--r-- root/root usr/include/boost/align/alignment_of_forward.hpp
-rw-r--r-- root/root usr/include/boost/align/assume_aligned.hpp
drwxr-xr-x root/root usr/include/boost/align/detail/
--rw-r--r-- root/root usr/include/boost/align/detail/address.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/addressof.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/align.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/align_cxx11.hpp
+-rw-r--r-- root/root usr/include/boost/align/detail/align_down.hpp
+-rw-r--r-- root/root usr/include/boost/align/detail/align_up.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/aligned_alloc.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/aligned_alloc_android.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/aligned_alloc_macos.hpp
@@ -214,6 +219,7 @@ drwxr-xr-x root/root usr/include/boost/align/detail/
-rw-r--r-- root/root usr/include/boost/align/detail/assume_aligned_gcc.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/assume_aligned_intel.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/assume_aligned_msvc.hpp
+-rw-r--r-- root/root usr/include/boost/align/detail/element_type.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/integral_constant.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/is_aligned.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/is_alignment.hpp
@@ -222,12 +228,11 @@ drwxr-xr-x root/root usr/include/boost/align/detail/
-rw-r--r-- root/root usr/include/boost/align/detail/max_objects.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/max_size.hpp
-rw-r--r-- root/root usr/include/boost/align/detail/min_size.hpp
--rw-r--r-- root/root usr/include/boost/align/detail/remove_traits.hpp
-rw-r--r-- root/root usr/include/boost/align/is_aligned.hpp
+-rw-r--r-- root/root usr/include/boost/align/is_aligned_forward.hpp
-rw-r--r-- root/root usr/include/boost/aligned_storage.hpp
-rw-r--r-- root/root usr/include/boost/any.hpp
drwxr-xr-x root/root usr/include/boost/archive/
--rw-r--r-- root/root usr/include/boost/archive/add_facet.hpp
-rw-r--r-- root/root usr/include/boost/archive/archive_exception.hpp
-rw-r--r-- root/root usr/include/boost/archive/basic_archive.hpp
-rw-r--r-- root/root usr/include/boost/archive/basic_binary_iarchive.hpp
@@ -1055,6 +1060,344 @@ drwxr-xr-x root/root usr/include/boost/compatibility/cpp_c_headers/
-rw-r--r-- root/root usr/include/boost/compatibility/cpp_c_headers/cwchar
-rw-r--r-- root/root usr/include/boost/compatibility/cpp_c_headers/cwctype
-rw-r--r-- root/root usr/include/boost/compressed_pair.hpp
+-rw-r--r-- root/root usr/include/boost/compute.hpp
+drwxr-xr-x root/root usr/include/boost/compute/
+-rw-r--r-- root/root usr/include/boost/compute/algorithm.hpp
+drwxr-xr-x root/root usr/include/boost/compute/algorithm/
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/accumulate.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/adjacent_difference.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/adjacent_find.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/all_of.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/any_of.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/binary_search.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/copy_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/copy_n.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/count.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/count_if.hpp
+drwxr-xr-x root/root usr/include/boost/compute/algorithm/detail/
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/balanced_path.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/binary_find.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/compact.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/copy_on_device.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/copy_to_device.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/copy_to_host.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/count_if_with_ballot.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/count_if_with_reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/count_if_with_threads.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/find_extrema.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/find_extrema_with_atomics.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/find_extrema_with_reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/find_if_with_atomics.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/inplace_reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/insertion_sort.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/merge_path.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/merge_sort_on_cpu.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/merge_with_merge_path.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/radix_sort.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/random_fill.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/reduce_by_key.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/reduce_on_gpu.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/scan.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/scan_on_cpu.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/scan_on_gpu.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/search_all.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_accumulate.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_count_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_find_extrema.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_merge.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/detail/serial_reduce_by_key.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/equal.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/equal_range.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/exclusive_scan.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/fill.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/fill_n.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/find.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/find_end.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/find_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/find_if_not.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/for_each.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/for_each_n.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/gather.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/generate.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/generate_n.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/includes.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/inclusive_scan.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/inner_product.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/inplace_merge.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/iota.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/is_partitioned.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/is_permutation.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/is_sorted.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/lexicographical_compare.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/lower_bound.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/max_element.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/merge.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/min_element.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/minmax_element.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/mismatch.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/next_permutation.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/none_of.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/nth_element.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/partial_sum.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/partition.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/partition_copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/partition_point.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/prev_permutation.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/random_shuffle.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/reduce_by_key.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/remove.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/remove_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/replace.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/replace_copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/reverse.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/reverse_copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/rotate.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/rotate_copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/scatter.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/scatter_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/search.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/search_n.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/set_difference.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/set_intersection.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/set_symmetric_difference.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/set_union.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/sort.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/sort_by_key.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/stable_partition.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/stable_sort.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/stable_sort_by_key.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/swap_ranges.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/transform.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/transform_if.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/transform_reduce.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/unique.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/unique_copy.hpp
+-rw-r--r-- root/root usr/include/boost/compute/algorithm/upper_bound.hpp
+-rw-r--r-- root/root usr/include/boost/compute/allocator.hpp
+drwxr-xr-x root/root usr/include/boost/compute/allocator/
+-rw-r--r-- root/root usr/include/boost/compute/allocator/buffer_allocator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/allocator/pinned_allocator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/async.hpp
+drwxr-xr-x root/root usr/include/boost/compute/async/
+-rw-r--r-- root/root usr/include/boost/compute/async/future.hpp
+-rw-r--r-- root/root usr/include/boost/compute/async/wait.hpp
+-rw-r--r-- root/root usr/include/boost/compute/async/wait_guard.hpp
+-rw-r--r-- root/root usr/include/boost/compute/buffer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/cl.hpp
+-rw-r--r-- root/root usr/include/boost/compute/cl_ext.hpp
+-rw-r--r-- root/root usr/include/boost/compute/closure.hpp
+-rw-r--r-- root/root usr/include/boost/compute/command_queue.hpp
+-rw-r--r-- root/root usr/include/boost/compute/config.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container.hpp
+drwxr-xr-x root/root usr/include/boost/compute/container/
+-rw-r--r-- root/root usr/include/boost/compute/container/array.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/basic_string.hpp
+drwxr-xr-x root/root usr/include/boost/compute/container/detail/
+-rw-r--r-- root/root usr/include/boost/compute/container/detail/scalar.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/dynamic_bitset.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/flat_map.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/flat_set.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/mapped_view.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/stack.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/string.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/valarray.hpp
+-rw-r--r-- root/root usr/include/boost/compute/container/vector.hpp
+-rw-r--r-- root/root usr/include/boost/compute/context.hpp
+-rw-r--r-- root/root usr/include/boost/compute/core.hpp
+drwxr-xr-x root/root usr/include/boost/compute/detail/
+-rw-r--r-- root/root usr/include/boost/compute/detail/assert_cl_success.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/buffer_value.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/device_ptr.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/diagnostic.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/duration.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/get_object_info.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/getenv.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/global_static.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/is_buffer_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/is_contiguous_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/iterator_plus_distance.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/iterator_range_size.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/iterator_traits.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/literal.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/lru_cache.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/meta_kernel.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/mpl_vector_to_tuple.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/nvidia_compute_capability.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/parameter_cache.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/path.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/print_range.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/read_write_single_value.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/sha1.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/variadic_macros.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/vendor.hpp
+-rw-r--r-- root/root usr/include/boost/compute/detail/work_size.hpp
+-rw-r--r-- root/root usr/include/boost/compute/device.hpp
+-rw-r--r-- root/root usr/include/boost/compute/event.hpp
+-rw-r--r-- root/root usr/include/boost/compute/exception.hpp
+drwxr-xr-x root/root usr/include/boost/compute/exception/
+-rw-r--r-- root/root usr/include/boost/compute/exception/context_error.hpp
+-rw-r--r-- root/root usr/include/boost/compute/exception/no_device_found.hpp
+-rw-r--r-- root/root usr/include/boost/compute/exception/opencl_error.hpp
+-rw-r--r-- root/root usr/include/boost/compute/exception/unsupported_extension_error.hpp
+drwxr-xr-x root/root usr/include/boost/compute/experimental/
+-rw-r--r-- root/root usr/include/boost/compute/experimental/clamp_range.hpp
+-rw-r--r-- root/root usr/include/boost/compute/experimental/malloc.hpp
+-rw-r--r-- root/root usr/include/boost/compute/experimental/sort_by_transform.hpp
+-rw-r--r-- root/root usr/include/boost/compute/experimental/tabulate.hpp
+-rw-r--r-- root/root usr/include/boost/compute/function.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional.hpp
+drwxr-xr-x root/root usr/include/boost/compute/functional/
+-rw-r--r-- root/root usr/include/boost/compute/functional/as.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/atomic.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/bind.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/common.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/convert.hpp
+drwxr-xr-x root/root usr/include/boost/compute/functional/detail/
+-rw-r--r-- root/root usr/include/boost/compute/functional/detail/macros.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/detail/nvidia_ballot.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/detail/nvidia_popcount.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/detail/unpack.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/field.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/geometry.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/get.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/hash.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/identity.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/integer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/logical.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/math.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/operator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/popcount.hpp
+-rw-r--r-- root/root usr/include/boost/compute/functional/relational.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image.hpp
+drwxr-xr-x root/root usr/include/boost/compute/image/
+-rw-r--r-- root/root usr/include/boost/compute/image/image1d.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image/image2d.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image/image3d.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image/image_format.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image/image_object.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image/image_sampler.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image2d.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image3d.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image_format.hpp
+-rw-r--r-- root/root usr/include/boost/compute/image_sampler.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/
+-rw-r--r-- root/root usr/include/boost/compute/interop/eigen.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/eigen/
+-rw-r--r-- root/root usr/include/boost/compute/interop/eigen/core.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opencv.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/opencv/
+-rw-r--r-- root/root usr/include/boost/compute/interop/opencv/core.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opencv/highgui.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opencv/ocl.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/opengl/
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/acquire.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/cl_gl.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/cl_gl_ext.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/context.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/gl.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/opengl_buffer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/opengl_renderbuffer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/opengl/opengl_texture.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/qt/
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qimage.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qpoint.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qpointf.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qtcore.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qtgui.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/qt/qvector.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/vtk.hpp
+drwxr-xr-x root/root usr/include/boost/compute/interop/vtk/
+-rw-r--r-- root/root usr/include/boost/compute/interop/vtk/bounds.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/vtk/data_array.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/vtk/matrix4x4.hpp
+-rw-r--r-- root/root usr/include/boost/compute/interop/vtk/points.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator.hpp
+drwxr-xr-x root/root usr/include/boost/compute/iterator/
+-rw-r--r-- root/root usr/include/boost/compute/iterator/buffer_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/constant_buffer_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/constant_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/counting_iterator.hpp
+drwxr-xr-x root/root usr/include/boost/compute/iterator/detail/
+-rw-r--r-- root/root usr/include/boost/compute/iterator/detail/get_base_iterator_buffer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/detail/swizzle_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/discard_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/function_input_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/permutation_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/strided_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/transform_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/iterator/zip_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/kernel.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda.hpp
+drwxr-xr-x root/root usr/include/boost/compute/lambda/
+-rw-r--r-- root/root usr/include/boost/compute/lambda/context.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/functional.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/get.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/make_pair.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/make_tuple.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/placeholder.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/placeholders.hpp
+-rw-r--r-- root/root usr/include/boost/compute/lambda/result_of.hpp
+-rw-r--r-- root/root usr/include/boost/compute/memory.hpp
+drwxr-xr-x root/root usr/include/boost/compute/memory/
+-rw-r--r-- root/root usr/include/boost/compute/memory/local_buffer.hpp
+-rw-r--r-- root/root usr/include/boost/compute/memory/svm_ptr.hpp
+-rw-r--r-- root/root usr/include/boost/compute/memory_object.hpp
+-rw-r--r-- root/root usr/include/boost/compute/pipe.hpp
+-rw-r--r-- root/root usr/include/boost/compute/platform.hpp
+-rw-r--r-- root/root usr/include/boost/compute/program.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random.hpp
+drwxr-xr-x root/root usr/include/boost/compute/random/
+-rw-r--r-- root/root usr/include/boost/compute/random/bernoulli_distribution.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/default_random_engine.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/discrete_distribution.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/linear_congruential_engine.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/mersenne_twister_engine.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/normal_distribution.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/threefry_engine.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/uniform_int_distribution.hpp
+-rw-r--r-- root/root usr/include/boost/compute/random/uniform_real_distribution.hpp
+-rw-r--r-- root/root usr/include/boost/compute/source.hpp
+-rw-r--r-- root/root usr/include/boost/compute/svm.hpp
+-rw-r--r-- root/root usr/include/boost/compute/system.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits.hpp
+drwxr-xr-x root/root usr/include/boost/compute/type_traits/
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/common_type.hpp
+drwxr-xr-x root/root usr/include/boost/compute/type_traits/detail/
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/detail/capture_traits.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/is_device_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/is_fundamental.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/is_vector_type.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/make_vector_type.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/result_of.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/scalar_type.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/type_definition.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/type_name.hpp
+-rw-r--r-- root/root usr/include/boost/compute/type_traits/vector_size.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types.hpp
+drwxr-xr-x root/root usr/include/boost/compute/types/
+-rw-r--r-- root/root usr/include/boost/compute/types/builtin.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types/complex.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types/fundamental.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types/pair.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types/struct.hpp
+-rw-r--r-- root/root usr/include/boost/compute/types/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/compute/user_event.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility.hpp
+drwxr-xr-x root/root usr/include/boost/compute/utility/
+-rw-r--r-- root/root usr/include/boost/compute/utility/dim.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility/extents.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility/invoke.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility/program_cache.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility/source.hpp
+-rw-r--r-- root/root usr/include/boost/compute/utility/wait_list.hpp
+-rw-r--r-- root/root usr/include/boost/compute/version.hpp
+-rw-r--r-- root/root usr/include/boost/compute/wait_list.hpp
drwxr-xr-x root/root usr/include/boost/concept/
-rw-r--r-- root/root usr/include/boost/concept/assert.hpp
drwxr-xr-x root/root usr/include/boost/concept/detail/
@@ -1253,7 +1596,12 @@ drwxr-xr-x root/root usr/include/boost/container/pmr/
drwxr-xr-x root/root usr/include/boost/context/
-rw-r--r-- root/root usr/include/boost/context/all.hpp
drwxr-xr-x root/root usr/include/boost/context/detail/
+-rw-r--r-- root/root usr/include/boost/context/detail/apply.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/config.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/disable_overload.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/exception.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/exchange.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/fcontext.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_arm.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_arm_mac.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_arm_win.hpp
@@ -1264,15 +1612,20 @@ drwxr-xr-x root/root usr/include/boost/context/detail/
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_sparc.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_x86_64.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/fcontext_x86_64_win.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/index_sequence.hpp
-rw-r--r-- root/root usr/include/boost/context/detail/invoke.hpp
+-rw-r--r-- root/root usr/include/boost/context/detail/tuple.hpp
-rw-r--r-- root/root usr/include/boost/context/execution_context.hpp
--rw-r--r-- root/root usr/include/boost/context/execution_context.ipp
--rw-r--r-- root/root usr/include/boost/context/execution_context_winfib.ipp
--rw-r--r-- root/root usr/include/boost/context/fcontext.hpp
+-rw-r--r-- root/root usr/include/boost/context/execution_context_v1.hpp
+-rw-r--r-- root/root usr/include/boost/context/execution_context_v2.hpp
+-rw-r--r-- root/root usr/include/boost/context/execution_context_v2_void.ipp
-rw-r--r-- root/root usr/include/boost/context/fixedsize_stack.hpp
+-rw-r--r-- root/root usr/include/boost/context/flags.hpp
+-rw-r--r-- root/root usr/include/boost/context/pooled_fixedsize_stack.hpp
drwxr-xr-x root/root usr/include/boost/context/posix/
-rw-r--r-- root/root usr/include/boost/context/posix/protected_fixedsize_stack.hpp
-rw-r--r-- root/root usr/include/boost/context/posix/segmented_stack.hpp
+-rw-r--r-- root/root usr/include/boost/context/preallocated.hpp
-rw-r--r-- root/root usr/include/boost/context/protected_fixedsize_stack.hpp
-rw-r--r-- root/root usr/include/boost/context/segmented_stack.hpp
-rw-r--r-- root/root usr/include/boost/context/stack_context.hpp
@@ -1324,6 +1677,7 @@ drwxr-xr-x root/root usr/include/boost/coroutine/
drwxr-xr-x root/root usr/include/boost/coroutine/detail/
-rw-r--r-- root/root usr/include/boost/coroutine/detail/config.hpp
-rw-r--r-- root/root usr/include/boost/coroutine/detail/coroutine_context.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine/detail/data.hpp
-rw-r--r-- root/root usr/include/boost/coroutine/detail/flags.hpp
-rw-r--r-- root/root usr/include/boost/coroutine/detail/parameters.hpp
-rw-r--r-- root/root usr/include/boost/coroutine/detail/preallocated.hpp
@@ -1361,17 +1715,25 @@ drwxr-xr-x root/root usr/include/boost/coroutine2/
drwxr-xr-x root/root usr/include/boost/coroutine2/detail/
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/config.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/coroutine.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/create_control_block.ipp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/decay_copy.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/disable_overload.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/forced_unwind.hpp
--rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block.hpp
--rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block.ipp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block_ecv1.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block_ecv1.ipp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block_ecv2.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_control_block_ecv2.ipp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_coroutine.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/pull_coroutine.ipp
--rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block.hpp
--rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block.ipp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block_ecv1.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block_ecv1.ipp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block_ecv2.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_control_block_ecv2.ipp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_coroutine.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/push_coroutine.ipp
-rw-r--r-- root/root usr/include/boost/coroutine2/detail/state.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/fixedsize_stack.hpp
+-rw-r--r-- root/root usr/include/boost/coroutine2/pooled_fixedsize_stack.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/protected_fixedsize_stack.hpp
-rw-r--r-- root/root usr/include/boost/coroutine2/segmented_stack.hpp
-rw-r--r-- root/root usr/include/boost/crc.hpp
@@ -1537,12 +1899,15 @@ drwxr-xr-x root/root usr/include/boost/detail/winapi/
-rw-r--r-- root/root usr/include/boost/detail/winapi/GetLastError.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/GetProcessTimes.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/GetThreadTimes.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/access_rights.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/apc.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/basic_types.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/character_code_conversion.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/condition_variable.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/config.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/critical_section.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/crypt.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/dbghelp.hpp
drwxr-xr-x root/root usr/include/boost/detail/winapi/detail/
-rw-r--r-- root/root usr/include/boost/detail/winapi/detail/cast_ptr.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/directory_management.hpp
@@ -1551,15 +1916,31 @@ drwxr-xr-x root/root usr/include/boost/detail/winapi/detail/
-rw-r--r-- root/root usr/include/boost/detail/winapi/event.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/file_management.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/file_mapping.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_current_process.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_current_process_id.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_current_thread.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_current_thread_id.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_last_error.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_process_times.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_system_directory.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/get_thread_times.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/handle_info.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/handles.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/heap_memory.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/init_once.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/limits.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/local_memory.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/memory.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/mutex.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/overlapped.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/page_protection_flags.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/pipes.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/priority_class.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/process.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/security.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/semaphore.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/shell.hpp
+-rw-r--r-- root/root usr/include/boost/detail/winapi/show_window.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/srw_lock.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/synchronization.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/system.hpp
@@ -1571,6 +1952,36 @@ drwxr-xr-x root/root usr/include/boost/detail/winapi/detail/
-rw-r--r-- root/root usr/include/boost/detail/winapi/wait.hpp
-rw-r--r-- root/root usr/include/boost/detail/winapi/waitable_timer.hpp
-rw-r--r-- root/root usr/include/boost/detail/workaround.hpp
+-rw-r--r-- root/root usr/include/boost/dll.hpp
+drwxr-xr-x root/root usr/include/boost/dll/
+-rw-r--r-- root/root usr/include/boost/dll/alias.hpp
+drwxr-xr-x root/root usr/include/boost/dll/detail/
+-rw-r--r-- root/root usr/include/boost/dll/detail/aggressive_ptr_cast.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/ctor_dtor.hpp
+drwxr-xr-x root/root usr/include/boost/dll/detail/demangling/
+-rw-r--r-- root/root usr/include/boost/dll/detail/demangling/demangle_symbol.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/demangling/itanium.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/demangling/mangled_storage_base.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/demangling/msvc.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/elf_info.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/get_mem_fn_type.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/macho_info.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/pe_info.hpp
+drwxr-xr-x root/root usr/include/boost/dll/detail/posix/
+-rw-r--r-- root/root usr/include/boost/dll/detail/posix/path_from_handle.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/posix/program_location_impl.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/posix/shared_library_impl.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/system_error.hpp
+drwxr-xr-x root/root usr/include/boost/dll/detail/windows/
+-rw-r--r-- root/root usr/include/boost/dll/detail/windows/path_from_handle.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/windows/shared_library_impl.hpp
+-rw-r--r-- root/root usr/include/boost/dll/detail/x_info_interface.hpp
+-rw-r--r-- root/root usr/include/boost/dll/import.hpp
+-rw-r--r-- root/root usr/include/boost/dll/library_info.hpp
+-rw-r--r-- root/root usr/include/boost/dll/runtime_symbol_info.hpp
+-rw-r--r-- root/root usr/include/boost/dll/shared_library.hpp
+-rw-r--r-- root/root usr/include/boost/dll/shared_library_load_mode.hpp
+-rw-r--r-- root/root usr/include/boost/dll/smart_library.hpp
-rw-r--r-- root/root usr/include/boost/dynamic_bitset.hpp
drwxr-xr-x root/root usr/include/boost/dynamic_bitset/
-rw-r--r-- root/root usr/include/boost/dynamic_bitset/config.hpp
@@ -2724,6 +3135,7 @@ drwxr-xr-x root/root usr/include/boost/fusion/support/detail/
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/access.hpp
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/as_fusion_element.hpp
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/category_of.hpp
+-rw-r--r-- root/root usr/include/boost/fusion/support/detail/enabler.hpp
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/index_sequence.hpp
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/is_mpl_sequence.hpp
-rw-r--r-- root/root usr/include/boost/fusion/support/detail/is_same_size.hpp
@@ -2981,6 +3393,7 @@ drwxr-xr-x root/root usr/include/boost/geometry/algorithms/detail/comparable_dis
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/convert_point_to_point.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/counting.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/course.hpp
+-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/direction_code.hpp
drwxr-xr-x root/root usr/include/boost/geometry/algorithms/detail/disjoint/
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/disjoint/areal_areal.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/disjoint/box_box.hpp
@@ -3110,10 +3523,11 @@ drwxr-xr-x root/root usr/include/boost/geometry/algorithms/detail/overlay/
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/get_turns.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/handle_colocations.hpp
--rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/handle_tangencies.hpp
+-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/handle_touch.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/inconsistent_turns_exception.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/intersection_insert.hpp
+-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/linear_linear.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/overlay.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/overlay_type.hpp
@@ -3123,6 +3537,7 @@ drwxr-xr-x root/root usr/include/boost/geometry/algorithms/detail/overlay/
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/segment_identifier.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/select_rings.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/self_turn_points.hpp
+-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/sort_by_side.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/stream_info.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/traversal_info.hpp
-rw-r--r-- root/root usr/include/boost/geometry/algorithms/detail/overlay/traverse.hpp
@@ -3247,6 +3662,9 @@ drwxr-xr-x root/root usr/include/boost/geometry/core/
-rw-r--r-- root/root usr/include/boost/geometry/core/tag_cast.hpp
-rw-r--r-- root/root usr/include/boost/geometry/core/tags.hpp
-rw-r--r-- root/root usr/include/boost/geometry/core/topological_dimension.hpp
+drwxr-xr-x root/root usr/include/boost/geometry/extensions/
+drwxr-xr-x root/root usr/include/boost/geometry/extensions/algorithms/
+-rw-r--r-- root/root usr/include/boost/geometry/extensions/algorithms/inverse.hpp
drwxr-xr-x root/root usr/include/boost/geometry/geometries/
drwxr-xr-x root/root usr/include/boost/geometry/geometries/adapted/
-rw-r--r-- root/root usr/include/boost/geometry/geometries/adapted/boost_array.hpp
@@ -3973,6 +4391,470 @@ drwxr-xr-x root/root usr/include/boost/graph/property_maps/
-rw-r--r-- root/root usr/include/boost/graph/visitors.hpp
-rw-r--r-- root/root usr/include/boost/graph/wavefront.hpp
-rw-r--r-- root/root usr/include/boost/graph/write_dimacs.hpp
+-rw-r--r-- root/root usr/include/boost/hana.hpp
+drwxr-xr-x root/root usr/include/boost/hana/
+-rw-r--r-- root/root usr/include/boost/hana/accessors.hpp
+-rw-r--r-- root/root usr/include/boost/hana/adapt_adt.hpp
+-rw-r--r-- root/root usr/include/boost/hana/adapt_struct.hpp
+-rw-r--r-- root/root usr/include/boost/hana/adjust.hpp
+-rw-r--r-- root/root usr/include/boost/hana/adjust_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/all.hpp
+-rw-r--r-- root/root usr/include/boost/hana/all_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/and.hpp
+-rw-r--r-- root/root usr/include/boost/hana/any.hpp
+-rw-r--r-- root/root usr/include/boost/hana/any_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ap.hpp
+-rw-r--r-- root/root usr/include/boost/hana/append.hpp
+-rw-r--r-- root/root usr/include/boost/hana/assert.hpp
+-rw-r--r-- root/root usr/include/boost/hana/at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/at_key.hpp
+-rw-r--r-- root/root usr/include/boost/hana/back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/basic_tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/bool.hpp
+-rw-r--r-- root/root usr/include/boost/hana/cartesian_product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/chain.hpp
+-rw-r--r-- root/root usr/include/boost/hana/comparing.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concat.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept.hpp
+drwxr-xr-x root/root usr/include/boost/hana/concept/
+-rw-r--r-- root/root usr/include/boost/hana/concept/applicative.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/comonad.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/comparable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/euclidean_ring.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/foldable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/functor.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/group.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/hashable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/integral_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/iterable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/logical.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/metafunction.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/monad.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/monad_plus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/monoid.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/orderable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/ring.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/searchable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/sequence.hpp
+-rw-r--r-- root/root usr/include/boost/hana/concept/struct.hpp
+-rw-r--r-- root/root usr/include/boost/hana/config.hpp
+-rw-r--r-- root/root usr/include/boost/hana/contains.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core.hpp
+drwxr-xr-x root/root usr/include/boost/hana/core/
+-rw-r--r-- root/root usr/include/boost/hana/core/common.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/default.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/dispatch.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/is_a.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/make.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/tag_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/to.hpp
+-rw-r--r-- root/root usr/include/boost/hana/core/when.hpp
+-rw-r--r-- root/root usr/include/boost/hana/count.hpp
+-rw-r--r-- root/root usr/include/boost/hana/count_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/cycle.hpp
+-rw-r--r-- root/root usr/include/boost/hana/define_struct.hpp
+drwxr-xr-x root/root usr/include/boost/hana/detail/
+-rw-r--r-- root/root usr/include/boost/hana/detail/algorithm.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/any_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/array.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/canonical_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/concepts.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/create.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/decay.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/dependent_on.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/dispatch_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/fast_and.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/first_unsatisfied_index.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/has_common_embedding.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/has_duplicates.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/hash_table.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/index_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/intrinsics.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_by.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_by_fwd.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_than.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_than_fwd.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_to.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/nested_to_fwd.hpp
+drwxr-xr-x root/root usr/include/boost/hana/detail/operators/
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/adl.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/arithmetic.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/comparable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/iterable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/logical.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/monad.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/orderable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/operators/searchable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/preprocessor.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/std_common_type.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/struct_macros.erb.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/struct_macros.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/type_foldl1.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/type_foldr1.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/unpack_flatten.hpp
+drwxr-xr-x root/root usr/include/boost/hana/detail/variadic/
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/drop_into.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/foldl1.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/foldr1.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/reverse_apply.hpp
+drwxr-xr-x root/root usr/include/boost/hana/detail/variadic/reverse_apply/
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/reverse_apply/flat.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/reverse_apply/unrolled.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/split_at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/variadic/take.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/void_t.hpp
+-rw-r--r-- root/root usr/include/boost/hana/detail/wrong.hpp
+-rw-r--r-- root/root usr/include/boost/hana/difference.hpp
+-rw-r--r-- root/root usr/include/boost/hana/div.hpp
+-rw-r--r-- root/root usr/include/boost/hana/drop_back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/drop_front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/drop_front_exactly.hpp
+-rw-r--r-- root/root usr/include/boost/hana/drop_while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/duplicate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/empty.hpp
+-rw-r--r-- root/root usr/include/boost/hana/equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/erase_key.hpp
+-rw-r--r-- root/root usr/include/boost/hana/eval.hpp
+-rw-r--r-- root/root usr/include/boost/hana/eval_if.hpp
+drwxr-xr-x root/root usr/include/boost/hana/experimental/
+-rw-r--r-- root/root usr/include/boost/hana/experimental/printable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/experimental/types.hpp
+-rw-r--r-- root/root usr/include/boost/hana/experimental/view.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/boost/
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/boost/fusion/
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion/deque.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/boost/fusion/detail/
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion/detail/common.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion/list.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/fusion/vector.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/mpl.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/boost/mpl/
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/mpl/integral_c.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/mpl/list.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/mpl/vector.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/boost/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std.hpp
+drwxr-xr-x root/root usr/include/boost/hana/ext/std/
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/array.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/integer_sequence.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/integral_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/pair.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/ratio.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ext/std/vector.hpp
+-rw-r--r-- root/root usr/include/boost/hana/extend.hpp
+-rw-r--r-- root/root usr/include/boost/hana/extract.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fill.hpp
+-rw-r--r-- root/root usr/include/boost/hana/filter.hpp
+-rw-r--r-- root/root usr/include/boost/hana/find.hpp
+-rw-r--r-- root/root usr/include/boost/hana/find_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/first.hpp
+-rw-r--r-- root/root usr/include/boost/hana/flatten.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fold.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/for_each.hpp
+-rw-r--r-- root/root usr/include/boost/hana/front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional.hpp
+drwxr-xr-x root/root usr/include/boost/hana/functional/
+-rw-r--r-- root/root usr/include/boost/hana/functional/always.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/apply.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/arg.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/capture.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/compose.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/curry.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/demux.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/fix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/flip.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/id.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/infix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/iterate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/lockstep.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/on.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/overload.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/overload_linearly.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/partial.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/placeholder.hpp
+-rw-r--r-- root/root usr/include/boost/hana/functional/reverse_partial.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fuse.hpp
+drwxr-xr-x root/root usr/include/boost/hana/fwd/
+-rw-r--r-- root/root usr/include/boost/hana/fwd/accessors.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/adapt_adt.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/adapt_struct.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/adjust.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/adjust_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/all.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/all_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/and.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/any.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/any_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/ap.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/append.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/at_key.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/basic_tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/bool.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/cartesian_product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/chain.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/comparing.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concat.hpp
+drwxr-xr-x root/root usr/include/boost/hana/fwd/concept/
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/applicative.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/comonad.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/comparable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/euclidean_ring.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/foldable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/functor.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/group.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/hashable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/integral_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/iterable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/logical.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/metafunction.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/monad.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/monad_plus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/monoid.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/orderable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/ring.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/searchable.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/sequence.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/concept/struct.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/contains.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core.hpp
+drwxr-xr-x root/root usr/include/boost/hana/fwd/core/
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/common.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/default.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/is_a.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/make.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/tag_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/to.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/core/when.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/count.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/count_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/cycle.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/define_struct.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/difference.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/div.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/drop_back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/drop_front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/drop_front_exactly.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/drop_while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/duplicate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/empty.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/erase_key.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/eval.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/eval_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/extend.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/extract.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/fill.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/filter.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/find.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/find_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/first.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/flatten.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/fold.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/fold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/fold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/for_each.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/fuse.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/greater.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/greater_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/group.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/hash.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/insert.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/insert_range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/integral_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/intersection.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/intersperse.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/is_disjoint.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/is_empty.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/is_subset.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/keys.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/lazy.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/length.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/less.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/less_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/lexicographical_compare.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/lift.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/map.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/max.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/maximum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/members.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/min.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/minimum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/minus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/mod.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/monadic_compose.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/monadic_fold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/monadic_fold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/mult.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/negate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/none.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/none_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/not.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/not_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/one.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/optional.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/or.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/ordering.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/pair.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/partition.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/permutations.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/plus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/power.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/prefix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/prepend.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/remove.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/remove_at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/remove_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/remove_range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/repeat.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/replace.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/replace_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/replicate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/reverse.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/reverse_fold.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/scan_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/scan_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/second.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/set.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/size.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/slice.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/sort.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/span.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/string.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/suffix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/sum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/symmetric_difference.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/take_back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/take_front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/take_while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/tap.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/then.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/transform.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/type.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/unfold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/unfold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/union.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/unique.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/unpack.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/value.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/zero.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/zip.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/zip_shortest.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/zip_shortest_with.hpp
+-rw-r--r-- root/root usr/include/boost/hana/fwd/zip_with.hpp
+-rw-r--r-- root/root usr/include/boost/hana/greater.hpp
+-rw-r--r-- root/root usr/include/boost/hana/greater_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/group.hpp
+-rw-r--r-- root/root usr/include/boost/hana/hash.hpp
+-rw-r--r-- root/root usr/include/boost/hana/if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/insert.hpp
+-rw-r--r-- root/root usr/include/boost/hana/insert_range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/integral_constant.hpp
+-rw-r--r-- root/root usr/include/boost/hana/intersection.hpp
+-rw-r--r-- root/root usr/include/boost/hana/intersperse.hpp
+-rw-r--r-- root/root usr/include/boost/hana/is_disjoint.hpp
+-rw-r--r-- root/root usr/include/boost/hana/is_empty.hpp
+-rw-r--r-- root/root usr/include/boost/hana/is_subset.hpp
+-rw-r--r-- root/root usr/include/boost/hana/keys.hpp
+-rw-r--r-- root/root usr/include/boost/hana/lazy.hpp
+-rw-r--r-- root/root usr/include/boost/hana/length.hpp
+-rw-r--r-- root/root usr/include/boost/hana/less.hpp
+-rw-r--r-- root/root usr/include/boost/hana/less_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/lexicographical_compare.hpp
+-rw-r--r-- root/root usr/include/boost/hana/lift.hpp
+-rw-r--r-- root/root usr/include/boost/hana/map.hpp
+-rw-r--r-- root/root usr/include/boost/hana/max.hpp
+-rw-r--r-- root/root usr/include/boost/hana/maximum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/members.hpp
+-rw-r--r-- root/root usr/include/boost/hana/min.hpp
+-rw-r--r-- root/root usr/include/boost/hana/minimum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/minus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/mod.hpp
+-rw-r--r-- root/root usr/include/boost/hana/monadic_compose.hpp
+-rw-r--r-- root/root usr/include/boost/hana/monadic_fold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/monadic_fold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/mult.hpp
+-rw-r--r-- root/root usr/include/boost/hana/negate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/none.hpp
+-rw-r--r-- root/root usr/include/boost/hana/none_of.hpp
+-rw-r--r-- root/root usr/include/boost/hana/not.hpp
+-rw-r--r-- root/root usr/include/boost/hana/not_equal.hpp
+-rw-r--r-- root/root usr/include/boost/hana/one.hpp
+-rw-r--r-- root/root usr/include/boost/hana/optional.hpp
+-rw-r--r-- root/root usr/include/boost/hana/or.hpp
+-rw-r--r-- root/root usr/include/boost/hana/ordering.hpp
+-rw-r--r-- root/root usr/include/boost/hana/pair.hpp
+-rw-r--r-- root/root usr/include/boost/hana/partition.hpp
+-rw-r--r-- root/root usr/include/boost/hana/permutations.hpp
+-rw-r--r-- root/root usr/include/boost/hana/plus.hpp
+-rw-r--r-- root/root usr/include/boost/hana/power.hpp
+-rw-r--r-- root/root usr/include/boost/hana/prefix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/prepend.hpp
+-rw-r--r-- root/root usr/include/boost/hana/product.hpp
+-rw-r--r-- root/root usr/include/boost/hana/range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/remove.hpp
+-rw-r--r-- root/root usr/include/boost/hana/remove_at.hpp
+-rw-r--r-- root/root usr/include/boost/hana/remove_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/remove_range.hpp
+-rw-r--r-- root/root usr/include/boost/hana/repeat.hpp
+-rw-r--r-- root/root usr/include/boost/hana/replace.hpp
+-rw-r--r-- root/root usr/include/boost/hana/replace_if.hpp
+-rw-r--r-- root/root usr/include/boost/hana/replicate.hpp
+-rw-r--r-- root/root usr/include/boost/hana/reverse.hpp
+-rw-r--r-- root/root usr/include/boost/hana/reverse_fold.hpp
+-rw-r--r-- root/root usr/include/boost/hana/scan_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/scan_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/second.hpp
+-rw-r--r-- root/root usr/include/boost/hana/set.hpp
+-rw-r--r-- root/root usr/include/boost/hana/size.hpp
+-rw-r--r-- root/root usr/include/boost/hana/slice.hpp
+-rw-r--r-- root/root usr/include/boost/hana/sort.hpp
+-rw-r--r-- root/root usr/include/boost/hana/span.hpp
+-rw-r--r-- root/root usr/include/boost/hana/string.hpp
+-rw-r--r-- root/root usr/include/boost/hana/suffix.hpp
+-rw-r--r-- root/root usr/include/boost/hana/sum.hpp
+-rw-r--r-- root/root usr/include/boost/hana/symmetric_difference.hpp
+-rw-r--r-- root/root usr/include/boost/hana/take_back.hpp
+-rw-r--r-- root/root usr/include/boost/hana/take_front.hpp
+-rw-r--r-- root/root usr/include/boost/hana/take_while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/tap.hpp
+-rw-r--r-- root/root usr/include/boost/hana/then.hpp
+-rw-r--r-- root/root usr/include/boost/hana/traits.hpp
+-rw-r--r-- root/root usr/include/boost/hana/transform.hpp
+-rw-r--r-- root/root usr/include/boost/hana/tuple.hpp
+-rw-r--r-- root/root usr/include/boost/hana/type.hpp
+-rw-r--r-- root/root usr/include/boost/hana/unfold_left.hpp
+-rw-r--r-- root/root usr/include/boost/hana/unfold_right.hpp
+-rw-r--r-- root/root usr/include/boost/hana/union.hpp
+-rw-r--r-- root/root usr/include/boost/hana/unique.hpp
+-rw-r--r-- root/root usr/include/boost/hana/unpack.hpp
+-rw-r--r-- root/root usr/include/boost/hana/value.hpp
+-rw-r--r-- root/root usr/include/boost/hana/version.hpp
+-rw-r--r-- root/root usr/include/boost/hana/while.hpp
+-rw-r--r-- root/root usr/include/boost/hana/zero.hpp
+-rw-r--r-- root/root usr/include/boost/hana/zip.hpp
+-rw-r--r-- root/root usr/include/boost/hana/zip_shortest.hpp
+-rw-r--r-- root/root usr/include/boost/hana/zip_shortest_with.hpp
+-rw-r--r-- root/root usr/include/boost/hana/zip_with.hpp
drwxr-xr-x root/root usr/include/boost/heap/
-rw-r--r-- root/root usr/include/boost/heap/binomial_heap.hpp
-rw-r--r-- root/root usr/include/boost/heap/d_ary_heap.hpp
@@ -4879,6 +5761,7 @@ drwxr-xr-x root/root usr/include/boost/log/keywords/
-rw-r--r-- root/root usr/include/boost/log/keywords/iteration.hpp
-rw-r--r-- root/root usr/include/boost/log/keywords/log_name.hpp
-rw-r--r-- root/root usr/include/boost/log/keywords/log_source.hpp
+-rw-r--r-- root/root usr/include/boost/log/keywords/max_files.hpp
-rw-r--r-- root/root usr/include/boost/log/keywords/max_size.hpp
-rw-r--r-- root/root usr/include/boost/log/keywords/message_file.hpp
-rw-r--r-- root/root usr/include/boost/log/keywords/min_free_space.hpp
@@ -5324,19 +6207,312 @@ drwxr-xr-x root/root usr/include/boost/math/tools/detail/
-rw-r--r-- root/root usr/include/boost/math_fwd.hpp
-rw-r--r-- root/root usr/include/boost/mem_fn.hpp
-rw-r--r-- root/root usr/include/boost/memory_order.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/
+-rw-r--r-- root/root usr/include/boost/metaparse/accept.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/accept_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/accept_when.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/alphanum.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/always.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/always_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/build_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/change_error_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/config.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/debug_parsing_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/define_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/digit_val.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/empty.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/entire_input.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/error/
+-rw-r--r-- root/root usr/include/boost/metaparse/error/digit_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/end_of_input_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/index_out_of_range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/letter_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/literal_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/none_of_the_expected_cases_found.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/unexpected_character.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/unexpected_end_of_input.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/unpaired.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/error/whitespace_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/except.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/fail.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/fail_at_first_char_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/fail_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/first_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl_reject_incomplete_start_with_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldl_start_with_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldr.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldr1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldr_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldr_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/foldr_start_with_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_col.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_prev_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_remaining.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/get_result.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/grammar.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/if_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/int_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/is_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/iterate.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/iterate_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/keyword.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/last_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/limit_one_char_except_size.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/limit_one_of_size.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/limit_sequence_size.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/limit_string_size.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/lit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/lit_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/look_ahead.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/middle_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/next_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/next_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/nth_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/nth_of_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/one_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/one_char_except.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/one_char_except_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/one_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/one_of_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/optional.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/range_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/reject.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated_one_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated_one_of1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/repeated_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/return_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/sequence.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/sequence_apply.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/source_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/source_position_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/space.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/spaces.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/start.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/string.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/string_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/token.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/transform.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/transform_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/transform_error_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/unless_error.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/util/
+-rw-r--r-- root/root usr/include/boost/metaparse/util/digit_to_int.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/digit_to_int_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/in_range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/in_range_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/int_to_digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/int_to_digit_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_lcase_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_ucase_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_whitespace.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/util/is_whitespace_c.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/accept.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/accept_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/accept_when.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/alphanum.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/always.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/always_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/build_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/change_error_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/debug_parsing_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/define_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/digit_val.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/empty.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/entire_input.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/error/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/digit_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/end_of_input_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/expected_to_fail.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/index_out_of_range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/letter_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/literal_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/none_of_the_expected_cases_found.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/unexpected_character.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/unexpected_end_of_input.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/unpaired.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/error/whitespace_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/except.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fail.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fail_at_first_char_expected.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fail_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/first_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl_reject_incomplete_start_with_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldl_start_with_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldr.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldr1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldr_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldr_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/foldr_start_with_parser.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/fwd/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/accept.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/build_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_col.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_prev_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_remaining.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/get_result.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/next_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/next_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/reject.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/source_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/fwd/string.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_col.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_prev_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_remaining.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/get_result.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/grammar.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/if_.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/impl/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/apply_parser.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/assert_string_length.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/at_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/back_inserter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/concat.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/empty_string.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/front_inserter.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/impl/fwd/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/fwd/iterate_impl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/has_type.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/is_any.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/is_char_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/iterate_impl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/iterate_impl_unchecked.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/later_result.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/next_digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/no_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/nth_of_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/nth_of_c_impl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/one_char_except_not_used.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/one_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/one_of_fwd_op.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/pop_back.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/pop_front.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/push_back_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/push_front_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/remove_trailing_no_chars.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/returns.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/sequence.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/sequence_impl.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/size.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/skip_seq.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/split_at_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/string_iterator.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/string_iterator_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/update_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/impl/void_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/int_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/is_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/iterate.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/iterate_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/keyword.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/last_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/lit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/lit_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/look_ahead.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/middle_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/next_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/next_line.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/nth_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/nth_of_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/one_char.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/one_char_except.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/one_char_except_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/one_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/one_of_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/optional.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/range_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/reject.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated_one_of.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated_one_of1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated_reject_incomplete.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/repeated_reject_incomplete1.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/return_.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/sequence.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/sequence_apply.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/source_position.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/source_position_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/space.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/spaces.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/start.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/string.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/string_tag.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/swap.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/token.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/transform.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/transform_error.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/transform_error_message.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/unless_error.hpp
+drwxr-xr-x root/root usr/include/boost/metaparse/v1/util/
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/digit_to_int.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/digit_to_int_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/in_range.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/in_range_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/int_to_digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/int_to_digit_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_digit.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_lcase_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_ucase_letter.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_whitespace.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/v1/util/is_whitespace_c.hpp
+-rw-r--r-- root/root usr/include/boost/metaparse/version.hpp
drwxr-xr-x root/root usr/include/boost/move/
-rw-r--r-- root/root usr/include/boost/move/adl_move_swap.hpp
+drwxr-xr-x root/root usr/include/boost/move/algo/
+-rw-r--r-- root/root usr/include/boost/move/algo/adaptive_merge.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/adaptive_sort.hpp
+drwxr-xr-x root/root usr/include/boost/move/algo/detail/
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/adaptive_sort_merge.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/basic_op.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/bufferless_merge_sort.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/insertion_sort.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/merge.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/detail/merge_sort.hpp
+-rw-r--r-- root/root usr/include/boost/move/algo/move.hpp
-rw-r--r-- root/root usr/include/boost/move/algorithm.hpp
-rw-r--r-- root/root usr/include/boost/move/core.hpp
-rw-r--r-- root/root usr/include/boost/move/default_delete.hpp
drwxr-xr-x root/root usr/include/boost/move/detail/
-rw-r--r-- root/root usr/include/boost/move/detail/config_begin.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/config_end.hpp
+-rw-r--r-- root/root usr/include/boost/move/detail/destruct_n.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/fwd_macros.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/iterator_traits.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/meta_utils.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/meta_utils_core.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/move_helpers.hpp
+-rw-r--r-- root/root usr/include/boost/move/detail/placement_new.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/std_ns_begin.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/std_ns_end.hpp
-rw-r--r-- root/root usr/include/boost/move/detail/type_traits.hpp
@@ -6689,6 +7865,7 @@ drwxr-xr-x root/root usr/include/boost/multiprecision/detail/functions/
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/functions/trig.hpp
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/generic_interconvert.hpp
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/integer_ops.hpp
+-rw-r--r-- root/root usr/include/boost/multiprecision/detail/min_max.hpp
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/no_et_ops.hpp
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/number_base.hpp
-rw-r--r-- root/root usr/include/boost/multiprecision/detail/number_compare.hpp
@@ -7049,9 +8226,18 @@ drwxr-xr-x root/root usr/include/boost/numeric/ublas/traits/
-rw-r--r-- root/root usr/include/boost/numeric/ublas/vector_proxy.hpp
-rw-r--r-- root/root usr/include/boost/numeric/ublas/vector_sparse.hpp
-rw-r--r-- root/root usr/include/boost/operators.hpp
+-rw-r--r-- root/root usr/include/boost/operators_v1.hpp
-rw-r--r-- root/root usr/include/boost/optional.hpp
drwxr-xr-x root/root usr/include/boost/optional/
-rw-r--r-- root/root usr/include/boost/optional/bad_optional_access.hpp
+drwxr-xr-x root/root usr/include/boost/optional/detail/
+-rw-r--r-- root/root usr/include/boost/optional/detail/old_optional_implementation.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_aligned_storage.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_config.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_factory_support.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_reference_spec.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_relops.hpp
+-rw-r--r-- root/root usr/include/boost/optional/detail/optional_swap.hpp
-rw-r--r-- root/root usr/include/boost/optional/optional.hpp
-rw-r--r-- root/root usr/include/boost/optional/optional_fwd.hpp
-rw-r--r-- root/root usr/include/boost/optional/optional_io.hpp
@@ -8071,14 +9257,6 @@ drwxr-xr-x root/root usr/include/boost/property_tree/detail/
-rw-r--r-- root/root usr/include/boost/property_tree/detail/info_parser_utils.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/detail/info_parser_write.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/detail/info_parser_writer_settings.hpp
-drwxr-xr-x root/root usr/include/boost/property_tree/detail/json_parser/
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser/narrow_encoding.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser/parser.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser/read.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser/standard_callbacks.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser/wide_encoding.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser_error.hpp
--rw-r--r-- root/root usr/include/boost/property_tree/detail/json_parser_write.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/detail/ptree_implementation.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/detail/ptree_utils.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/detail/rapidxml.hpp
@@ -8093,6 +9271,15 @@ drwxr-xr-x root/root usr/include/boost/property_tree/detail/json_parser/
-rw-r--r-- root/root usr/include/boost/property_tree/info_parser.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/ini_parser.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/json_parser.hpp
+drwxr-xr-x root/root usr/include/boost/property_tree/json_parser/
+drwxr-xr-x root/root usr/include/boost/property_tree/json_parser/detail/
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/narrow_encoding.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/parser.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/read.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/standard_callbacks.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/wide_encoding.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/detail/write.hpp
+-rw-r--r-- root/root usr/include/boost/property_tree/json_parser/error.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/ptree.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/ptree_fwd.hpp
-rw-r--r-- root/root usr/include/boost/property_tree/ptree_serialization.hpp
@@ -9080,8 +10267,6 @@ drwxr-xr-x root/root usr/include/boost/smart_ptr/detail/
-rw-r--r-- root/root usr/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/detail/spinlock_sync.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/detail/spinlock_w32.hpp
--rw-r--r-- root/root usr/include/boost/smart_ptr/detail/up_if_array.hpp
--rw-r--r-- root/root usr/include/boost/smart_ptr/detail/up_if_not_array.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/detail/yield_k.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/enable_shared_from_raw.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/enable_shared_from_this.hpp
@@ -9091,8 +10276,6 @@ drwxr-xr-x root/root usr/include/boost/smart_ptr/detail/
-rw-r--r-- root/root usr/include/boost/smart_ptr/make_shared_array.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/make_shared_object.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/make_unique.hpp
--rw-r--r-- root/root usr/include/boost/smart_ptr/make_unique_array.hpp
--rw-r--r-- root/root usr/include/boost/smart_ptr/make_unique_object.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/owner_less.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/scoped_array.hpp
-rw-r--r-- root/root usr/include/boost/smart_ptr/scoped_ptr.hpp
@@ -10352,6 +11535,7 @@ drwxr-xr-x root/root usr/include/boost/test/data/
-rw-r--r-- root/root usr/include/boost/test/data/dataset.hpp
-rw-r--r-- root/root usr/include/boost/test/data/for_each_sample.hpp
-rw-r--r-- root/root usr/include/boost/test/data/generators.hpp
+-rw-r--r-- root/root usr/include/boost/test/data/index_sequence.hpp
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic.hpp
drwxr-xr-x root/root usr/include/boost/test/data/monomorphic/
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/array.hpp
@@ -10366,11 +11550,11 @@ drwxr-xr-x root/root usr/include/boost/test/data/monomorphic/generators/
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/grid.hpp
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/initializer_list.hpp
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/join.hpp
+-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/sample_merge.hpp
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/singleton.hpp
-rw-r--r-- root/root usr/include/boost/test/data/monomorphic/zip.hpp
-rw-r--r-- root/root usr/include/boost/test/data/size.hpp
-rw-r--r-- root/root usr/include/boost/test/data/test_case.hpp
--rw-r--r-- root/root usr/include/boost/test/data/traits.hpp
-rw-r--r-- root/root usr/include/boost/test/debug.hpp
-rw-r--r-- root/root usr/include/boost/test/debug_config.hpp
drwxr-xr-x root/root usr/include/boost/test/detail/
@@ -11523,6 +12707,8 @@ drwxr-xr-x root/root usr/include/boost/utility/detail/
-rw-r--r-- root/root usr/include/boost/utility/result_of.hpp
-rw-r--r-- root/root usr/include/boost/utility/string_ref.hpp
-rw-r--r-- root/root usr/include/boost/utility/string_ref_fwd.hpp
+-rw-r--r-- root/root usr/include/boost/utility/string_view.hpp
+-rw-r--r-- root/root usr/include/boost/utility/string_view_fwd.hpp
-rw-r--r-- root/root usr/include/boost/utility/swap.hpp
-rw-r--r-- root/root usr/include/boost/utility/typed_in_place_factory.hpp
-rw-r--r-- root/root usr/include/boost/utility/value_init.hpp
@@ -11943,72 +13129,73 @@ drwxr-xr-x root/root usr/include/boost/xpressive/traits/detail/
-rw-r--r-- root/root usr/include/boost/xpressive/xpressive_static.hpp
-rw-r--r-- root/root usr/include/boost/xpressive/xpressive_typeof.hpp
drwxr-xr-x root/root usr/lib/
-lrwxrwxrwx root/root usr/lib/libboost_atomic.so -> libboost_atomic.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_atomic.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_atomic.so -> libboost_atomic.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_atomic.so.1.61.0
-rw-r--r-- root/root usr/lib/libboost_chrono.a
-lrwxrwxrwx root/root usr/lib/libboost_chrono.so -> libboost_chrono.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_chrono.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_container.so -> libboost_container.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_container.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_context.so -> libboost_context.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_context.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_coroutine.so -> libboost_coroutine.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_coroutine.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_date_time.so -> libboost_date_time.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_date_time.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_chrono.so -> libboost_chrono.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_chrono.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_container.so -> libboost_container.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_container.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_context.so -> libboost_context.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_context.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_coroutine.so -> libboost_coroutine.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_coroutine.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_date_time.so -> libboost_date_time.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_date_time.so.1.61.0
-rw-r--r-- root/root usr/lib/libboost_exception.a
-lrwxrwxrwx root/root usr/lib/libboost_filesystem.so -> libboost_filesystem.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_filesystem.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_graph.so -> libboost_graph.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_graph.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_iostreams.so -> libboost_iostreams.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_iostreams.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_locale.so -> libboost_locale.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_locale.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_log.so -> libboost_log.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_log.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_log_setup.so -> libboost_log_setup.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_log_setup.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_c99.so -> libboost_math_c99.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_c99.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_c99f.so -> libboost_math_c99f.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_c99f.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_c99l.so -> libboost_math_c99l.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_c99l.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_tr1.so -> libboost_math_tr1.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_tr1.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_tr1f.so -> libboost_math_tr1f.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_tr1f.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_math_tr1l.so -> libboost_math_tr1l.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_math_tr1l.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_prg_exec_monitor.so -> libboost_prg_exec_monitor.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_prg_exec_monitor.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_program_options.so -> libboost_program_options.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_program_options.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_python.so -> libboost_python.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_python.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_random.so -> libboost_random.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_random.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_regex.so -> libboost_regex.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_regex.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_serialization.so -> libboost_serialization.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_serialization.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_signals.so -> libboost_signals.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_signals.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_filesystem.so -> libboost_filesystem.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_filesystem.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_graph.so -> libboost_graph.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_graph.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_iostreams.so -> libboost_iostreams.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_iostreams.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_locale.so -> libboost_locale.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_locale.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_log.so -> libboost_log.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_log.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_log_setup.so -> libboost_log_setup.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_log_setup.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_c99.so -> libboost_math_c99.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_c99.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_c99f.so -> libboost_math_c99f.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_c99f.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_c99l.so -> libboost_math_c99l.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_c99l.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_tr1.so -> libboost_math_tr1.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_tr1.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_tr1f.so -> libboost_math_tr1f.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_tr1f.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_math_tr1l.so -> libboost_math_tr1l.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_math_tr1l.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_prg_exec_monitor.so -> libboost_prg_exec_monitor.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_prg_exec_monitor.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_program_options.so -> libboost_program_options.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_program_options.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_python.so -> libboost_python.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_python.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_random.so -> libboost_random.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_random.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_regex.so -> libboost_regex.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_regex.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_serialization.so -> libboost_serialization.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_serialization.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_signals.so -> libboost_signals.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_signals.so.1.61.0
-rw-r--r-- root/root usr/lib/libboost_system.a
-lrwxrwxrwx root/root usr/lib/libboost_system.so -> libboost_system.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_system.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_system.so -> libboost_system.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_system.so.1.61.0
-rw-r--r-- root/root usr/lib/libboost_test_exec_monitor.a
-lrwxrwxrwx root/root usr/lib/libboost_thread.so -> libboost_thread.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_thread.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_thread.so -> libboost_thread.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_thread.so.1.61.0
-rw-r--r-- root/root usr/lib/libboost_timer.a
-lrwxrwxrwx root/root usr/lib/libboost_timer.so -> libboost_timer.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_timer.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_type_erasure.so -> libboost_type_erasure.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_type_erasure.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_unit_test_framework.so -> libboost_unit_test_framework.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_unit_test_framework.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_wave.so -> libboost_wave.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_wave.so.1.60.0
-lrwxrwxrwx root/root usr/lib/libboost_wserialization.so -> libboost_wserialization.so.1.60.0
--rwxr-xr-x root/root usr/lib/libboost_wserialization.so.1.60.0
+lrwxrwxrwx root/root usr/lib/libboost_timer.so -> libboost_timer.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_timer.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_type_erasure.so -> libboost_type_erasure.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_type_erasure.so.1.61.0
+-rw-r--r-- root/root usr/lib/libboost_unit_test_framework.a
+lrwxrwxrwx root/root usr/lib/libboost_unit_test_framework.so -> libboost_unit_test_framework.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_unit_test_framework.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_wave.so -> libboost_wave.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_wave.so.1.61.0
+lrwxrwxrwx root/root usr/lib/libboost_wserialization.so -> libboost_wserialization.so.1.61.0
+-rwxr-xr-x root/root usr/lib/libboost_wserialization.so.1.61.0
diff --git a/boost/.md5sum b/boost/.md5sum
index b131394..99c9a73 100644
--- a/boost/.md5sum
+++ b/boost/.md5sum
@@ -1 +1 @@
-65a840e1a0b13a558ff19eeb2c4f0cbe boost_1_60_0.tar.bz2
+6095876341956f65f9d35939ccea1a9f boost_1_61_0.tar.bz2
diff --git a/boost/Pkgfile b/boost/Pkgfile
index 69fede8..0b9582c 100644
--- a/boost/Pkgfile
+++ b/boost/Pkgfile
@@ -5,7 +5,7 @@
# Depends on: icu python
name=boost
-version=1.60.0
+version=1.61.0
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/${nam…
1
0
ports/contrib (3.2): inkscape: remove dependency libart_lgpl added README for librsvgrsvg for cairo
by crux@crux.nu 18 May '16
by crux@crux.nu 18 May '16
18 May '16
commit 171504935927edd9b69af2e6d127bda6d61e52da
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Wed May 18 22:27:08 2016 +1000
inkscape: remove dependency libart_lgpl added README for librsvgrsvg for cairo
diff --git a/inkscape/.footprint b/inkscape/.footprint
index 7d8e40f..a3f7a64 100644
--- a/inkscape/.footprint
+++ b/inkscape/.footprint
@@ -2,10 +2,6 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/inkscape
-rwxr-xr-x root/root usr/bin/inkview
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/inkscape.1.gz
--rw-r--r-- root/root usr/man/man1/inkview.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/inkscape.desktop
@@ -1091,3 +1087,7 @@ drwxr-xr-x root/root usr/share/inkscape/ui/
-rw-r--r-- root/root usr/share/inkscape/ui/menus-bars.xml
-rw-r--r-- root/root usr/share/inkscape/ui/toolbox.xml
-rw-r--r-- root/root usr/share/inkscape/ui/units.xml
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/inkscape.1.gz
+-rw-r--r-- root/root usr/share/man/man1/inkview.1.gz
diff --git a/inkscape/Pkgfile b/inkscape/Pkgfile
index 60e80ac..1d08306 100644
--- a/inkscape/Pkgfile
+++ b/inkscape/Pkgfile
@@ -1,12 +1,12 @@
# Description: An open source SVG editor.
-# URL: http://www.inkscape.org
+# URL: http://www.inkscape.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Huynh Ngoc Chau Tran, tran dot huynh at laposte dot net
-# Depends on: boehm-gc boost gsl gtkmm intltool libart_lgpl poppler-glib popt
+# Depends on: boehm-gc boost gsl gtkmm intltool poppler-glib popt
name=inkscape
version=0.91
-release=1
+release=2
source=(http://inkscape.global.ssl.fastly.net/media/resources/file/$name-$v…
build() {
@@ -16,19 +16,22 @@ build() {
./configure \
--prefix=/usr \
- --mandir=/usr/man \
- --disable-nls
+ --disable-nls \
+ --enable-lcms \
+ --enable-poppler-cairo \
+ --disable-strict-build \
+ --disable-dependency-tracking
make
make DESTDIR=$PKG install
rm \
- $PKG/usr/man/man1/inkscape.??.1 \
- $PKG/usr/man/man1/inkscape.zh_TW.1
+ $PKG/usr/share/man/man1/inkscape.??.1 \
+ $PKG/usr/share/man/man1/inkscape.zh_TW.1
rm -r \
- $PKG/usr/man/?? \
- $PKG/usr/man/zh_TW
+ $PKG/usr/share/man/?? \
+ $PKG/usr/share/man/zh_TW
find $PKG/usr/share/inkscape -name README -exec rm -f {} +
/usr/bin/python -mcompileall $PKG
diff --git a/inkscape/README b/inkscape/README
new file mode 100644
index 0000000..31b56a4
--- /dev/null
+++ b/inkscape/README
@@ -0,0 +1,3 @@
+COMPILING:
+
+Be sure to install librsvg before cairo else inkscape will fail to compile.
1
0
commit 4ed8562b00c65b1356764ababf5db6c5db80af22
Author: Danny Rawlins <monster.romster(a)gmail.com>
Date: Wed May 18 22:20:23 2016 +1000
libsigc++: 2.6.2 -> 2.8.0
diff --git a/libsigc++/.footprint b/libsigc++/.footprint
index 7fb2326..941eb68 100644
--- a/libsigc++/.footprint
+++ b/libsigc++/.footprint
@@ -48,3 +48,4 @@ drwxr-xr-x root/root usr/lib/pkgconfig/
drwxr-xr-x root/root usr/lib/sigc++-2.0/
drwxr-xr-x root/root usr/lib/sigc++-2.0/include/
-rw-r--r-- root/root usr/lib/sigc++-2.0/include/sigc++config.h
+drwxr-xr-x root/root usr/share/
diff --git a/libsigc++/.md5sum b/libsigc++/.md5sum
index 411cf33..3e2982a 100644
--- a/libsigc++/.md5sum
+++ b/libsigc++/.md5sum
@@ -1 +1 @@
-d2f33ca0b4b012ef60669e3b3cebe956 libsigc++-2.6.2.tar.xz
+3d26acbc813fa54edd4401ce1a981677 libsigc++-2.8.0.tar.xz
diff --git a/libsigc++/Pkgfile b/libsigc++/Pkgfile
index 3432fa1..e2c1c8b 100644
--- a/libsigc++/Pkgfile
+++ b/libsigc++/Pkgfile
@@ -4,14 +4,17 @@
# Packager: Han Boetes, han mijncomputer dot nl
name=libsigc++
-version=2.6.2
+version=2.8.0
release=1
source=(https://download.gnome.org/sources/libsigc++/${version%.*}/$name-$v…
build() {
cd libsigc++-$version
+
./configure --prefix=/usr
+
make
make install DESTDIR=$PKG
- rm -r $PKG/usr/share
+
+ rm -r $PKG/usr/share/{doc,devhelp}
}
1
0