Merge branch '3.5' into 3.6

Conflicts:
	imagemagick/.signature
This commit is contained in:
Juergen Daubert 2020-11-21 13:09:48 +00:00
commit 0ab6d032b6
34 changed files with 4352 additions and 4346 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eLvcEvBVolkPQXW9ZZDZ28z1Wb3veY6P4owFKSDJGaHQGVz2uS9mQ3yCrniP9Cv8PoDdWdN/nNdXTZnJAElTAQ=
SHA256 (Pkgfile) = 58b8c3574689acd60676958f3c90f15d7200ed92f949ac4cf25e42e48516e842
RWSE3ohX2g5d/fSfk2icuHre6q18uMB8pOXWIamOtDHbAGbLT+7Q0/G71Tn0qRHARzYLOnpI4rYtzbNTA9pO7oUWqBj0HKtEZQg=
SHA256 (Pkgfile) = ecc1edb7f944f262e3d9ecb9adcda1311862f88960ba17d5203538e144e9cc5b
SHA256 (.footprint) = 6fa82bc6f1dfe4920cf656462b70c1fa61800892fbcc39b98c791c0054c69e29
SHA256 (cmocka-1.1.5.tar.xz) = f0ccd8242d55e2fd74b16ba518359151f6f8383ff8aef4976e48393f77bba8b6

View File

@ -9,13 +9,13 @@ release=2
source=(https://cmocka.org/files/1.1/$name-$version.tar.xz)
build() {
cmake -S$name-$version -Bbuild \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DWITH_STATIC_LIB=On \
-DUNIT_TESTING=On
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D WITH_STATIC_LIB=On \
-D UNIT_TESTING=On
cmake --build build
DESTDIR=$PKG cmake --install build
}

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/WhTA0oCbK0lAQ4A5DPED8Lejli/4/cD8cld3HhElQ+JMRV/CduUnBukD7gCs11ZhW07/Zi2x4HX03Pr6GYNawU=
SHA256 (Pkgfile) = b3a4ec073cca56a4e19298452d690b168f587792ba5fe93d9d3952aaaf41072f
RWSE3ohX2g5d/SSlOTahLHTIjFF2OtZ4SBFETdOn3RxsdZbcVYSmw5uUVvL4FHHTcocBCYbGE9NW8dEYjiIfFRwPrFTfp2E+swI=
SHA256 (Pkgfile) = 4b8784aa8cf49ee6a61c350dc336a390963af45f51cf717d3621816f9ce13bd6
SHA256 (.footprint) = b1befb365db806952cf7726c732e89b6ce20f20bb46e5c7a2529cd011de490c6
SHA256 (conky-1.11.6.tar.gz) = e7c01e4910744851e05f85f0a0aab3f5068215b1af850515189ac40e7deeb26d

View File

@ -10,16 +10,15 @@ source=(https://github.com/brndnmtthws/conky/archive/v$version/$name-$version.ta
build() {
cmake -S $name-$version -B build \
-D RELEASE=ON \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D SYSTEM_CONFIG_FILE=/usr/etc/conky.conf \
-D BUILD_DOCS=OFF \
-D BUILD_I18N=OFF \
-D BUILD_CURL=ON \
-D BUILD_RSS=ON
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/doc
}

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/Xq1wwwQV6rX5QlvzP1Op7fUsvomQwOIRDMlayW0tQW8RiE8yQhQ/cCZI2qCdngEoE2pzjRCf3JnkOmU6oatlwA=
SHA256 (Pkgfile) = 90ee092a91016fde6ce23f1443b87c368d8f738d05d17a5e92d5d0469db36e3e
RWSE3ohX2g5d/fLe5u06omesNlsBgIXLDmtSd2ifYj134JfTm2dcul6FpxWe01UXidpCeBJN0wx0EkJe8x8QPpGKH4qDeqxyaQA=
SHA256 (Pkgfile) = a36f9941c1091c2e6692c55bacf301734542cd3a451ce95c872f6717892a3425
SHA256 (.footprint) = f0be1a2ef91ca7a369adb22e8904c3174a5accad6a1c3286810b4b4b110ecf40
SHA256 (exiv2-0.27.3.tar.gz) = 6398bc743c32b85b2cb2a604273b8c90aa4eb0fd7c1700bf66cbb2712b4f00c1

View File

@ -10,14 +10,13 @@ source=(https://github.com/Exiv2/exiv2/archive/v$version/$name-$version.tar.gz)
build() {
export CXXFLAGS+=" -Wno-deprecated-declarations"
export CXXFLAGS+=" -Wno-deprecated-declarations -DNDEBUG"
cmake -S$name-$version -Bbuild \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DEXIV2_ENABLE_BUILD_PO=OFF \
-DEXIV2_ENABLE_BUILD_SAMPLES=OFF \
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --install build

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/QA5RpON1UnpZOhvwsE9gIT0mLo+VoTGDmIsG6DKBDSNbqvVweoUxXZXbRq7cZ0RGq4aC6Hrcgmw3MhtqmyJVQw=
SHA256 (Pkgfile) = 29b0798f05eb2d4d1c8c864ab9ed89b02566efc026105633be3572afb7ec9543
RWSE3ohX2g5d/eY7wqVvKCu6sISXqh2rTJMC6stMT6DvcSgGqlutIO55S2F2jRdDFec8OO6wDgQoj7j2TSG2SnuGbJbWvCIGGgA=
SHA256 (Pkgfile) = c6efa39b2d5913b87b211857c6fb05d88eba59c91d0730c6c1eeff48ea9ef68f
SHA256 (.footprint) = f114c4f412edec10c6966bc706fe69865efb247663d80266db326b1b09cef0e2
SHA256 (freerdp-2.2.0.tar.gz) = 19b30759e324ce7a9767af880116a4c571761e9ad9c5d6c98c5b302ff8c24c6c

View File

@ -12,6 +12,7 @@ source=(https://pub.freerdp.com/releases/freerdp-$version.tar.gz)
build() {
cmake -S freerdp-$version -B build \
-D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_SKIP_RPATH=ON \
@ -19,7 +20,6 @@ build() {
-D WITH_CLIENT=ON \
-D WITH_LIBSYSTEMD=OFF \
-D WITH_WAYLAND=OFF
cmake --build build
DESTDIR=$PKG cmake --install build
}

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/ZVznhyz1a7tYt2NRX8yYpYUpJZ6NSIM0TS2QrrbjjdeQR+Fh87Hfrm7QOdQqhq393TWbuqbEz4GEYWDfy8rtwc=
SHA256 (Pkgfile) = 634618688f8fb0129b94e5266fcdeb7b1a647dab9752048f2e93f95e3bbb210c
RWSE3ohX2g5d/WmM+QHTnVCtjEsndpoJY0ggbvQ2Vfdcv+eUjTqqzT2Sxy6W+f9wB55GniPhUI85HgQfxLELjmN34FqglDoVOQ4=
SHA256 (Pkgfile) = 7bf4d2077e4ebe77389a95892d49f95104980401b8cba56f8cb2a82a90aaff28
SHA256 (.footprint) = e5f42a372d9de7a751e6da20bfbfc84ae31a521cc14afffb96551fb08ff8fc73
SHA256 (ImageMagick-7.0.10-39.tar.xz) = 3588f2edcc29b8d9f8669b003a9acd04dba2ff176742b6a9396745b71d690556
SHA256 (ImageMagick-7.0.10-40.tar.xz) = 40bba04346c3730279482b3cfeef7113150c65d5371771536b9648a056d24540

View File

@ -4,7 +4,7 @@
# Depends on: libtool lcms2 pango xorg-libxt chrpath
name=imagemagick
version=7.0.10-39
version=7.0.10-40
release=1
source=(https://www.imagemagick.org/download/releases/ImageMagick-$version.tar.xz)

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/VVNhxG/o6ym4Q2cjw9O2x0GXwbCsAeaQeT/gpGmLA/xy6WHjEOc3iB0/3AMXPyAiWb9WV1eHmOQOyx6QPfg/gs=
SHA256 (Pkgfile) = d4cb9acdcfa9f054a49a12c4550ef681180390adec4edc47bcf767bbd95e87bc
RWSE3ohX2g5d/XXFCh0uuCvfeYvP0W6gtCqfEu6xrjGddt3JBm0U96tUcKdv9yTs/5Fug7MslliYGz/a7EjIbCjO0qehXGW/ewY=
SHA256 (Pkgfile) = b3462b1e7c9fc411f67a57b9be4c6c4a71bbfeb6d67e95195cf67e5714fe8d55
SHA256 (.footprint) = fbeb5061184596a807a0355333b4b4ceb007a0cb5173ec7cabb2a5c527106754
SHA256 (json-c-0.15.tar.gz) = b8d80a1ddb718b3ba7492916237bbf86609e9709fb007e7f7d4322f02341a4c6

View File

@ -13,6 +13,7 @@ build() {
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=/usr/lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D BUILD_TESTING=OFF
cmake --build build
DESTDIR=$PKG cmake --install build

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/YkDoWIePmbHFNfG6kF9wZxTSSRhJmcox6aUa0sz1t5+p7L3EWvm6uyoUh5t/BEY/JIwwidtbcxwEvbiHgJRWwY=
SHA256 (Pkgfile) = f2615c824385d59cd5bf2b9fb0d7a0ef5f0540f8f8fb000ad3d5afda0b557263
RWSE3ohX2g5d/S/qCXR3dzoKYbl8p/emgXb6xMlFQLYXTbUpxrZoVrAPHnFhadY+/ahuBrlNr2lYE8i4pNn1FUpMxn3YkvYg8gc=
SHA256 (Pkgfile) = 320f11f410ef77fcd5051205a3470e20aff86d1332a6c82d4af54e603e0f2c2e
SHA256 (.footprint) = b92352bc7d10f728be54eeedfc60c69780df3eaffaf3a01d1eee7a19d1fc8a12
SHA256 (librsync-v2.3.1.tar.gz) = dbd7eb643665691bdf4009174461463737b19b4814b789baad62914cabfe4569

View File

@ -9,10 +9,11 @@ release=1
source=(https://github.com/$name/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cmake -S $name-$version -B build\
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
cmake --build build
DESTDIR=$PKG cmake --install build

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/Y72+bsdWHbAZ+ga9ZgB8qR+mET/guxvZxukf+1oia9yeyiDIGhITGrF7y7x4iL2t+gj85aJ7KQD/bJM82lKDg0=
SHA256 (Pkgfile) = ec03b9cf774d0438f15a175a05425d1123c0ee58d8ab7466b6065683776aef27
RWSE3ohX2g5d/c11PUwd78O53QwNRds1CyzZymMqRLlbbVwiR/1GXSr/2igRZsSd7sYRJo1+zuCzqoHLN8tYYneXZ5a8ZmzGIAo=
SHA256 (Pkgfile) = 78bae30e3c962a433bc8875b8491d973b922aa088759c1665b25c6005056eb9f
SHA256 (.footprint) = 86fea37bfabf24b2837b7206edf0ec3d1727c738d1af172e5fc155c66781d5c7
SHA256 (libzip-1.7.3.tar.xz) = a60473ffdb7b4260c08bfa19c2ccea0438edac11193c3afbbb1f17fbcf6c6132

View File

@ -9,12 +9,12 @@ release=1
source=(https://libzip.org/download/$name-$version.tar.xz)
build() {
cmake -S$name-$version -Bbuild \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DENABLE_GNUTLS=OFF
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=/usr/lib \
-D ENABLE_GNUTLS=OFF
cmake --build build
DESTDIR=$PKG cmake --install build
}

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/QsvBqED/2Uar9Jhhd4brCL9QKxIZ+r9yPFAhzYHOlMY+/FJPuVOOeK5385Xslqof3pvMwxqWzqCJBLeFYhOIQ4=
SHA256 (Pkgfile) = 325d46ee4cb878c02226788d9e8ba32c56484978a187613b6e4e955a21db8fa8
RWSE3ohX2g5d/StvqlBbLEBikScywgC1YZSxPN4CsSRSLokDQ5lJH0BtVPxkynvSUJdX3fLR1jtAebHaujw/Kxcm/qm0vG0N+w4=
SHA256 (Pkgfile) = a4abbd0d654a183b0fd1c97e89882e8643ddce8d47c1f704a1f8ab339b2f7622
SHA256 (.footprint) = 16a4cbc53d0d6b7d01be8b598ad20486e3081237707bd214a678fb9a59ab629b
SHA256 (mutt-2.0.1.tar.gz) = 0cf5fdea5616f655b101de3b5ed45412bc2cc721d517466ca6c645a829b021db
SHA256 (mutt-2.0.2.tar.gz) = 471218babe97968a45704f1e1e17523c4620ad1f92bae4143a4c9749ab1411c8

View File

@ -4,7 +4,7 @@
# Depends on: gdbm openssl zlib
name=mutt
version=2.0.1
version=2.0.2
release=1
source=(https://bitbucket.org/mutt/mutt/downloads/$name-$version.tar.gz)

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/f3anGhj2ErLWvxxzVszfww1r16VTGGNZkwGnH82Nxgw4oow8N76J8aYOwLb8C7uUA2pPj4JkI/Bnddroj84rg4=
SHA256 (Pkgfile) = a9c32fc73e7cc046faab71dfd6eb2e8ae29238b11030577418e12d457ec0c600
RWSE3ohX2g5d/dYODYo3CsZ9pEu9/3ClC3DQRF8Uu7TAkkw9DLW6P6rhfixN39TDge6MF2AWkRM+P8LjIC5IN0M+x6JabwM4/wc=
SHA256 (Pkgfile) = 716cba50c7f2ebad9b6616189a598ada73fcf6dabeb4c4486e59c3f5e94d5963
SHA256 (.footprint) = 275f30a6428becc5dfdd9b9d7fe432a47a57444dbb483720b107045dee44132e
SHA256 (mysql-boost-5.7.32.tar.gz) = 9a8a04a2b0116ccff9a8d8aace07aaeaacf47329b701c5dfa9fa4351d3f1933b
SHA256 (my.cnf) = 51d46fe239e1e18a608e64ea1242fda946c2ea5a9ecea4507d89734e263ab828

View File

@ -10,19 +10,26 @@ source=(https://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQL-5.7/$name-boost-$vers
my.cnf mysqld)
build () {
export CXXFLAGS+=" -Wno-deprecated-declarations -DNDEBUG"
cmake -S $name-$version -B build \
-DBUILD_CONFIG=mysql_release \
-DINSTALL_LAYOUT=RPM \
-DCMAKE_INSTALL_PREFIX=/usr \
-DSYSCONFDIR=/etc \
-DINSTALL_LIBDIR=lib \
-DINSTALL_PLUGINDIR=lib/mysql/plugin \
-DINSTALL_MANDIR=share/man \
-DINSTALL_SECURE_PRIVDIR=/var/lib/mysql-files \
-DWITH_BOOST=$name-$version/boost \
-DWITH_LIBWRAP=0 \
-DWITH_SSL=system \
-DWITH_ZLIB=system
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D BUILD_CONFIG=mysql_release \
-D INSTALL_LAYOUT=RPM \
-D SYSCONFDIR=/etc \
-D INSTALL_LIBDIR=lib \
-D INSTALL_PLUGINDIR=lib/mysql/plugin \
-D INSTALL_MANDIR=share/man \
-D INSTALL_SECURE_PRIVDIR=/var/lib/mysql-files \
-D WITH_BOOST=$name-$version/boost \
-D WITH_LIBWRAP=0 \
-D WITH_SSL=system \
-D WITH_ZLIB=system \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eFArcNX39VdScrEXmYGfNA0nviyeJJXlaoGC195d3UaPo+mXJUpGfIArTI4De91UeVKUI+gJNCjirdqs4B1TgI=
SHA256 (Pkgfile) = 29dbff5e5184eb8402015d8bfcc30e5e0558e318d54b35072e6f43444280f62e
RWSE3ohX2g5d/c5XViTkwa1+ivGdAnAP6YBrwjeHC0fYMEJHMkgva0TprpeXT+83odTf4RfjC0nK7mPDJbq06TSzyXbhDg6nagY=
SHA256 (Pkgfile) = c6d313ce010f59b3a045ef981c696be6f4507a61ea56d5c9bcc367470c11f57c
SHA256 (.footprint) = 6726225314c7024f9f5452e325605803f938f80c481c74ca74bd3fe5510f074a
SHA256 (nss_wrapper-1.1.11.tar.gz) = fb45332e7fb4d85d3ea829ed18172366196c17cbd32ef690a7e1309f0c37b4e0

View File

@ -10,9 +10,10 @@ source=(https://ftp.samba.org/pub/cwrap/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build\
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --install build
}

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/RJ10GVjoDP/2pBFnuXpHrQ44qm149TENHQYMIYDYOihiNH8lEjECw6Lef1fqUof6bEnTxZr0Y6SRXuCQROK2g0=
SHA256 (Pkgfile) = 32ceba7cac22f70cd3216b86582a98dbb3ed2c8177027d70db18f24f39f59a60
SHA256 (.footprint) = 9c4a44a35f234188960e6357527e88e974878438c09dc607ee503048b86a95e3
SHA256 (qt-everywhere-src-5.15.1.tar.xz) = 44da876057e21e1be42de31facd99be7d5f9f07893e1ea762359bcee0ef64ee9
RWSE3ohX2g5d/W2ZSpNiseAN+1SF8SzENy+XacXlFLIusMXmL//JJNQjcQnsOMQzM2um9WO9vr7VZ/dLLIP/K/R1bdlsks10FgM=
SHA256 (Pkgfile) = 292e8e91ab37f1396a4f89c7d611bb736615a9797ea50267e9d2f92a8d628085
SHA256 (.footprint) = cd747f02bb34a0c1e8ed0edfbda866740d6ab9940824b2c6848ee51bb0ecf64c
SHA256 (qt-everywhere-src-5.15.2.tar.xz) = 3a530d1b243b5dec00bc54937455471aaa3e56849d2593edb8ded07228202240
SHA256 (qt5-cflags.patch) = cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c
SHA256 (qt5-logo.png) = ae1335ecd1cd2d17032184895ab298a636cdfa8121b0ed71307c4f2b23ec928e

View File

@ -5,7 +5,7 @@
# Optional: icu
name=qt5
version=5.15.1
version=5.15.2
release=1
source=(https://download.qt.io/official_releases/qt/${version::4}/$version/single/qt-everywhere-src-$version.tar.xz
qt5-cflags.patch

View File

@ -2,17 +2,17 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/qt5/
drwxr-xr-x root/root usr/include/qt5/QtPdf/
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.1/
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdfdestination_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdfdocument_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdflinkmodel_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdflinkmodel_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdfsearchmodel_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdfsearchresult_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qpdfselection_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/qtpdf-config_p.h
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.2/
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/
drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdfdestination_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdfdocument_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdflinkmodel_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdflinkmodel_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdfsearchmodel_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdfsearchresult_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qpdfselection_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/5.15.2/QtPdf/private/qtpdf-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/QPdfBookmarkModel
-rw-r--r-- root/root usr/include/qt5/QtPdf/QPdfDestination
-rw-r--r-- root/root usr/include/qt5/QtPdf/QPdfDocument
@ -39,11 +39,11 @@ drwxr-xr-x root/root usr/include/qt5/QtPdf/5.15.1/QtPdf/private/
-rw-r--r-- root/root usr/include/qt5/QtPdf/qtpdfglobal.h
-rw-r--r-- root/root usr/include/qt5/QtPdf/qtpdfversion.h
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.1/
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.1/QtPdfWidgets/
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.1/QtPdfWidgets/private/
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/5.15.1/QtPdfWidgets/private/qpdfview_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/5.15.1/QtPdfWidgets/private/qtpdfwidgets-config_p.h
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.2/
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.2/QtPdfWidgets/
drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.2/QtPdfWidgets/private/
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/5.15.2/QtPdfWidgets/private/qpdfview_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/5.15.2/QtPdfWidgets/private/qtpdfwidgets-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/QPdfView
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/QtPdfWidgets
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/QtPdfWidgetsDepends
@ -53,33 +53,33 @@ drwxr-xr-x root/root usr/include/qt5/QtPdfWidgets/5.15.1/QtPdfWidgets/private/
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/qtpdfwidgetsglobal.h
-rw-r--r-- root/root usr/include/qt5/QtPdfWidgets/qtpdfwidgetsversion.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.1/
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineaction_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineaction_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginecertificateerror_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineclientcertificateselection_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginecontextmenurequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginedialogrequests_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginedownloaditem_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginedownloaditem_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginefaviconprovider_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginehistory_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginehistory_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineloadrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginenavigationrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginenewviewrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineprofile_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginescript_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginesettings_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginesingleton_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginetestsupport_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebenginetouchhandleprovider_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineview_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qquickwebengineview_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qtwebengine-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/qtwebengineglobal_p.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.2/
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/
drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineaction_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineaction_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginecertificateerror_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineclientcertificateselection_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginecontextmenurequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginedialogrequests_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginedownloaditem_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginedownloaditem_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginefaviconprovider_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginehistory_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginehistory_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineloadrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginenavigationrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginenewviewrequest_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineprofile_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginescript_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginesettings_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginesingleton_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginetestsupport_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebenginetouchhandleprovider_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineview_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qquickwebengineview_p_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qtwebengine-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/5.15.2/QtWebEngine/private/qtwebengineglobal_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/QQuickWebEngineProfile
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/QQuickWebEngineScript
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/QtWebEngine
@ -91,15 +91,15 @@ drwxr-xr-x root/root usr/include/qt5/QtWebEngine/5.15.1/QtWebEngine/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/qtwebengineglobal.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngine/qtwebengineversion.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.1/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qtwebenginecore-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qtwebenginecoreglobal_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qwebenginecallback_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qwebenginecookiestore_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qwebenginemessagepumpscheduler_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/private/qwebengineurlrequestinfo_p.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.2/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qtwebenginecore-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qtwebenginecoreglobal_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qwebenginecallback_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qwebenginecookiestore_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qwebenginemessagepumpscheduler_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/5.15.2/QtWebEngineCore/private/qwebengineurlrequestinfo_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/QWebEngineCallback
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/QWebEngineClientCertificateStore
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/QWebEngineCookieStore
@ -133,17 +133,17 @@ drwxr-xr-x root/root usr/include/qt5/QtWebEngineCore/5.15.1/QtWebEngineCore/priv
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/qwebengineurlscheme.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineCore/qwebengineurlschemehandler.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qtwebenginewidgets-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebenginedownloaditem_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebenginehistory_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebenginenotificationpresenter_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebenginepage_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebengineprofile_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebenginescriptcollection_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.1/QtWebEngineWidgets/private/qwebengineview_p.h
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/
drwxr-xr-x root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qtwebenginewidgets-config_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebenginedownloaditem_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebenginehistory_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebenginenotificationpresenter_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebenginepage_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebengineprofile_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebenginescriptcollection_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/5.15.2/QtWebEngineWidgets/private/qwebengineview_p.h
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/QWebEngineCertificateError
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/QWebEngineClientCertificateSelection
-rw-r--r-- root/root usr/include/qt5/QtWebEngineWidgets/QWebEngineContextMenuData
@ -199,34 +199,34 @@ drwxr-xr-x root/root usr/lib/cmake/Qt5WebEngineWidgets/
-rw-r--r-- root/root usr/lib/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfigVersion.cmake
-rw-r--r-- root/root usr/lib/libQt5Pdf.la
-rw-r--r-- root/root usr/lib/libQt5Pdf.prl
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so -> libQt5Pdf.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so.5 -> libQt5Pdf.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so.5.15 -> libQt5Pdf.so.5.15.1
-rwxr-xr-x root/root usr/lib/libQt5Pdf.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so -> libQt5Pdf.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so.5 -> libQt5Pdf.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5Pdf.so.5.15 -> libQt5Pdf.so.5.15.2
-rwxr-xr-x root/root usr/lib/libQt5Pdf.so.5.15.2
-rw-r--r-- root/root usr/lib/libQt5PdfWidgets.la
-rw-r--r-- root/root usr/lib/libQt5PdfWidgets.prl
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so -> libQt5PdfWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so.5 -> libQt5PdfWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so.5.15 -> libQt5PdfWidgets.so.5.15.1
-rwxr-xr-x root/root usr/lib/libQt5PdfWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so -> libQt5PdfWidgets.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so.5 -> libQt5PdfWidgets.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5PdfWidgets.so.5.15 -> libQt5PdfWidgets.so.5.15.2
-rwxr-xr-x root/root usr/lib/libQt5PdfWidgets.so.5.15.2
-rw-r--r-- root/root usr/lib/libQt5WebEngine.la
-rw-r--r-- root/root usr/lib/libQt5WebEngine.prl
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so -> libQt5WebEngine.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so.5 -> libQt5WebEngine.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so.5.15 -> libQt5WebEngine.so.5.15.1
-rwxr-xr-x root/root usr/lib/libQt5WebEngine.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so -> libQt5WebEngine.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so.5 -> libQt5WebEngine.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngine.so.5.15 -> libQt5WebEngine.so.5.15.2
-rwxr-xr-x root/root usr/lib/libQt5WebEngine.so.5.15.2
-rw-r--r-- root/root usr/lib/libQt5WebEngineCore.la
-rw-r--r-- root/root usr/lib/libQt5WebEngineCore.prl
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so -> libQt5WebEngineCore.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so.5 -> libQt5WebEngineCore.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so.5.15 -> libQt5WebEngineCore.so.5.15.1
-rwxr-xr-x root/root usr/lib/libQt5WebEngineCore.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so -> libQt5WebEngineCore.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so.5 -> libQt5WebEngineCore.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngineCore.so.5.15 -> libQt5WebEngineCore.so.5.15.2
-rwxr-xr-x root/root usr/lib/libQt5WebEngineCore.so.5.15.2
-rw-r--r-- root/root usr/lib/libQt5WebEngineWidgets.la
-rw-r--r-- root/root usr/lib/libQt5WebEngineWidgets.prl
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so -> libQt5WebEngineWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so.5 -> libQt5WebEngineWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so.5.15 -> libQt5WebEngineWidgets.so.5.15.1
-rwxr-xr-x root/root usr/lib/libQt5WebEngineWidgets.so.5.15.1
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so -> libQt5WebEngineWidgets.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so.5 -> libQt5WebEngineWidgets.so.5.15.2
lrwxrwxrwx root/root usr/lib/libQt5WebEngineWidgets.so.5.15 -> libQt5WebEngineWidgets.so.5.15.2
-rwxr-xr-x root/root usr/lib/libQt5WebEngineWidgets.so.5.15.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5Pdf.pc
-rw-r--r-- root/root usr/lib/pkgconfig/Qt5PdfWidgets.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eT1cERCPV6ECiaqDR36hJaPDnbZDADLhZ4Ac8X0Flf6Y1PQ0Ept1XHYbwz5LhVVhGW2W37lig16j6CcZQbFEgs=
SHA256 (Pkgfile) = 95c69626e0cd6dd6a049e6235be729eb8ac34a4a63493ec392e30cb604e66164
SHA256 (.footprint) = afa04e3248573d1f3aa2112362f45b2915ddd849964cfc83a7c215965c5060a0
SHA256 (qtwebengine-everywhere-src-5.15.1.tar.xz) = f903e98fe3cd717161252710125fce011cf882ced96c24968b0c38811fbefdf2
RWSE3ohX2g5d/S+oZJ5/EgXY/bbvbCTor7hSmaEk1lJuf8EwlMIu5N1gygeYRbyEQompY18ha51vbFn0igxaPMn39Tp9F9AZiQQ=
SHA256 (Pkgfile) = 8c40e20622ceb01d354194ca54de2101e91d573c0a6d1f9352422aaa84d1c013
SHA256 (.footprint) = 44b1db82a792e29d0e7a4bf1a4ea7d0ed7b440ab9f0df493452d03ff3c164554
SHA256 (qtwebengine-everywhere-src-5.15.2.tar.xz) = c8afca0e43d84f7bd595436fbe4d13a5bbdb81ec5104d605085d07545b6f91e0

View File

@ -4,7 +4,7 @@
# Depends on: nss qt5 xorg-libxscrnsaver xorg-libxtst libvpx python
name=qtwebengine
version=5.15.1
version=5.15.2
release=1
source=(https://download.qt.io/official_releases/qt/${version::4}/$version/submodules/$name-everywhere-src-$version.tar.xz)
@ -16,8 +16,8 @@ build() {
prt-get isinst ccache && export \
QMAKE_CC='ccache gcc' \
QMAKE_LINK_C='cache gcc' \
QMAKE_LINK_C_SHLIB='cache gcc' \
QMAKE_LINK_C='ccache gcc' \
QMAKE_LINK_C_SHLIB='ccache gcc' \
QMAKE_CXX='ccache g++' \
QMAKE_LINK='ccache g++' \
QMAKE_LINK_SHLIB='ccache g++' \

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/XPgcn6dVdXdcbl681TqTutW4J0U1geJ++sBSkpfyOlcDdYRWj/FJcmuYQpUPJX0/K7eX67VGm3ssSBv7AvrVwI=
SHA256 (Pkgfile) = c248859db360c0c6195280842257155d5b3262bb57f8a5b246d1038d0c33ad0c
RWSE3ohX2g5d/YNAj7GecQ6GoeQN4qZAQXqpQ4CTmpgbSXirPz6CCeK+Kb6bWw5wUyQItAYcpsOLiQcpKUV+Qdn5NiWS+iQErgA=
SHA256 (Pkgfile) = 1a8eaa3c6066785460be46a24f6a3e2b574feed7d12ca42c853e700138ae4a49
SHA256 (.footprint) = 062bd0639c689fe4383b3d3d1321dbbed7b2e498ea2db16d4d58f2685da7bf7f
SHA256 (librsync-v2.3.1.tar.gz) = dbd7eb643665691bdf4009174461463737b19b4814b789baad62914cabfe4569

View File

@ -9,10 +9,11 @@ release=1
source=(https://github.com/librsync/librsync/archive/v$version/librsync-v$version.tar.gz)
build() {
cmake -Slibrsync-$version -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release
cmake -S librsync-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
cmake --build build

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eixqmNnY26o/fmGqvOMrhQxUNz6a7PBVUm3+IyrSf9fjs2RJokn5yfg6h0sdxjE54lEW8hhaqRe8/FyhdSGMgE=
SHA256 (Pkgfile) = e894886ce6735bf785a0980f1bbfb15741e0a16e0ce7a2d927b75d258b3bdc6a
RWSE3ohX2g5d/Up4LU9o9RcS8TcOGiJ4Q80Su9Re0OmnetfD96lfAm9xzDyEug1EkUmXxghObdmnR2Vz54V+9gx2da7NnSrsGww=
SHA256 (Pkgfile) = a3ca116ecdeb77b17731102a44207c99f2ee9a494059d940b2ebe3acf38b4993
SHA256 (.footprint) = 4459f5bedf217fe8b17b6f37e4eebf11955257ee456ab2197ad1ce8d05427396
SHA256 (socket_wrapper-1.2.5.tar.gz) = dd0575a70d87bdc3107aea208feceef37ae2b1583038836115091699017e63f1

View File

@ -10,9 +10,10 @@ source=(https://ftp.samba.org/pub/cwrap/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build\
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --install build
}

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/Y5yKriwEbjCm33vhry8pUKY24I22Y3d1rDSePy8viSoomT9OMEThbhhLdi7pN0gxGE1DauSESsDwdQapL06pQo=
SHA256 (Pkgfile) = e435860b9bc9b596bf381981f19975e3039617a4b8fedf9a6ff489426143b74c
RWSE3ohX2g5d/WvxYoFWCMUR80IKo0keroNXLdJtvB653UmVFjj1XuO5qfAhThak0u1otoXi8J9l17KQFGjd00CRc/EvXQ/URwM=
SHA256 (Pkgfile) = e2f087b99ef5f775c8225e1c153c50c16e22b73c382c0449e56027c53705e732
SHA256 (.footprint) = a67d4e4a49796e335fefd4a2a9f91402859622e3610c47d7e0d7aefebc36fd9e
SHA256 (uid_wrapper-1.2.8.tar.gz) = 0e6f1e07d8a9c1ac5984bac3c1a9c3d9b1e35b3eb01b9e973dbc2543514b956b

View File

@ -9,10 +9,11 @@ release=1
source=(https://ftp.samba.org/pub/cwrap/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build\
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS -DNDEBUG" \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib
cmake --build build
DESTDIR=$PKG cmake --install build
}