Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions ports/paraview/explicit_int_cast.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
diff --git a/pqAbstractItemViewEventTranslator.cxx b/pqAbstractItemViewEventTranslator.cxx
index 07f7b42071..859a94fd2a 100644
--- a/pqAbstractItemViewEventTranslator.cxx
+++ b/pqAbstractItemViewEventTranslator.cxx
@@ -118,8 +118,8 @@ bool pqAbstractItemViewEventTranslator::translateEvent(QObject* Object, QEvent*

QString info = QString("%1,%2,%3,%4,%5,%6")
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers())
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers()))
.arg(relPt.x())
.arg(relPt.y())
.arg(idxStr);
diff --git a/pqBasicWidgetEventTranslator.cxx b/pqBasicWidgetEventTranslator.cxx
index 0421853f4e..d58db24546 100644
--- a/pqBasicWidgetEventTranslator.cxx
+++ b/pqBasicWidgetEventTranslator.cxx
@@ -78,8 +78,8 @@ bool pqBasicWidgetEventTranslator::translateEvent(
QMouseEvent* mouseEvent = static_cast<QMouseEvent*>(event);
QString info = QString("%1,%2,%3,%4,%5")
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers())
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers()))
.arg(mouseEvent->x())
.arg(mouseEvent->y());

50 changes: 50 additions & 0 deletions ports/paraview/explicit_int_cast_2.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
diff --git a/Qt/Core/pqFlatTreeViewEventTranslator.cxx b/Qt/Core/pqFlatTreeViewEventTranslator.cxx
index 52775c6f0f..3a62c534b9 100644
--- a/Qt/Core/pqFlatTreeViewEventTranslator.cxx
+++ b/Qt/Core/pqFlatTreeViewEventTranslator.cxx
@@ -73,8 +73,8 @@ bool pqFlatTreeViewEventTranslator::translateEvent(QObject* Object, QEvent* Even

QString info = QString("%1,%2,%3,%4,%5,%6")
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers())
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers()))
.arg(relPt.x())
.arg(relPt.y())
.arg(idxStr);
diff --git a/Qt/Core/pqQVTKWidgetEventTranslator.cxx b/Qt/Core/pqQVTKWidgetEventTranslator.cxx
index e6fffabb12..74a25bd3da 100644
--- a/Qt/Core/pqQVTKWidgetEventTranslator.cxx
+++ b/Qt/Core/pqQVTKWidgetEventTranslator.cxx
@@ -85,8 +85,8 @@ bool pqQVTKWidgetEventTranslator::translateEvent(
.arg(normalized_x)
.arg(normalized_y)
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers()));
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers())));
}
return true;
break;
@@ -108,15 +108,15 @@ bool pqQVTKWidgetEventTranslator::translateEvent(
.arg(normalized_x)
.arg(normalized_y)
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers()));
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers())));
Q_EMIT recordEvent(widget, "mouseRelease",
QString("(%1,%2,%3,%4,%5)")
.arg(normalized_x)
.arg(normalized_y)
.arg(mouseEvent->button())
- .arg(mouseEvent->buttons())
- .arg(mouseEvent->modifiers()));
+ .arg(static_cast<int>(mouseEvent->buttons()))
+ .arg(static_cast<int>(mouseEvent->modifiers())));
}
return true;
break;
3 changes: 3 additions & 0 deletions ports/paraview/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ vcpkg_from_github(
fix-configure.patch
protobuf-version.patch
plugin.patch
explicit_int_cast_2.patch
)

if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
Expand Down Expand Up @@ -89,6 +90,8 @@ vcpkg_from_gitlab(
REPO paraview/qttesting
REF 375c33053704e2d99dda4d2e1dfc9f6f85b3e73f
SHA512 4d42352394017f4a07ed96dea6b5c0caf3bc6b22bbe0c8f5df6d2740cb7b2946e0b04ac7b79b88bc7c4281bb8d48071878f42c41c042de8ef6979818d26490e5
PATCHES
explicit_int_cast.patch
)

vcpkg_from_gitlab(
Expand Down
2 changes: 1 addition & 1 deletion ports/paraview/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "paraview",
"version": "5.12.1",
"port-version": 5,
"port-version": 6,
"description": "VTK-based Data Analysis and Visualization Application",
"homepage": "https://www.paraview.org/",
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion ports/qt/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qt",
"version": "6.10.0",
"version": "6.10.1",
"description": "A cross-platform application and UI framework.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qt3d/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qt3d_HASH "8c7d7f7c1975c05024fe5a5672840d10fecae84cd057c44d00815a13f75f1aa3647b4b1963f4a906a2a8269bb38bc2c62a1c23b6165f6004313d911f46fd7b20")
set(qt3d_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qt3d-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qt3d-everywhere-src-6.10.0.tar.xz")
set(qt3d_FILENAME "qt3d-everywhere-src-6.10.0.tar.xz")
set(qt3d_HASH "04068a61898e1b688b3688ed40f4122a2cf7663ea28f89a6ad09d5a5f0ad383fd07a2b276831802956f111c54f4d1451fb77fde74df26c82f9bceecf14f2a65b")
set(qt3d_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qt3d-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qt3d-everywhere-src-6.10.1.tar.xz")
set(qt3d_FILENAME "qt3d-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qt3d/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qt3d",
"version": "6.10.0",
"version": "6.10.1",
"description": "Qt wrapper for existing OPC UA stacks",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qt5compat/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qt5compat_HASH "688483f91a838c976e9af79a5f19c3fa80127756a627ab0e8a9ef9d37c4c4f9d1d2aa461e8afb1dd61d7759c55f9761119d27e8bf626bf81d33e300e8d97ffcc")
set(qt5compat_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qt5compat-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qt5compat-everywhere-src-6.10.0.tar.xz")
set(qt5compat_FILENAME "qt5compat-everywhere-src-6.10.0.tar.xz")
set(qt5compat_HASH "cc824aaeae5dc86e13b9fb54521965d1bc24dfb2073debde8669b4d52e843eaf8728f350fc15f920cfcbfc3311bd635cbe03ae68d281347c831ec1c9161a1b47")
set(qt5compat_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qt5compat-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qt5compat-everywhere-src-6.10.1.tar.xz")
set(qt5compat_FILENAME "qt5compat-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qt5compat/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qt5compat",
"version": "6.10.0",
"version": "6.10.1",
"description": "The Qt 5 Core Compat module contains the Qt 5 Core APIs that were removed in Qt 6. The module facilitates the transition to Qt 6.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtactiveqt/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtactiveqt_HASH "30246f8cfefa5cb6442eb6a04ecd6019c18d6b4c1d32ba314d913030a9e8c760b572ac087c29f8f31924b31a95836cb5d76bd8e79bf41934fe471a9a3a40d0c8")
set(qtactiveqt_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtactiveqt-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtactiveqt-everywhere-src-6.10.0.tar.xz")
set(qtactiveqt_FILENAME "qtactiveqt-everywhere-src-6.10.0.tar.xz")
set(qtactiveqt_HASH "16abb70bf82df3985475ce9fcdb71bba45788cae054f9c1b4370529f1daa12dd8365b4776b5163a0b9f69dacfc2a56e5f00c4ef61eec764374a33d93a4dc3ed9")
set(qtactiveqt_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtactiveqt-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtactiveqt-everywhere-src-6.10.1.tar.xz")
set(qtactiveqt_FILENAME "qtactiveqt-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtactiveqt/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtactiveqt",
"version": "6.10.0",
"version": "6.10.1",
"description": "ActiveQt",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtapplicationmanager/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtapplicationmanager_HASH "cea702246201f94d8491d11e5d986ab254dc344ee46a2b03f3090be87660875cf24ae7d9e234bf769c93d9b4543627ddd32d9178a99a91c0cedfc030384b7baf")
set(qtapplicationmanager_URL "https://github.com/qt/qtapplicationmanager/archive/v6.10.0.tar.gz")
set(qtapplicationmanager_FILENAME "qt-qtapplicationmanager-v6.10.0.tar.gz")
set(qtapplicationmanager_HASH "2c6cab0ee07ba4c7c43bff070c14b7f2d0e2839eecdbbe333534d86f0aae0e54f649b16de56e0d0eaa3758f726ef05ecca1b11311c065fe81e08a91a977da37c")
set(qtapplicationmanager_URL "https://github.com/qt/qtapplicationmanager/archive/v6.10.1.tar.gz")
set(qtapplicationmanager_FILENAME "qt-qtapplicationmanager-v6.10.1.tar.gz")
2 changes: 1 addition & 1 deletion ports/qtapplicationmanager/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtapplicationmanager",
"version": "6.10.0",
"version": "6.10.1",
"description": "Qt component for application lifecycle management",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
45 changes: 0 additions & 45 deletions ports/qtbase/2d4915.diff

This file was deleted.

2 changes: 1 addition & 1 deletion ports/qtbase/cmake/qt_port_details.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## 6. The build should fail with "Done downloading version and emitting hashes." This will have changed out the vcpkg.json versions of the qt ports and rewritten qt_port_data.cmake
## 7. Set QT_UPDATE_VERSION back to 0

set(QT_VERSION 6.10.0)
set(QT_VERSION 6.10.1)
set(QT_DEV_BRANCH 0)

set(QT_UPDATE_VERSION 0)
Expand Down
6 changes: 3 additions & 3 deletions ports/qtbase/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtbase_HASH "bc3b98f8b2387ca207f6cd87478bdefa911442fd9981d38ecd8793856439e415ce9182b524dabc6b0a1ba5c27e22badfc7ca67a0a43e00186ee6865886937917")
set(qtbase_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtbase-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtbase-everywhere-src-6.10.0.tar.xz")
set(qtbase_FILENAME "qtbase-everywhere-src-6.10.0.tar.xz")
set(qtbase_HASH "fd5dcdc59ec3b39e48563513ae438eb4540a28e72c46961295de2ccb08609289d477ef7e91aac0b8983f2d5b05b901b4f5be10eaca4ac4c6aa8cd598f37a228e")
set(qtbase_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtbase-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtbase-everywhere-src-6.10.1.tar.xz")
set(qtbase_FILENAME "qtbase-everywhere-src-6.10.1.tar.xz")
1 change: 0 additions & 1 deletion ports/qtbase/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ set(${PORT}_PATCHES
moltenvk.patch
xcodebuild-not-installed.patch
fix-libresolv-test.patch
2d4915.diff
framework.patch
use_inotify_on_freebsd.patch
)
Expand Down
3 changes: 1 addition & 2 deletions ports/qtbase/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "qtbase",
"version": "6.10.0",
"port-version": 2,
"version": "6.10.1",
"description": "Qt Base (Core, Gui, Widgets, Network, ...)",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtcharts/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtcharts_HASH "c25eb7e051de685ed1830efb51c112877dd6baff801cca94b87f5307f14fe956aec36ce74979533ea2942e4374e8316431deeb667735c197207ac0341eac1639")
set(qtcharts_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtcharts-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtcharts-everywhere-src-6.10.0.tar.xz")
set(qtcharts_FILENAME "qtcharts-everywhere-src-6.10.0.tar.xz")
set(qtcharts_HASH "9685a81a73fb6f962b8522d675cd3b456823eaea7727f9d97672d4dcefa39edcf576624fc8496f4ff6f65c520fb1fd5917441dc2a1c16e2c9dacd868fdd84652")
set(qtcharts_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtcharts-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtcharts-everywhere-src-6.10.1.tar.xz")
set(qtcharts_FILENAME "qtcharts-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtcharts/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtcharts",
"version": "6.10.0",
"version": "6.10.1",
"description": "The Qt Charts module provides a set of easy-to-use chart components. It uses the Qt Graphics View Framework to integrate charts with modern user interfaces.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtcoap/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtcoap_HASH "e9cfafcc92e9447386b81c18baa0fe6066b8cb5583000786e134db096cd1c8377cf040076d705a63d083adb073c42be3bf6cdb9a442aab04cf9f7be40cea99d7")
set(qtcoap_URL "https://github.com/qt/qtcoap/archive/v6.10.0.tar.gz")
set(qtcoap_FILENAME "qt-qtcoap-v6.10.0.tar.gz")
set(qtcoap_HASH "0578e389562624188016673e8d94ecdbdebe2a7047bda2184462fbccdba43b55ebf75b280245453167473ef45855aa00f25f37c52f7f7ffa51989aebb9c08eb4")
set(qtcoap_URL "https://github.com/qt/qtcoap/archive/v6.10.1.tar.gz")
set(qtcoap_FILENAME "qt-qtcoap-v6.10.1.tar.gz")
2 changes: 1 addition & 1 deletion ports/qtcoap/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtcoap",
"version": "6.10.0",
"version": "6.10.1",
"description": "Qt CoAP implements the client side of CoAP.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtconnectivity/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtconnectivity_HASH "b51befddfa59647b94dce24ff15aee3eecb8f19636c87eb4a54283fd850becc45f5d7d2138db2f419cd31721e6a2ed3ff5051fe0fd14ef4cb73121961af99392")
set(qtconnectivity_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtconnectivity-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtconnectivity-everywhere-src-6.10.0.tar.xz")
set(qtconnectivity_FILENAME "qtconnectivity-everywhere-src-6.10.0.tar.xz")
set(qtconnectivity_HASH "a299584e0d1f33517f25f282365ad149244386d0cc9f1196b5e1415017f0f24c8558f79ff2cb8f22c9d8fa98aba0bbed9e93b634ad0a10532288e65836d8d9f7")
set(qtconnectivity_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtconnectivity-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtconnectivity-everywhere-src-6.10.1.tar.xz")
set(qtconnectivity_FILENAME "qtconnectivity-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtconnectivity/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtconnectivity",
"version": "6.10.0",
"version": "6.10.1",
"description": "The Qt Connectivity module provides access to Bluetooth and NFC hardware.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtdatavis3d/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtdatavis3d_HASH "b457bc768779e2dc7f3c4bd656c6254bf9a05869d20d2a26254678f9892de9c2c07cc2b660b9924684f2b38c8f21a3e30e89bcc86c660875fcbc46cdf3ba1b56")
set(qtdatavis3d_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtdatavis3d-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtdatavis3d-everywhere-src-6.10.0.tar.xz")
set(qtdatavis3d_FILENAME "qtdatavis3d-everywhere-src-6.10.0.tar.xz")
set(qtdatavis3d_HASH "a320aab2cd860709903dbdf2beacf365cf0ff2afdedf6cc76a9497ef7b451b622856c96a00e344ad4af17879ba06513539253dc7c9a18e25f6e7c64413af7e03")
set(qtdatavis3d_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtdatavis3d-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtdatavis3d-everywhere-src-6.10.1.tar.xz")
set(qtdatavis3d_FILENAME "qtdatavis3d-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtdatavis3d/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtdatavis3d",
"version": "6.10.0",
"version": "6.10.1",
"description": "The Qt Data Visualization module enables you to visualize data in 3D as bar, scatter, and surface graphs.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtdeclarative/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtdeclarative_HASH "104d0d237bbde943d739bfa4831f85576b67fb838d06b1d4760976aaa74fadac3523544eecdcf4d614991adc9c73294c2494bf094217ce648e6a721ab95a5415")
set(qtdeclarative_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtdeclarative-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtdeclarative-everywhere-src-6.10.0.tar.xz")
set(qtdeclarative_FILENAME "qtdeclarative-everywhere-src-6.10.0.tar.xz")
set(qtdeclarative_HASH "e433ae1e282175d251c3257eed775bc5835f564bbd7f34244c9765af59eee2b97f4b2852d59987942315cda14a763c65e509553439e2a4c2ac2652ea9e7a56b6")
set(qtdeclarative_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtdeclarative-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtdeclarative-everywhere-src-6.10.1.tar.xz")
set(qtdeclarative_FILENAME "qtdeclarative-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtdeclarative/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtdeclarative",
"version": "6.10.0",
"version": "6.10.1",
"description": "Qt Declarative (Quick 2)",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtdeviceutilities/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtdeviceutilities_HASH "c6a679c7ef7d06adb7140c0f772b1a47ef584efd0815e32bd42fb8c45369535bf72856868b5cd10e65d1b99d820bfbe642b56e7ec27583e23b29ddbb55bec3af")
set(qtdeviceutilities_URL "https://github.com/qt/qtdeviceutilities/archive/6.10.0.tar.gz")
set(qtdeviceutilities_FILENAME "qt-qtdeviceutilities-6.10.0.tar.gz")
set(qtdeviceutilities_HASH "0369a4f49c6caeda6f5297494750aedaeb9c7b331c4469e8acd11dbd982d693056173cdf2e16ec6df80157f1922a573e3281e5ffd00193e33086fcbba0a1e054")
set(qtdeviceutilities_URL "https://github.com/qt/qtdeviceutilities/archive/6.10.1.tar.gz")
set(qtdeviceutilities_FILENAME "qt-qtdeviceutilities-6.10.1.tar.gz")
2 changes: 1 addition & 1 deletion ports/qtdeviceutilities/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtdeviceutilities",
"version": "6.10.0",
"version": "6.10.1",
"description": "Qt Device Utilities provides functionality that is useful for controlling settings in embedded applications.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtdoc/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtdoc_HASH "a8504a99a968836afee3c962669cc5b028cde3184b3c2000b52b94acd6b013abe686c87c3487389498fcc59af3a59db2f0c6213a715ad4bb5168fc697499d0d4")
set(qtdoc_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtdoc-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtdoc-everywhere-src-6.10.0.tar.xz")
set(qtdoc_FILENAME "qtdoc-everywhere-src-6.10.0.tar.xz")
set(qtdoc_HASH "9afbe43749a2fed84f07dcb4ccf9ba21bb77ea471aeada32e2d92a24a82d2fb197162770a52195c7697902b213a5acbba465a1959c9ab906309333739fcec123")
set(qtdoc_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtdoc-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtdoc-everywhere-src-6.10.1.tar.xz")
set(qtdoc_FILENAME "qtdoc-everywhere-src-6.10.1.tar.xz")
2 changes: 1 addition & 1 deletion ports/qtdoc/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qtdoc",
"version": "6.10.0",
"version": "6.10.1",
"description": "The Qt documentation.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down
6 changes: 3 additions & 3 deletions ports/qtgraphs/port.data.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
set(qtgraphs_HASH "77e5f740c583df9ec2d7d007d612725f6e4751a796757a354d89b889649f23f1a1ca23879e2432088071e0e4b95bd687d14586fbd3083c52a2b650c5d3c8e3c5")
set(qtgraphs_URL "https://download.qt.io/archive/qt/6.10/6.10.0/submodules/qtgraphs-everywhere-src-6.10.0.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.0/submodules/qtgraphs-everywhere-src-6.10.0.tar.xz")
set(qtgraphs_FILENAME "qtgraphs-everywhere-src-6.10.0.tar.xz")
set(qtgraphs_HASH "21426529c3ba9f45fce4b73e6bb4e52f5df62d5fab09b5c093b78b0246dcc537f65c3dc2378523203d44c6b7c4e860f884925c1ef73aecc733f159dec97b5e95")
set(qtgraphs_URL "https://download.qt.io/archive/qt/6.10/6.10.1/submodules/qtgraphs-everywhere-src-6.10.1.tar.xz;https://mirrors.ocf.berkeley.edu/qt/archive/qt/6.10/6.10.1/submodules/qtgraphs-everywhere-src-6.10.1.tar.xz")
set(qtgraphs_FILENAME "qtgraphs-everywhere-src-6.10.1.tar.xz")
Loading