pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Update qt6 to version 6.1



Module Name:	pkgsrc-wip
Committed By:	Niclas Rosenvik <nros%netbsd.org@localhost>
Pushed By:	nros
Date:		Wed May 12 18:36:45 2021 +0000
Changeset:	f384e2e8b2d2abea47482fe50a106fdf6cf34a39

Modified Files:
	qt6-odbc/distinfo
	qt6-psql/distinfo
	qt6-qt3d/Makefile
	qt6-qt3d/PLIST
	qt6-qt3d/distinfo
	qt6-qt5compat/distinfo
	qt6-qtbase/Makefile
	qt6-qtbase/PLIST
	qt6-qtbase/distinfo
	qt6-qtbase/patches/patch-src_corelib_CMakeLists.txt
	qt6-qtdeclarative/PLIST
	qt6-qtdeclarative/distinfo
	qt6-qtdeclarative/patches/patch-src_qmltest_CMakeLists.txt
	qt6-qtimageformats/Makefile
	qt6-qtimageformats/PLIST
	qt6-qtimageformats/distinfo
	qt6-qtnetworkauth/Makefile
	qt6-qtnetworkauth/distinfo
	qt6-qtquick3d/PLIST
	qt6-qtquick3d/distinfo
	qt6-qtquickcontrols2/PLIST
	qt6-qtquickcontrols2/distinfo
	qt6-qtquicktimeline/distinfo
	qt6-qtshadertools/distinfo
	qt6-qtsvg/distinfo
	qt6-qttools/PLIST
	qt6-qttools/distinfo
	qt6-qtwayland/distinfo
	qt6/Makefile.common
Added Files:
	qt6-qtbase/patches/patch-src_corelib_io_qfilesystemwatcher__kqueue__p.h
	qt6-qtquick3d/TODO
Removed Files:
	qt6-qtbase/patches/patch-configure
	qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.cpp
	qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.h
	qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion__uname.cpp
	qt6-qtbase/patches/patch-src_tools_bootstrap_CMakeLists.txt
	qt6-qtimageformats/files/FindWrapMNG.cmake
	qt6-qtimageformats/patches/patch-src_imageformats_configure.cmake
	qt6-qtimageformats/patches/patch-src_plugins_imageformats_CMakeLists.txt
	qt6-qtimageformats/patches/patch-src_plugins_imageformats_mng_CMakeLists.txt

Log Message:
Update qt6 to version 6.1

pkgsrc changes:
libmng is supported by cmake in qtimageformats upstream
patches has been removed.
no need for QT_ADDLIB in makefiles sonce the additinal libraries
have been moved to the same download directory as the rest of
the files.
Qt 6.1 requires gcc 9.

Changes from release notes:
Important Changes
_________________

[qtbase]
612a01be65 Deprecate QScopedPointer::take()
- The take() function has been deprecated. This was an API mistake, as
it allowed the pointer/pointee to escape from the scope, defeating the
point of the QScopedPointer class. If you need such semantics, use
std::unique_ptr (and call release()).

d8602ce58b QFont: Prefer setFamilies() over setFamily()
- Indicated that setFamilies/families is preferred over setFamily/family
to ensure that font family names are preserved when spaces, commas and
so on are used in the name.

fb6b7869e8 QPoint(F): add support for structured binding
- QPoint is usable in a structured binding.

c63669bb8c QLayout: add a way to unset user-defined contents margins
- Added unsetContentsMargins().

8ae9431c79 QMargins(F): add support for structured binding
- QMargins is usable in a structured binding.

54875be84d Add convenience functions for QFuture creation
- Add convenience functions to create a ready QFuture and a QFuture with
an exception

1ff25785ff Avoid integer overflow and division by zero
- Pen patterns are restrained to a maximum length and values of 1024,
fixing oss-fuzz issue 25310.

3f8896d77e QSet: add missing insert-with-hint
- Added insert() overload taking an insertion hint, for STL
compatibility.

5771591fbc QString/QByteArray: add erase() for iterators
- Added erase().

3a4115d123 Return a more useful date-time on parser failure in spring-
forward gap
- Restored pre-5.15.0 behavior when parsing a date-time from a string
(and document what it implies): if the string has the right form but
represents a date-time that was skipped by a time-zone transition (e.g.
a DST spring-forward), the invalid date-time object returned can, none
the less, be used to recover a near-by date-time that may be more useful
in some cases. From 5.15.0 to 5.15.2 and in 6.0.0, a default-constructed
QDateTime was returned in place of this more informative invalid date-
time.

d27d2b5d72 QMetaProperty::typeName: use name from metatype
- QMetaProperty::typeName returns now always the same name as name() of
the corresponding metatype. This can cause a change for enum properties
which were not fully-qualified.

d982fdfca4 QHeaderView: allow un-sorting of models
- Added the sortIndicatorClearable property. Setting this property
allows the user to clear the sort indicator on a section, resetting the
model to its default ordering.

81e893fb2d QHash: support std::hash as hashing function
- QHash, QMultiHash and QSet now support for key types anything that can
be hashed via std::hash, instead of always requiring a qHash() overload.

1158ff67b4 QSslSocket::verify: do not alter the default configuration
- QSslSocket::verify - do not change the default configuration

c176525f13 Sequential general purpose containers: add erase/erase_if
- Added erase() and erase_if(), for consistent container erasure. Added
removeIf() as a method, complementing removeOne() / removeAll().

62dad9be9e QSet: add erase_if
- Added erase_if() for consistent container erasure. Added removeIf() as
a method.

b2ea30dde0 QString/QByteArray: add erase/erase_if
- Added erase() and erase_if() for consistent container erasure.

e12e2b43b7 Associative containers: add erase_if
- Added removeIf() and erase_if().

427da06414 QRE: discourage users from assuming that QRE stores the
subject
- QRegularExpression takes a shallow copy of a QString subject when
matching over it. This means that users can destroy or modify the string
data while still having match results over it. This behavior is
deprecated; in a future version of Qt, QRegularExpression will no longer
take a copy. Note that behavior has always been undocumented and users
were never supposed to modify a subject string while match objects were
alive on it. In practice, it's very unlikely that your code is relying
on the existing behavior.

a1a55d5b93 QTestLib: add a abort-on-fail environment variable
- When the QTEST_FATAL_FAIL environment variable is set to a non-zero
value, a test immediately aborts its execution. This is useful to debug
intermittent failures.

509c257521 PCRE: update to 10.36
- PCRE2 has been updated to version 10.36.

2b8674a2fc Make the overflow math functions public
- The overflow-safe math functions qAddOverflow(), qSubOverflow(),
qMulOverflow() were added.

4d94384612 QHeaderView: respect the font role while calculating the
elided text
- QStyleOptionHeader got a new member textElideMode.

7c3208c97d QString: fix count(QRegularExpression)
- Fixed a corner case when using QString::count(QRegularExpression),
causing an empty in the last position not to be accounted for in the
returned result.

ce0b767310 QStringView: add some QRegularExpression-related overloads
- Added the indexOf(), contains(), lastIndexOf() and count() methods
taking a QRegularExpression.

6dac45b246 QSocketNotifier: extend API to provide more flexible startup
- Added setSocket() and an additional constructor which requires no
socket.

30811f6428 Fix qt_alphaVersion and qt_opaqueVersion in the trivial case
- Opaque pixmaps on devices with a non-standard opaque format will now
correctly match format for faster blitting. Same with semitransparent
pixmaps on devices with a non-standard semitransparent format.

c88905f0a9 Disallow construction of QPropertyBinding from a property
- It was possible to create a QPropertyBinding from a property; this
would steal any set binding from the property or create an invalid
binding if none was set. Use makePropertyBinding if you want to to
create a binding which depends on the property's value, or takeBinding
if you want to repurpose the property's binding.

04c34eb799 QProcess: allow merged channels forwarding for detached
processes
- Added support for QProcess::MergedChannels mode with startDetached().

e334d6f9a7 QProcess: allow pipelining for detached processes
- Added support for setStandardOutputProcess() with startDetached().

6974737695 Change QLineF::setLength() to work whenever length() is non-
zero
- QLineF::setLength() will now set the length if the line's length() is
non-zero. Previously, it was documented to only set the length if
isNull() was false; this is a fuzzy check, so isNull() could be true for
a line with non-zero length().

b211148e4b Sql ODBC driver: add direct support for float and short
datatype
- The ODBC driver now properly maps QMetaType::Float to real sql
datatype and QMetaType::Short to smallint

f8f629cc13 QSql/QSqlite: return extended error codes by default
- The plugin now returns the extended error codes by default.

6a3f8cbc3a Use design metrics when adding text to QPainterPath
- Fixed an issue where QPainterPath::addText() would get inconsistent
kerning for smaller font sizes when hinting is enabled.

376e3bd8ec Introduce QUrlResourceProvider to load resources for HTML
- Introduced QUrlResourceProvider that allows to load resources for
HTML. It is intended to replace the use of
QTextDocument::loadResource().

b2a3389cfe Extend qIsInf() and friends to handle integral types sensibly
- qIsInf(), qIsNaN() and qIsFinite() now, like std::isinf() and friends,
accept integral types (returning false, false and true, respectively) as
well as floating-point ones.

539553a572 QTestlib/JUnit XML: Log most messages to standard output
instead of error output
- In JUnit XML, output that is not a warning/error is now logged under
<system-out> instead of <system-err>.

cfd935fe6c Fix XCB launch key mapping
- XF86LaunchXX keys have been remapped, so the Qt names and X11 names
match, instead of being 2 off.

f1465c621c QLocale: Allow direct conversion to language, country, and
script codes
- Added static languageToCode(), countryToCode() scriptToCode() methods
that convert enum values to the respective ISO code strings.

5a0e5521e4 QVectorND: make some constructors explicit
- The QVector2D/3D/4D converting constructors from another QVectorND now
explicit. This was done to prevent a category of bugs resulting from
operations accidentally mixing QVectorND objects.

50c63446f5 Fix problems with offset-derived ids for QTimeZone
- QTimeZone instances created by offset from UTC (in seconds) shall now
only include minutes in their ID when the offset is not a whole number
of hours. They shall also include the seconds in their ID when the
offset is not a whole number of minutes.

aa09bea00c control scrolling of QTabBar using StyleHint
- Added SH_TabBar_AllowWheelScrolling as a style hint to enable/disable
cycling through tabs using the scroll wheel. This defaults to true in
all styles except the macOS one so there is no change in existing
behavior.

722a7dda56 SQLite: Update to 3.34.0
- Updated to 3.34.0

d79a9b1a4f Implement vertical subpixel positioning where available
- Added render hint flag QPainter::VerticalSubpixelPositioning which
will position text at subpixel positions vertically whenever supported.
In absence of this, text position will be rounded vertically as before.

e7c028bb9c QLocale: Allow direct conversion from language, country, and
script codes
- Added static codeToLanguage(), codeToCountry(), codeToScript() methods
that convert ISO code strings to the respective enum values.

b08368d99f Add qHypot() to qmath.h, exposing and extending std::hypot()
- Header <QMath> now provides qHypot(), an implementation of
std::hypot() taking arbitrarily many numeric values, including support
for qfloat16, while avoiding the overflow and underflow problems that
arise when naively taking the square root of a sum of squares.

4e60681c87 Make QJniObject and QJniEnvironment public API
- Add new QJniObject, QJniEnvironment and QJniExceptionCleaner APIs.

065527825e Remove false Q_UNREACHABLE from shaping code
- Fixed a possible crash with certain fonts when shaping strings
consisting only of control characters.

9807573764 Fix crash when requesting A32 glyph on Wayland
- Fixed crash when calling QRawFont::alphaMapForGlyph() with subpixel
antialiasing on Wayland.

dca5a2ca39 Restore pre-Qt6 QList::fill() behavior
- Fixed QList::fill() regression introduced in 6.0: calling fill() with
size < current list size wouldn't truncate the list

f576e22f6e QMatrix4x4: deprecate operator*(QMatrix4x4,
QVector3D/QPoint(F))
- operator* between a QMatrix4x4 and a QVector3D, QPoint, or QPointF has
been deprecated in favor of map() and mapVector().

2c55e121c2 QMatrix4x4: deprecate operator*(QVector3D, QMatrix4x4)
- The multiplication operator (operator*) between a QVector3D and a
QMatrix4x4 has been deprecated. User code needs to extend the QVector3D
to a QVector4D first (by specifying the intended w coordinate), and then
multiply the QVector4D by the matrix.

64c47d7f61 QProcess::startDetached: set the error condition on failure
to start
- If a startDetached() fails to start the target application, the
QProcess object should now have a proper error string in errorString().

c515ee178f Move build tools to libexec instead of the bin dir
- Tools that are called by the build system and are unlikely to be
called by the user are now installed to the libexec directory.

82f4c5ebe5 QNetworkInterface/Unix: fix DNS eligibility of global
addresses
- Fixed the reporting the "DNS eligibility" factor
(QNetworkAddressEntry::dnsEligibility) for global IP addresses.
Previously, QNetworkInterface interface erroneously reported all global
addresses as eligible, regardless of whether they had already been
deprecated by the OS or were temporary in the first place.

a441548f42 Update bundled libjpeg-turbo to version 2.0.6
- libjpeg-turbo was updated to version 2.0.6

97ffc571ae Support family names that end/start with space
- Fixed matching against fonts which has a family name that ends or
starts with a space.

474ec0ac9a SQLite: Update to 3.35.2
- Updated SQLite to v3.35.2

86729df9d4 QTextHtmlParserNode: Limit colspan to avoid segfault
- QTextDocument::setHtml: column spans are limited to 20480, an
arbitrarily high but reasonable value.

6e8a74712f QString: add missing char8_t* constructor / fromUtf8
overloads
- Added a constructor and a fromUtf8() overload taking a `const char8_t
*` argument.

[qtdeclarative]
db0b7cfcb2 qmlformat: Add indent options
- Added option to customize indentation.

f8f39f6ee4 Find qml imports inside subdirectories of symlinks
- Follow sybmolic links in findQmlImportsInDirectory

6eb35df60e QML engine: Deprecate DefaultMethod
- Assigning an object to a signal handler is deprecated. Instead, create
the object, give it an id, and call the desired slot from the signal
handler. For instance, instead of of ListView.onRemove:
SequentialAnimation {...} use SequentialAnimation {id: removeAnimation;
...} ListView.onRemove: removeAnimation.start() A warning will be
printed whenever an assignment of an object to a signal handler occurs.
The warning can be controlled via the qt.qml.defaultmethod logging
category.

33c87736db Kill Flickable's wheel momentum if angleDeltas not multiples
of 120
- Flickable now tries to detect whether you're using a "clicky" wheel on
a desktop mouse.  A laptop trackpad can generate QWheelEvent::angleDelta
values that are not multiples of 120; in that case, smooth scrolling
with momentum is disabled, to avoid losing control of scrolling. Set the
environment variable QT_QUICK_FLICKABLE_WHEEL_MOMENTUM_ENABLED=0 to opt
out of the old behavior entirely, or set it to 1 to opt in
unconditionally.

cf3e0559b0 qmlformat: Remove import sorting
- Remove import sorting and the (now obsolete) -n parameter to disable
it

6f181768a3 Add a QJSManagedValue
- The new QJSManagedValue should be used instead of QJSValue for
manipulating properties and prototypes of JavaScript values, as well as
for calling JavaScript functions.

7c648280bb doc: explain QQItem event delivery, handlers,
setAcceptTouchEvents()
- When subclassing QQuickItem, you should call
setAcceptTouchEvents(true) if you need the item to receive touch events.
It will be required in Qt 6.

831efa14e9 Update hovered on disabled QQuickItems
- QQuickItem::hovered will now update even when the item is disabled.

c1bcaca07f QJSEngine: Add a function to throw a pre-generated error
object
- QJSEngine has gained an additional overload to the throwError()
method, with the effect that calling throwError() with a character
literal as argument is now ambiguous. You should explicitly construct a
QString instead.

06d819cd71 QML: Warn about variables being used before their declaration
- QML warns about JavaScript variables being used before their
declaration now. This is almost always a mistake. It is particularly
dangerous in the presence of injected signal parameters because
qmlcachegen cannot identify a name collision between an injected signal
parameter and a variable being used before its declaration. It therefore
miscompiles such code. You can turn off the deprecation warning using
the "qt.qml.compiler" logging category.

b7412dc866 QML: Warn about usage of injected signal parameters
- The automatic injection of signal parameters into signal handlers is
deprecated. This is because we cannot determine the names of the signal
parameters at compile time. Furthermore, also for human readers it is
difficult to discern between arguments, context properties, properties
of the current object, and properties of the root object of the
component. Requiring the signal parameters to be explicitly named
resolves some of this confusion. You can turn the deprecation warning
off using the "qt.qml.compiler" and "qt.qml.context" logging categories.

[qtwayland]
38fc568b Fix leaked subsurface wayland items
- Fixed a memory leak when creating subsurfaces.

bd1713ef Fix memory leak in QWaylandGLContext
- Fixed a memory leak when creating QOpenGLContexts on Wayland and using
the wayland-egl backend.

3aa1b351 Fix race condition when attaching client to text input
- Fixed a problem where a virtual keyboard would not be updated
correctly if two clients were started at almost the same time.

[qt3d]
c6aec09f4 Introduce QGeometryRenderer::sortIndex
- Add sortIndex property to QGeometryRenderer to explicitly control the
order in which entities are rendered

86eb86514 Fix feature names in cmake
- Configuration time command line arguments have changed to use dashes
rather than underscores

[qtimageformats]
d1819db Fix linking of WebP through CMake API
- Fixed an error that might have led to not compiling webp plugin when
configuring Qt yourself.

2932b4c Update bundled libwebp to version 1.2.0
- Update bundled libwebp to version 1.2.0

16601c1 Update bundled libtiff to version 4.2.0
- Bundled libtiff was updated to version 4.2.0

[qtquickcontrols2]
4a718113a Allow style to be set to "Default" for compatibility
- Setting the style to "Default" now behaves the same way as not
specifying a style; a relevant style will be chosen based on the
platform. To use the style previously known as "Default", use "Basic".

df33c79fb Reset the opacity and scale properties after the exit
transition
- After the exit transition is finished, then the opacity and scale
properties will be reset to their values before the enter transition is
started.

[qtcharts]
227020b1 Remove charts namespace for Qt6
- Use QT_NAMESPACE as other modules.

[qtvirtualkeyboard]
dfb10af Move qtvirtualkeyboard over to the new configure system
- The build system was switched to the new configure system. See
documentation for updated instructions.

90d64de Fix activation of input panel when initial active focus is set
- It is now possible to open the input panel implicitly when activating
the window. Before, this failed because the "visible" state was reset
(due to a bug) during activation.

6ce4fc1 Sort language list by active languages
- The language list can now be sorted in any order by specifying the
order in the active language list.

6421dbd Add new setting for user data path
- Added new property to settings VirtualKeyboardSettings.userDataPath.
This allows the application or middleware to change the path to user
files at runtime. Added also a signal to indicate user data reset - when
the application triggers the signal, the virtual keyboard closes all
files in the user's directory.

5b81a28 Add new setting for handwriting timeout
- Add new settings VirtualKeyboardSettings.hwrTimeoutForAlphabetic and
VirtualKeyboardSettings.hwrTimeoutForCjk to allow the application to
adjust the handwriting recognition timeout.

e923b4f Add new setting for input method hints
- Add new setting VirtualKeyboardSettings.inputMethodHints, which allows
the application to set persistent application wide input method hints.

1477134 Add new setting for disabling handwriting mode
- Add new setting VirtualKeyboardSettings.disableHandwritingMode, which
allows to disable handwriting mode at runtime.

c82d462 Add new settings defaultInputMethodDisabled,
defaultDictionaryDisabled
- Add new settings VirtualKeyboardSettings.defaultInputMethodDisabled
and VirtualKeyboardSettings.defaultDictionaryDisabled.

6e83e31 Add new method clearInputMode() to input method v2
- Added new method clearInputMode() to input method.

87d6c20 Add generic dictionary API for the virtual keyboard v2
- Added a generic dictionary API. The API allows applications to
create/update/remove dictionaries at runtime. The desired dictionaries
can be activated from the application. The implementation of the
dictionaries depends on the input method. A typical use case for this
API would be a phone book.

3a703e5 Add new function Trace.startHideTimer
- Added new function Trace.startHideTimer(), which allows the input
method to hide trace before destroying the trace object.

32c025d Add new key type FlickKey v2
- Added a new key type FlickKey.

d22313c Add Stroke and Romaji values to the InputMode enumeration
- Added Stroke and Romaji values to the InputMode enumeration.

d3dbc82 CMake: Fix pinyin and tcime resource bundling
- Added vkb- prefix to no-bundle-pinyin no-bundle-tcime command line
options (e.g. vkb-no-bundle-pinyin) and restored them as part of
configuration.

[qtscxml]
96a69e7 Only return uniquely named services from invokedServices()
- If you have multiple equally named children of an invoked service,
only one of them will be included in the "children" property now.
Before, the fact that QVariantMap was actually a multimap was used to
squeeze all of them in.

cfb46e8 Name and mark the scxml datamodel plugin headers as private
- The QScxmlEcmaScriptDataModel class is no longer part of the public
API. This relates to moving the ecmascript datamodel's QML dependency
from build time to runtime.

[qtquick3d]
c460e497 balsam: Return error codes
- balsam now returns an error code if no source was given, or the
conversion failed.

[qtshadertools]
bbfcb67 Augment attributions for SPIRV-Cross
- Changed identified license of SPIRV-Cross to Apache License 2.0 and
Khronos License, and fixed copyright attributions.

4e1806a Augment attributions for glslang
- Changed identified licenses in glslang to BSD 3-Clause "New" or
"Revised" License, and Khronos License, and Apache License 2.0, and GNU
General Public License v3.0 or later with Bison exception 2.2, and
NVIDIA 2002 License. Augment Copyright information with details from
file headers.

[qt5compat]
94966f0 Move graphical effects to qt5compat
- Added version of Qt Graphical Effects for compatibility with Qt 5
code. This can be accessed by importing "Qt5Compat.GraphicalEffects"

Fixes
_____

[qtbase]
- QTBUG-88624 lupdate: exectuion sometimes fails with return value 1
- QTBUG-88042 tst_QTcpSocket::connectToHostError() failed on Ubuntu
20.04 in CI
- QTBUG-88600 SystemTrayIcon icon too big /squashed on second screen
(Big Sur)
- QTBUG-86976 Input method widget is closed on destructing a widget
- QTBUG-88501 [REG v6.0.0-beta3 -> dev] configure -no-gui still wants to
build GUI
- QTBUG-88221 Some module .pri files unexpectedly do not have
corresponding prl files.
- QTBUG-88609 cmake: unable to build qtbase statically with precompiled
headers
- QTBUG-88653 QEventLoop::processEvents does not take the timeout into
account as expected
- QTBUG-88683 QPainter artifacts when scale() and antialiasing is used
- QTBUG-88589 tst_QFont::serialize() failed on openSUSE in CI
- QTBUG-85712 WebAssembly: RoundButton has odd behaviour on repeated
clicks
- QTBUG-85361 When a dialog has a resize grip handle then it is not
possible to resize with it
- QTBUG-88718 Android build for non-qtbase modules fails:  include could
not find load file: QtBuildInternals/QtBuildInternalsAndroid
- QTBUG-88445 Fix tst_qlibrary on Andreas' machine
- QTBUG-88781 QFont crashes in family() after setFamilies with empty
list
- QTBUG-88581 qtquickcontrols2 won't build due to .objs getting too long
paths for MSVC in static builds
- QTBUG-88764 Path to QtStandaloneTestTemplateProject is incorrect for
non-prefix build
- QTBUG-88834 [REG 6.0.0beta5->RC1] embedded/flickable not compiling
- QTBUG-88506 tst_Android::assetsRead fails on Android
- QTBUG-88864 QMAKE_PRL_TARGET refers to .dll instead of .lib
- QTBUG-86857 QPushButton style "text-align: bottom" not working in Qt
5.15.1
- QTBUG-88656 Undefined behavior in QDateTime::fromString
- QTBUG-72233 Improve QCollator documentation
- QTBUG-86850 QSortFilterModel forwards dataChanged() when the source
model changes data incolumns that the filter model refuses
- QTBUG-88970 qtwidgets example manifest has broken image URL
- QTBUG-87036 Document Q_PROPERTY's new BINDABLE attribute in
properties.html
- QTBUG-88932 Doc: Hidden friends of QVector[2|3|4]D are missing docs
- QTBUG-86295 QDoc warnings in qtbase for 6.0
- QTBUG-87386 tst_QSslKey::passphraseChecks fails on Android
- QTBUG-86287 Static 5.15.0 compile results in "undefined reference to
xcb_aux_create_gc"
- QTBUG-88435 QXcbConnection::getTimestamp runs in indefinite loop when
X server shuts down
- QTBUG-88639 QSslConfiguration::setCaCertificates() does not disable
system certificates
- QTBUG-88476 Setting FEATURE_<x> breaks its condition should actually
print the CONDITION it breaks.
- QTBUG-88951 hellovulkanwindow example build fails with qmake on
Windows/MSVC
- QTBUG-88975 Doc: Embedded video links do not work in offline docs when
using the litehtml backend
- QTBUG-88990 Q_DECLARE_METATYPE debug operators regression on
namespaced builds
- QTBUG-88999 Eager properties can create spurious dependencies
- QTBUG-87289 ASan reports multiple leaks in tst_QFuture::onCanceled()
- QTBUG-82916 qRegisterStreamOperators<T>() has no paired
QMetaType::hasRegisteredStreamOperators(int type)
- QTBUG-88417 tst_qnetworkreply authenticationCacheAfterCancel fails on
Ubuntu 20.04
- QTBUG-88780 [REG 5.15.2 -> 6.0.0] undefined behavior in qmake
- QTBUG-89008 tst_QFontDatabase::aliases() failed on openSUSE 15.2
- QTBUG-63406 widget-based MessageDialog doesn't get centered over its
transient parent
- QTBUG-86179 QTranslator::load() search order doesn't follow
uiLanguages order
- QTBUG-88825 Undefined behavior in moc
- QTBUG-89089 tst_QTcpSocket::connectToHostError() failed on win10
msvc2019 developer build
- QTBUG-89047 [REG 5.15 -> 6.0.0] Configure fails in oss-fuzz
- QTBUG-88966 [REG 5.15 -> 6.0.0] Crash when expanding items in
QTreeView
- QTBUG-85986 CMake Qt CI jobs that build examples should also build the
qmake .pro examples
- QTBUG-89124 Qt 6 for Python: rcc/uic still produce import PySide 2
- QTBUG-88053 Implement TESTRUNNER and TESTARGS feature for Qt autotests
- QTBUG-88253 [REG 5.15 -> 6.0] QCborStreamReader allocates 2 GiB for 8
B file
- QTBUG-88256 [REG 5.15 -> 6.0] QCborValue::fromCbor allocates 2 GiB for
8 B input
- QTBUG-89118 style animated scroll bars might freeze(stop animating) if
we do a heavy paint event
- QTBUG-88053 Implement TESTRUNNER and TESTARGS feature for Qt autotests
- QTBUG-88188 Cannot click to select an item in a QTreeWidget
- QTBUG-89182 qmake -query from a CMake developer build returns wrong
paths
- QTBUG-86426 QHeaderView draws elided text wrong when using a non-
default font (size)
- QTBUG-89059 Mac: Missing namespace mangling in corelib/kernel
- QTBUG-88982 QSplashScreen missing QPainter::SmoothPixmapTransform
- QTBUG-89281 Android apps don't include QML modules
- QTBUG-89201 FTBFS qt6 with MT(d) runtime
- QTBUG-89050 there seems to be no way to search backwards in
QStringView with QRegularExpression
- QTBUG-86669 Investigate automatic calling of qt6_import_qml_plugins
for examples using a static Qt build
- QTBUG-89172 Integer-overflow in QFixed::fromReal(qreal r) through
QImage::.loadFromData(QByteArray);
- QTBUG-88053 Implement TESTRUNNER and TESTARGS feature for Qt autotests
- QTBUG-89116 QTableView size hints do not honor the span
- QTBUG-83457 secureupdclient example crashes
- QTBUG-86960 QDateTime at beginning of DST is created wrongly with
recent glibc
- QTBUG-89283 Link in documentation wrong
- QTBUG-89176 QCache related crash
- QTBUG-89530 compile error on qsslsocket_schannel.cpp when using MinGW
- QTBUG-89493 Typo in QtOpenGL docs
- QTBUG-85962 Improve FEATURE_foo to QT_FEATURE_foo detection
- QTBUG-84737 When using Qt NFC to scan NFC tags it will not work when
the application is first started
- QTBUG-89507 calling setBinding has not the intended effect
- QTBUG-75319 [REG 5.12.1 -> 5.12.2] QApplication::clipboard()->text()
call blocks execution for ~5 seconds sometimes
- QTBUG-66448 Android KEYCODE_MEDIA_PLAY_PAUSE is incorrectly translated
to Qt.Key_MediaPlay in QML
- QTBUG-89133 Button with focus looks wrong in macOS Big Sur for
QMessageBox
- QTBUG-89387  Project ERROR: Library 'openssl' is not defined.
- QTBUG-89473 Cannot build Android with -openssl-linked
- QTBUG-86557 QT6_HOST_INFO_BINDIR in returning an empty string
- QTBUG-89470 Numbered lists are rendered as bulleted lists in help mode
- QTBUG-89013 --enable-new-dtags isn't used when enabled
- QTBUG-83198 Playing back QPicture ignores QPainter::setPen(Qt::black)
- QTBUG-89434 Crash in QIconModeViewBase::itemsRect() when overriding
QListView::startDrag()
- QTBUG-89366 [REG 5.15] Style Sheet text-align: bottom
- QTBUG-87830 config.summary is missing
- QTBUG-88054 Last qt_configure_add_report_entry always ignored/missing
- QTBUG-87830 config.summary is missing
- QTBUG-88984 Memory leak in QPSQLDriver when connection is lost before
the connection could be closed
- QTBUG-83865 Add missing null check in
QAbstractButtonPrivate::queryButtonList()
- QTBUG-89729 Error compiling Qt with MSVC and c++2a
- QTBUG-89093 Qt Designer makes use of AllDockWidgetFeatures which is
marked as depricated
- QTBUG-89714 CMake cannot separately build sqldrivers
- QTBUG-89760 RHI on Vulkan: Write-after-write hazard reported from sync
validation for depth-stencil
- QTBUG-89761 RHI on Vulkan: shadowmap manual test validation warning
(SDK 1.2.154)
- QTBUG-85791 Vulkan Validation Error VUID-VkSwapchainCreateInfoKHR-
minImageCount-01271
- QTBUG-89711 QAbstractItemView::SelectionMode is not working
- QTBUG-89547 Comparison of QSslCertificate broken (extensions()
crashes)
- QTBUG-88282 [REG v6.0.0-beta3 -> dev] Asking configure for an
unavailable feature causes obscure crash instead of informative error
message
- QTBUG-88054 Last qt_configure_add_report_entry always ignored/missing
- QTBUG-88287 Fix -debug-and-release on Linux
- QTBUG-89569 [REG] Division by 0 in QLineF::setLength()
- QTBUG-89184 Unicode key mappings are not working in all Qt based
applications
- QTBUG-85484 [Reg. 5.14->5.15]Resize Widget inside QTableWidget
- QTBUG-89687 QMultiHash::equal_range crashes when called in a const
member function
- QTBUG-89628 Android deployment settings file uses wrong key for qml-
import-paths
- QTBUG-89766 Doc: wrong include for QtFuture namespace
- QTBUG-89846 QObject::dumpObjectInfo might segfault
- QTBUG-89780 Quick node in View3D can make rendering unstable
- QTBUG-89764 Vulkan: Sync validation reports WAW hazard with point/spot
light shadows
- QTBUG-89812 OpenGLWidget in QDockWidget not painted when flaoting
- QTBUG-89580 [regression 5.15 -> 6.0] QApplication::quit() no longer
works within closeEvent()
- QTBUG-89769 Qt 6.0.0: qch files installed to wrong location
- QTBUG-20354 Disappearing lines when using a syntax highlighter
- QTBUG-79442 QScreen signals emitted only for the first display
rearrangement on Windows after  update to Win10/1903
- QTBUG-89915 MediaPlayPause key incorrectly reported as MediaPlay
- QTBUG-88661 How to build MySQL plugin in Qt 6
- QTBUG-89922  tst_QSslSocket::setSslConfiguration(WithoutProxy fails
with macOS 10.15 and Xcode 12.3
- QTBUG-89727 Texts in generated PDF documents can't be displayed by
many Linux viewers
- QTBUG-8963 Driver for ODBC - qsql_odbc.cpp should use the
QMetaType:float when sql type is SQL_FLOAT instead of QVariant::Double
- QTBUG-84482 QML_ROOT_PATH and QML_IMPORT_PATH are not documented well
- QTBUG-89709 Broken link in QMatrix4x4 docs
- QTBUG-87107 QFontMetricsF::boundingRect handles a null QRectF
differently when passed in as it does not constrain to the size of it
- QTBUG-89688 flickering white background when resizing window
- QTBUG-20900 QPainterPath::addText has incorrect font spacing on
Windows only
- QTBUG-89959 Saving a new file fails on Big Sur (11.1)
- QTBUG-89815 [Reg 5.11->5.12.2] Wrong color for placeholder text for
QLineEdit if disabled in constructor of parent
- QTBUG-85683 Windows: "Unable to enumerate family" for fonts with
lengthy family name
- QTBUG-88715 QComboBox DropDown items are displayed very closed to its
right edge.
- QTBUG-83056 Stylesheet with pseudo state on QTextBrowser does not work
- QTBUG-86776 QComboBox showPopup doesn't select all columns of an item
- QTBUG-89426 Error when building qtbase 6.0.0 with LTCG
- QTBUG-75106 Entries in the QAccessiblePluginsHash should be removed
when a QQuickWindow is deleted
- QTBUG-85621 Lower color depths don't seem to be handled correctly in
VNC QPA
- QTBUG-8004 QProxyStyle: When setting a style that is a subclass of
QProxyStyle on a widget, then this will have the effect of influencing
other widgets using that same base style
- QTBUG-73286 QODBC driver doesn't count decimal point when calculate
string length for NUMERIC type with QSql::HighPrecision
numericalPrecisionPolicy
- QTBUG-86736 QPushButton ignore normalOn/Off icon in fusion
- QTBUG-81097 When the tab order is explicitly set then Backtabbing
might not work correctly
- QTBUG-89910 The default font resolution of a QWidget subclass is
random w.r.t. QApplication::font
- QTBUG-88230 When the display is set to 200% then the icons used for
the close button in a QTabBar are too small in comparison to the text
- QTBUG-90031 qt_no_entrypoint target property is not documented
- QTBUG-89082 The previous tips is still displayed when mouse move to
another Action without tips.
- QTBUG-85992 Make optimization flags consistent for Release and
RelWithDebInfo in relation to qmake
- QTBUG-89130 setLibraryPaths keeps the applications directory in path,
docs should mention it
- QTBUG-90246 QImage::scale doesn't work for Format_Grayscale16 images
- QTBUG-85846 Top level QTextEdit looses cursor  after right mouse click
to show context menu
- QTBUG-90319 [REG v6.0.0-beta3 -> dev] Configuring with -dirctfb or
-sctp when they aren't available causes obscure crash instead of
informative error message
- QTBUG-39791 QFileDialog::DontConfirmOverwrite option does not work
when OS X App is sandboxed
- QTBUG-90308 REG: uic creates ambiguous signal/slot connections
- QTBUG-79147 Windows: QColorDialog displays at wrong position when
reshowing after closing via title bar
- QTBUG-86540 QtTest: qDebug output counted as <system-err> (std error
output) in junitxml
- QTBUG-20681 fillRect does not render correctly onto 16bpp image with
scaling and antialias hint enabled
- QTBUG-25261 Qt key mapping is wrong
- QTBUG-90354 Failed to build Qt Core on dev on 32 bit system
- QTBUG-90350 Could not close DRM (NV) device (Bad file descriptor).
- QTBUG-90329 qvkgen shows warnings after header.LGPL is removed
- QTBUG-90039 Qt6 CMake MSVC setup links against debug version in non-
debug configurations
- QTBUG-90327 QVectorND classes allow implicit conversion due to
constructors not being explicit
- QTBUG-89905 QTimeZone IANA id broken on Android
- QTBUG-86020 Items removed from QListWidget during InternalMove
- QTBUG-89398 tst_QFile::moveToTrash fails on Android
- QTBUG-89866 FindMySQL.cmake doesn't follow CMake conventions for
variable naming
- QTBUG-90363 Blurry title bar and task bar icons on Windows with
fractional DPI scaling
- QTBUG-89951 Why does Qt 6 cmake add `UNICODE` to public definitions on
Windows?
- QTBUG-89782 sqldrivers build docs must be adjusted to CMake
- QTBUG-85715 Android: Problem entering IP address with Samsung Number
and regex validator
- QTBUG-90402 Building Qt3D with Qt 6.0.1 fails at headersclean
- QTBUG-90395 FTBFS: qendian.h missing <limits> include
- QTBUG-89647 ARM OpenSSL DLLs for Windows are not found due to missing
suffix
- QTBUG-90242 QMenu stylesheet has alignment issue when one item has
icon/checkable
- QTBUG-89961 Build issue with private headers
- QTBUG-65229 [Android] Text select handle misplaced on fields inside
QDialog
- QTBUG-85727 Qt app doesn't receive Shortcut or Keys.onPressed input
when using physical keyboard
- QTBUG-90414 CMake Error at /Users/qt/work/install/target/lib/cmake/Qt6
EntryPoint/Qt6EntryPointConfig.cmake:51 (include):agent:2021/01/19
07:26:53 build.go:379: include could not find load file
- QTBUG-89643 CMake plugins Qt6::QSvgPlugin and Qt6::QSvgIconPlugin are
not found using static build
- QTBUG-85556 QProxyStyle will not work properly with another proxy
style as a baseStyle
- QTBUG-80298 iOS: edit menu shows while selecting text
- QTBUG-90332 iOS: edit menu doesn't hide when tapping on screen
- QTBUG-89619 QPushButton's text is clipped when adding an icon and set
a QMenu to it
- QTBUG-90465 Static Qt builds add duplicate plugin import sources every
time find_package() is called on a module
- QTBUG-89899 Integer-overflow in QFixed::QFixed
- QTBUG-88610 [Android] JNI crash at QTimeZone::systemTimeZone
(Regression?)
- QTBUG-89952 [Reg 5.15 -> 6] Windows, MSVC: DLL-s are bigger with
CMake, than QMake.
- QTBUG-90520 QMAKE_PRL_LIBS contains wrong entries on Windows
- QTBUG-86632 QCombobox text elide doesnot work with fusion style
- QTBUG-35682 No floating point precision in QPainter::drawText on
raster device.
- QTBUG-79059 Postgres SQL plugin leaks memory when failing to convert
QByteArray
- QTBUG-88815 QDate::FromString breaks when accessed from multiple
threads using default calendar parameter
- QTBUG-89959 Saving a new file fails on Big Sur (11.1)
- QTBUG-90556 bootstrap lib should not use bundled pcre2 if not cross-
compiling
- QTBUG-90237 Enforced compiler flags not consistent between
languages/linker types
- QTBUG-86518 QSystemTrayIcon menu is not opened on press
- QTBUG-90353 QT_WARNING_DISABLE_* macros do not work under MinGW 8.1
- QTBUG-89639 PostgreSQL plugin not build in CMake build
- QTBUG-89979 "No target "XCB::XFIXES"" when building qtvirtualkeyboard
with CMake
- QTBUG-90042 QIcon not using Hi DPI pixmap version
- QTBUG-90345 Qt6HostInfo package loading fails if
QT_REPO_MODULE_VERSION is not 6
- QTBUG-90595 QCombobox placeholderText not visible
- QTBUG-89625 QJsonObject The take function caused an error!!
- QTBUG-90529 Unable to build QtOpcua Add-On with Conan, Qt6.0.1,
linux-g++-Ubuntu20.04-x64
- QTBUG-89952 [Reg 5.15 -> 6] Windows, MSVC: DLL-s are bigger with
CMake, than QMake.
- QTBUG-89578 QLineEdit Cursor show white line when use property of
setInputMask
- QTBUG-89574 CLONE - QDial's knob not centered around background circle
- QTBUG-90705 qtquick3d dependency update failed on 'dev'
- QTBUG-74088 Menu Bar Items Disabled When QMainWindow Has Window Modal
Child and Another Window Made Active
- QTBUG-90556 bootstrap lib should not use bundled pcre2 if not cross-
compiling
- QTBUG-90672 CoreWLan support missing on macOS
- QTBUG-90743 iOS: edit menu and magnifier glass is showing
simultaneously
- QTBUG-90617 INTERFACE_QT_COORD_TYPE not set on Core target
- QTBUG-90553 tst_QDateTime::timeZones fails with glibc 2.31 on Clear
Linux
- QTBUG-90628 [REG: 5.14.2->5.15.0]: When resizing a window that is
translucent and using stylesheets then this can flicker quite a lot when
the window is resized smaller
- QTBUG-90777 CMake: Freetype duplicate symbols when linking
- QTBUG-90716 QGuiApplication::primaryScreen() not returning the correct
screen if the user changes their main display.
- QTBUG-74978 When QT_SCALE_FACTOR is used for an application and the
edit menu is shown in a TextArea then the selection handles are not
correctly placed
- QTBUG-85787 [Android] TextField password becomes visible
- QTBUG-69131 Android: tst_QTimeZone::transitionEachZone fails
- QTBUG-89155 Assertion violation in text shaping on special string with
EmojiOneColor font.
- QTBUG-90860 [iOS] The edit menu doesn't hide when typing on the input
panel
- QTBUG-84616  Mac Checkbox Accessibility does not returns mixed State
- QTBUG-90236 QRawFont::alphaMapForGlyph() shows garbage and eventually
leads to crash
- QTBUG-90937 [iOS] edit menu stays open after changing focus
- QTBUG-90698 tst_QTextLayout::softHyphens() failed on macos 11 in CI
- QTBUG-90946 Qt configure option is translated to the incorrect cmake
variable
- QTBUG-90963 QDoc manual has overlapping captions with images
- QTBUG-77937 Extra whitespace accessible with scroll-bars at the end of
QPlainTextEdit widget
- QTBUG-90850 MinGW static build: fail to build PostgreSQL driver
- QTBUG-88579 CMake testing expect a fake_prefix folder resembling the
installation prefix
- QTBUG-91042 REG Qt 6.0: QList/QVector::fill does not support shrinking
list
- QTBUG-75630 QPainter drops e.g. lines using small (< 1e-12) user world
coords
- QTBUG-91038 tst_QTextLayout::longText failures
- QTBUG-90925 Cannot specify link libraries for target "OpenSSL::Crypto"
- QTBUG-63018 [iOS]: When moving the selection handles in a TextEdit the
cursorRectChanged signal is emitted even if the cursor rect is not
actually changed
- QTBUG-90870 Add Qt::Gui dependency by default to Android tests
- QTBUG-90914 configure can't find compiler although CC/CXX are given
- QTBUG-89735 MultiPointTouchArea delays release on three finger tap
- QTBUG-91061 [REG 6.0.1->6.1.0] qml/quick examples not compiling on iOS
(Undefined symbols for architecture arm64)
- QTBUG-90625 subset of downloads stall and die with connection closed
on some systems
- QTBUG-90699 tst_QApplication::focusWidget() and focusMouseClick()
failed on macos 10.15 in CI
- QTBUG-87457 Example not compiling due 'AutoUic error'
- QTBUG-87078 xcb: showMaximized() in full screen only restores the
window with some WMs
- QTBUG-90969 Cannot build qtquickcontrols2 examples on Qt6
- QTBUG-89952 [Reg 5.15 -> 6] Windows, MSVC: DLL-s are bigger with
CMake, than QMake.
- QTBUG-89889 tst_QDateTime::systemTimeZoneChange fails on 32bit systems
- QTBUG-85287 Hanging tst_qprocess test on qemu armv7 CMake builds
- QTBUG-91158 INPUT_ variables having a corresponding feature are
converted to "ON/OFF"
- QTBUG-86733 [Android] NoSuchMethodException when using QtMultimedia
- QTBUG-88031 iOS: quickcontrols2/gallery fails to build in release mode
(Failed to parse qmlimportscanner output)
- QTBUG-87871 QMdiSubWindow's window icon size is incorrect for system
scaling 150% or more
- QTBUG-91194 Android Service - Exception on startup
- QTBUG-32778 Documentation colors conflicting with system theme make
text unreadable
- QTBUG-91224 BIC breakage in QStyleOptionHeader
- QTBUG-83632 In top level frameless window Qt.CrossCursor does not
comes in effect
- QTBUG-83295 QLineEdit::editingFinished() not emitted when pressing the
clear button and moving focus away
- QTBUG-91223 qt_memrotate270, qt_memrotate180 , qt_memrotate90,
segfaults
- QTBUG-91155 QNetworkManagerNetworkInformationBackend without DBus
- QTBUG-90949 UI rendering and interaction dead lock when used as an
window embedded application
- QTBUG-91401 Error loading PNG: Unsupported ICC profile class 70727472
- QTBUG-91532 tst_QMenu::QTBUG_89082_actionTipsHide() failing on Windows
- QTBUG-91620 QFuture documentation incorrectly linked
- QTBUG-91531 Inconsistent use of Qt_6_PRIVATE_API breaks BC between Qt
6.0 and Qt 6.1
- QTBUG-91496 Cross Compilation of Android from Windows fails after
libexec changes
- QTBUG-42469 QTreeWidget animated crashes when QTreeWidgetItems are set
hidden to true
- QTBUG-91076 syncqt.pl is in bin and libexec
- QTBUG-88305 [REG v6.0.0-beta3 -> dev] Asking configure for an
unavailable feature causes obscure crash instead of informative error
message (version 2)
- QTBUG-91630 Rendering error with OpenGL in Lancelot test case
involving Item2D
- QTBUG-91438 iOS enormous leak ends with "Terminated due to memory
issue"
- QTBUG-91539 QThread::quit() is unreliable on Windows
- QTBUG-86857 QPushButton style "text-align: bottom" not working in Qt
5.15.1
- QTBUG-91141 qdoc/WebXML (Qt 6): Invalid links to "Changes to Qt
<Module>" are inserted into \brief of classes and other places
- QTBUG-91704 QMultiHash::count(key) crashes on empty container
- QTBUG-91431 CommpareNotEqual misspelled
- QTBUG-90812 androiddeployqt doesn't bundle JARs or include permissions
set on a plugin
- QTBUG-91866 MSVC warns about C4250 in network/openssl
- QTBUG-91261 Invalid pointer return with QGridLayout::itemAt(-1)
- QTBUG-91915 Gui applications that are built as part of a static Qt
build miss the default QPA plugin
- QTBUG-87326 Removal of "old time-zone lookup fallbacks" breaks TZ
handling on Gentoo
- QTBUG-91402 [REG: 5.15 - 6.x] Wheel events get lost when connecting
from macOS via ssh
- QTBUG-92087 No shortcuts possible with SysReq key
- QTBUG-92011 Qt 6.1.0 betas fail to compile:
qpaintengine_x11.cpp:2457:43: error: no matching member function for
call to 'loadGlyph'
- QTBUG-92173 [iOS]: Crash occurs when showing a new QQuickWindow after
the first one is deleted
- QTBUG-92220 QAbstractItemModelTester false positive
- QTBUG-81316 QGraphicsItem::setZValue not working
- QTBUG-90396 QFontDialog highlights default value for the font style
list
- QTBUG-91455 Qt.ImhFormattedNumbersOnly flag does not show minus sign
in iOS keyboard
- QTBUG-91788 Assert when removing a model from
QConcatenateTablesProxyModel that is bound to a QSortFilterProxyModel
- QTBUG-92046 Description of Julian calendar is wrong
- QTBUG-91909 QtConcurrenceThreadEngine > ThreadEngineStarter<VOID>?
- QTBUG-84342 QTuioTouchPlugin fails to build with "Unix Makefiles"
generator on macOS
- QTBUG-91029 Windows/Accessibility: Focused QListWidget is not
announced by screen readers
- QTBUG-90449 Wrong CMAKE_INSTALL_PREFIX when building a module against
an installer-provided Qt
- QTBUG-91511 Can't build user project with qmake with a Qt6 built with
-qtlibinfix XX
- QTBUG-92235 Update dependencies failed on 'dev' in qt/qtsvg
- QTBUG-69214 Android: tst_QFont::resetFont fails
- QTBUG-86134 [Reg 5.9 -> 5.12] QPushButton: icon not aligned when menu-
indicator is removed

[qtsvg]
- QTBUG-91507 Out of bounds read in function
`QRadialFetchSimd<QSimdSse2>::fetch` when input craft svg file
- QTBUG-90744 [REG: 5.13 -> 5.14] QPixmap::load returns false for svg
files if file encoding not utf-8 & format not specified

[qtdeclarative]
- QTBUG-88623 Implicitly registering types with QML_ELEMENT fails with
multiple inheritance
- QTBUG-88712 ASSERT: "rc <= 0xffff" in
tst_qquicktextinput::keypress_inputMask()
- QTBUG-87150 QML_FOREIGN needs clearer documentation to indicate that
it is using the name of the struct or QML_NAMED_ELEMENT
- QTBUG-88673 REG: Major performance regression for shader effects
- QTBUG-87228 When running Valgrind/Leak Sanitizer there are indications
that there are problems with the property cache
- QTBUG-88581 qtquickcontrols2 won't build due to .objs getting too long
paths for MSVC in static builds
- QTBUG-88807 direct memory leak in qquicktextinput.cpp
- QTBUG-88761 Deleting QRhiRenderPassDescriptor that was used with
QQuickRenderControl rendering crashes the renderer
- QTBUG-88786 Crash when calling hasOwnProperty() on a JS Proxy Object
- QTBUG-85888 Qml *.qmltypes files are incomplete for android
- QTBUG-88229 QtQuick Text property contentHeight does not behave as
expected
- QTBUG-75223 TapHandlers in flickable block flicking on touch screen
- QTBUG-83599 Signal parameter referenced in a JS closure is undefined
while QML debugger is attached
- QTBUG-88604 qsgrhisupport doesn't build with -no-opengl
- QTBUG-89173 Adding an object with a null property in a nested object
in an array crashes QQmlListModel::append
- QTBUG-87526 QML HorizontalHeaderView does not show up if rowcount in
Tablemodel is 0
- QTBUG-89173 Adding an object with a null property in a nested object
in an array crashes QQmlListModel::append
- QTBUG-89203 qtdeclarative build error due to 'trunc' already defined
when doing a static build on Windows
- QTBUG-87266 Qt6: QML_ELEMENT does not work with classes within
namespaces
- QTBUG-89187 qqmltypeloader test needs CMakeLists adjustments for MinGW
- QTBUG-89295 qmlformat breaks QtQml import
- QTBUG-89513 Generating JIT code crashes QML app
- QTBUG-86323 Iterating over Properties of a Proxied Object does not
work
- QDS-3301 Resetting scale and pivot values for 3D models doesn't update
3D Editor
- QTBUG-89622 With CMake 3.19: "CMake Error: File
/Qt6qmldirTemplate.cmake.in does not exist"
- QTBUG-89715 QtQuick window title bar scaled to wrong monitor's DPI
setting with d3d11 backend
- QTBUG-89738 QDoc: Formatting errors on Creating C++ Plugins for QML
page
- QTBUG-89561 Fallback to Qt Quick's software backend needs to be
explicit with platform plugins like vnc in Qt 6, unlike Qt 5
- QTBUG-85602 reference binding to misaligned address
- QTBUG-89861 Documentation for WheelHandler acceptedDevices is wrong
- QTBUG-86017 DelegateModel: Warning and assert with a persisted item
- QTBUG-85932 QML Singleton crash with duplicate id
- QTBUG-29378 Particle system docs should link to examples
- QTBUG-89804 The QtTest QML module needs cleanup
- QTBUG-85103 Qml Shape as Button's background  doesn't manage well
transparent color
- QTBUG-83408 Text disappears with ElideRight.
- QTBUG-85106 Crash when restoring/apply PropertyChanges during a
StateMachine state change in certain cases
- QTBUG-87253 Quick Layout causes crash if child item
Layout.preferredWidth bound to the Layouts width
- QTBUG-57245 Nested flickables allow flicking with two fingers touchpad
gesture only in one direction
- QTBUG-90245 SegFault when calling Component.createObject with
properties
- QTBUG-88677 Crash with qtwebengine demo simplebrowser tab webpage
close
- QTBUG-89594 [REG 5.15-6.0] WheelHandler handler function crashes app
- QTBUG-88682 Not able to trigger "Alt+Enter" shortcut
- QTBUG-30801 Button: tooltip not shown when the button is disabled
- QTBUG-90373 Cannot write function to var property through alias
- QTBUG-90448 tst_qmllint and tst_qquickloader failing on dev
- QTBUG-90485 iOS: tapping inside the line edit will not move the cursor
- QTBUG-90513 qmllint with memory leak when providing qmltypes
- QTBUG-87733 QQmlPropertyBinding needs better binding loop detection
- QTBUG-90489 Segfault in QQuickWindowIncubationController when
accessing QSGRenderLoop on Application shutdown
- QTBUG-90468 tst_qquickfolderlistmodel::nameFilters fails on macOs
- QTBUG-90786 tst_qqmlecmascript.cpp:906:43: error: no match for
‘operator=’
- QTBUG-90762 QuickTest: List testcases when testcase is inline
component
- QTBUG-90538 "required" existing property not reflects model data if
CONFIG+=qtquickcompiler enabled
- QTBUG-89955 Ambiguous string comparison in QML Plugin Dumper
- QTBUG-90038 Crash in QQmlObjectCreator::setupBindings
- QTBUG-86482 Missing string conversion in QJSValue parameter in a c++
signal  connected to QML
- QTBUG-87197 MouseArea containsMouse value incorrect after visibility
changes
- QTBUG-91196 Locale QML documetnation lists misspelled property
- QTBUG-90239 TextField with regex clears text if unmatched char is
typed
- QTBUG-85615 qmlRegisterSingletonType (QJSValue) only works for Objects
- QTBUG-86669 Investigate automatic calling of qt6_import_qml_plugins
for examples using a static Qt build
- QTBUG-90632 Particles are causing unnecessary batch uploads
- QTBUG-84060 qmllint: warning when accessing JS array declared as a var
- QTBUG-91519 [REG 5.14.2 -> 5.15.0] Call QQmlIncubator::clear() inside
QQmlIncubator::setInitialState() crashes afterward
- QTBUG-91491 Crash in Generator::method_next when creating new
properties on Generator
- QTBUG-91694 Colors comparison with QML fuzzyCompare() always results
in 'equal'
- QTBUG-91717 QJSPrimitiveValue must not use std::variant
- QTBUG-91182 Atlas textures with size not greater than
QSG_ATLAS_TRANSIENT_IMAGE_THRESHOLD are not visible with ShaderEffect
- QTBUG-92076 TableView: forceLayout() fails when all columns are hidden
- QTBUG-92064 PinchHandler target scale jumps when pinching a second
time via native gesture
- QTBUG-92099 TableView: content height doesn't change when adding new
rows
- QTBUG-92078 qmleasing uses removed API
- QTBUG-92026 qt6_qml_type_registration() generates CMP0116 warnings
with CMake 3.20
- QTBUG-83980 HoverHandler: sometimes point.position returns (0, 0)
- QTBUG-92447 [Reg 5.15 -> 6.0] qmllint: Property "length" not found on
type "QString"
- QTBUG-92236 When the cache for a QML file is generated and then loaded
it will cause a crash
- QTBUG-89892 crash when assigning null to anchors.horizontalCenter
- QTBUG-92562 qtdeclarative build error on x86-windows
- QTBUG-89736 focusable item becomes impossible to focus after
reparenting to a newly loaded item
- QTBUG-93083 setSceneGraphBackend(const QString &backend): where is the
list of possible strings?
- QTBUG-84458 QML Text doesn't reset lineCount when text is empty
- QTBUG-88626 tst_qqmltimer::restartWhenEventPosted() failed on msvc2019
developer build in CI
- QTBUG-88646 tst_qquicktext::contentSize() failed on msvc2019 developer
build in CI
- QTBUG-88644 tst_QQuickGridView::snapToRow() failed on msvc2019
developer build in CI
- QTBUG-88643 tst_QQmlImport::importPathOrder() failed on msvc2019
developer build in CI
- QTBUG-41043 tst_qquickcanvasitem tends to fail on CI
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-66360 PointHandler goes inactive releasing mouse button when
multiple pressed
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-79611 QAccessible::notifyAccessibilityUpdate not implemented on
Android
- QTBUG-66475 OpacityAnimator shouldn't require explicit from value
- QTBUG-87702 [REG 5.15.1->6.0.0] qml/quick examples crash when running
on iPad
- QTBUG-88965 QML property with 'url' type resolves incorrectly
- QTBUG-89023 tst_Animators::testTransitionsWithImplicitFrom is flaky on
Ubuntu 20.04
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-89023 tst_Animators::testTransitionsWithImplicitFrom is flaky on
Ubuntu 20.04
- QTBUG-86729 many Qt Quick test failures after input event refactoring
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-38570 QtQuick scrolling behavior erratic with XInput2 high-
precision scrolling
- QTBUG-89023 tst_Animators::testTransitionsWithImplicitFrom is flaky on
Ubuntu 20.04
- QTBUG-80412 QtQuick: examples/text/imgtag references dead logo link
- QTBUG-88643 tst_QQmlImport::importPathOrder() failed on msvc2019
developer build in CI
- QTBUG-87221 Qt6's *_qmltyperegistrations.cpp generation breaks when
using includes with folder names
- QTBUG-87018 Touch/mouse-related test failures in qtquickcontrols2
- QTBUG-89889 tst_QDateTime::systemTimeZoneChange fails on 32bit systems
- QTBUG-89889 tst_QDateTime::systemTimeZoneChange fails on 32bit systems
- QTBUG-89822 Error with readonly alias property
- QTBUG-89889 tst_QDateTime::systemTimeZoneChange fails on 32bit systems
- QTBUG-89659 Crash in with JITting enabled
- QTBUG-89659 Crash in with JITting enabled
- QTBUG-89659 Crash in with JITting enabled
- QTBUG-89898 REG 5.15.0 - > 5.15.1 clip: true with rotation asserts
- QTBUG-57792 QQmlPropertyMap inserting new properties is O(N^2)
- QTBUG-57792 QQmlPropertyMap inserting new properties is O(N^2)
- QTBUG-85557 When doing a sort on a ListModel in a WorkerScript then
after syncing the ListView does not show the updated model
- QTBUG-88682 Not able to trigger "Alt+Enter" shortcut
- QTBUG-83950 Q_PROPERTY with using-declared enum cannot be compared in
QML
- QTBUG-89977 Qt build on GCC 11
- QTBUG-90448 tst_qmllint and tst_qquickloader failing on dev
- QTBUG-90448 tst_qmllint and tst_qquickloader failing on dev
- QTBUG-90468 tst_qquickfolderlistmodel::nameFilters fails on macOs
- QTBUG-90439 Doc: Fix CI warnings qtdeclarative
- QTBUG-86368 QQmlContext leak when connecting to and destroying
dynamically created object
- QTBUG-90401 Heap-use-after-free in QAbstractAnimationJob
- QTBUG-75042 [Accesssibility] Qt Quick Control 2 Dialog parts (title,
body, footer) are read in wrong order
- QTBUG-90412 Fix CI warnings for qtdoc
- QTBUG-90439 Doc: Fix CI warnings qtdeclarative
- QTBUG-84906 qt6_qml_type_registration requires automoc
- QTBUG-90444 Math.round() and qRound() have different behavior on ARM64
- QTBUG-90401 Heap-use-after-free in QAbstractAnimationJob
- QTBUG-90869 tst_qquickdesignersupport: tests segfault when running on
QEMU
- QTBUG-63185 grabImage() doesn't work on software renderer
- QTBUG-90401 Heap-use-after-free in QAbstractAnimationJob
- QTBUG-41867 disabled particle Emitter still causes QSG renderer
uploads
- QTBUG-89943 Deprecate injected arguments for signal handlers
- QTBUG-89943 Deprecate injected arguments for signal handlers
- QTBUG-89943 Deprecate injected arguments for signal handlers
- QTBUG-90239 TextField with regex clears text if unmatched char is
typed
- QTBUG-89943 Deprecate injected arguments for signal handlers
- QTBUG-90869 tst_qquickdesignersupport: tests segfault when running on
QEMU
- QTBUG-46350 Crash when deleting item currently set in PropertyChanges
target
- QTBUG-91548 tst_qquickitem::hoverEvent fails on qemu/b2qt platform
- QTBUG-91276 DelegateModel can crash with retranslate()
- QTBUG-86708 When using DelegateModelGroup to group items then when a
created item which is set to not be included will trigger an assert
- QTBUG-92447 [Reg 5.15 -> 6.0] qmllint: Property "length" not found on
type "QString"

[qtactiveqt]
- QTBUG-83735 Dumpcpp name collision leads to undefined symbols when
method names clash with QAxBase's ones
- QTBUG-86666 dumpcpp tool not working for x64 components
- QTBUG-92237 Document the qaxserver_no_register configuration
- QTBUG-82945 Reg->Qt
6/963c47aece12a0025707c76f6f8cb3de306752b8/MSVC2019/Windows: Crashes in
property system
- QTBUG-82945 Reg->Qt
6/963c47aece12a0025707c76f6f8cb3de306752b8/MSVC2019/Windows: Crashes in
property system
- QTBUG-82978 Allow "-Wextra-semi-stmt" on Q_UNUSED
- QTBUG-85467 When calling querySubObject() for something that returns
an IDispatch*, it does not load the interface correctly
- QTBUG-88533 qdoc errors in QtCore

[qttools]
- QTBUG-88647 Qt6: lupdate crashes when building Qt translations
- QTBUG-88603 qdoc: Excess warnings about undocumented namespaces
- QTBUG-88687 qdoc: ASSERT: "rc <= 0xffff" in file
qt5/qtbase/src/corelib/text/qchar.h, line 114
- QTBUG-88710 tst_lupdate triggers QChar assert
- QTBUG-88972 CMake: phrasebooks are not installed
- QTBUG-89515 static build of Qt 6.0.0 using MinGW failes on 2 tools
- QTBUG-89597 windeploy fails to link with qtnamespace specified
- QTBUG-89645 [REG 5.15.2 -> 6.0.0] windeployqt deploys VCRedist
regardless of --no-compiler-runtime
- QTBUG-89093 Qt Designer makes use of AllDockWidgetFeatures which is
marked as depricated
- QTBUG-89835 qdoc: Group links missing from the navigation bar
- QTBUG-89918 Regression: Designer crashes when creating new form
- QTBUG-85572 Documentation errors in SwipeDelegate QML
- QTBUG-89003 QChar  listed in classes with obsolete members
- QTBUG-89913 qdoc: Allow QML type to override property documentation
from inherited abstract type
- QTBUG-88584 Designer does not completely undo adding a Dock Widget
- QTBUG-90691 Qdoc generates an empty TOC for a \qmlbasictype page with
members
- QTBUG-89980 Tools (Assistant, Designer, Linguist) copyright still 2020
- QTBUG-90867 qdoc: Warning limit has no effect in single-exec mode
- QTBUG-91088 QFormBuilder does not save 'name' attribute on 'widget'
elements in UI-file
- QTBUG-91244 [REG] qdoc fails to find overloaded functions from the
global namespace
- QTBUG-91558 [REG 6.0] lconvert can not read .qm files
- QTBUG-91753 Designer cannot change font
- QTBUG-91746 Incomplete statement in QDoc documentation on
\instantiates
- QTBUG-91754 qdoc crash when generic documents of qtbase
- QTBUG-91990 qdoc: \property command fails with a const property type
- QTBUG-65810 Outdated copyright notes
- QTBUG-62697 qhc files cannot be created in a reproducible way
- QTBUG-89093 Qt Designer makes use of AllDockWidgetFeatures which is
marked as depricated
- QTBUG-89479 TimelineAnimation type documentation is missing properties
- QTBUG-89003 QChar  listed in classes with obsolete members
- QTBUG-88584 Designer does not completely undo adding a Dock Widget
- QTBUG-89926 Regression: Designer crashes when closing the form
- QTBUG-89926 Regression: Designer crashes when closing the form
- QTBUG-88584 Designer does not completely undo adding a Dock Widget
- QTBUG-91141 qdoc/WebXML (Qt 6): Invalid links to "Changes to Qt
<Module>" are inserted into \brief of classes and other places

[qtdoc]
- QTBUG-89026 Qt6: tutorials/alarms not launching, "module
"Qt.labs.calendar" is not installed"
- QTBUG-89040 samegame: Issues with relative image paths
- QTBUG-90640 examples-android.html links to invalid Creating a Mobile
Application page
- QTBUG-90747 Highlighted example demos/photosurface not compiling with
Android (unknown target 'apk')
- QTBUG-86614 When a service is set to be started at boot time it is not
being started after a reboot of the device
- QTBUG-92047 Configure "-help" does not mention "-xplatform"
- QTBUG-93245 Documentation: New 6.1 modules missing from overview
- QTBUG-86800 QDoc link errors qtdoc Qt 6
- QTBUG-86800 QDoc link errors qtdoc Qt 6
- QTBUG-88833 Unable to install Qt6.0.0 on openSUSE15.1
- QTBUG-86800 QDoc link errors qtdoc Qt 6
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-89033 Do not use versioned QML imports in Qt 6 documentation &
examples
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-89033 Do not use versioned QML imports in Qt 6 documentation &
examples
- QTBUG-89033 Do not use versioned QML imports in Qt 6 documentation &
examples
- QTCREATORBUG-24995 Debugging doesn't work on Android
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-88847 Provide a currently supported versions of Qt page
- QTBUG-89289 Remove Delayed Encoding example
- QTBUG-88839 Document qt6_add_executable and Android specific functions
for CMake
- QTBUG-90412 Fix CI warnings for qtdoc
- QTBUG-88635 No support for Qt version specific qt.conf

[qtwayland]
- QTBUG-88969 examples not shown in Qt Creator
- QTBUG-85608 Qt5.15, it created 2 more commandbuffer. but they were not
freed.
- QTBUG-91206 Input hints not delivered to virtual keyboard with new
text input protocol
- QTBUG-91096 >1 Programs on QtWayland causes QtVirtualKeyboard to not
work
- QTBUG-87597 Race conditions/improper texture handling in multi-screen
wayland compositor
- QTBUG-88782 Wayland compositor memory leak
- QTBUG-87597 Race conditions/improper texture handling in multi-screen
wayland compositor
- QTBUG-89977 Qt build on GCC 11

[qt3d]
- QTBUG-88790 tst targets in qtbase and qt3d clash
- QTBUG-88838 CMake: Qt 3D is missing documentation build targets
- QTBUG-88821 [REG: 5.15.1->5.15.2] Assimp plugin is only built for gcc
- QTBUG-89412 Building with qmake uses wrong library name
- QTBUG-64110 Parameter prioritization doesn't match documentation
- QTBUG-89433 Unredistributable files in qt3d and qtquick3d
- QTBUG-92259 Missing qmltypes support for quick3dcoreplugin
- QTBUG-92259 Missing qmltypes support for quick3dcoreplugin
- QTBUG-88757 qt3d: Compiliation error in
qt3d\src\input\frontend\qmouseevent.cpp
- QTBUG-87842 Invalid projection with Qt3D on DirectX11
- QTBUG-89020 QtNetworkauth iOS build fails with conan
- QTBUG-89386 Project ERROR: Could not find feature qt3d-extras
- QTBUG-90243 Unable to build Qt3D Add-On with Conan, Qt6.0.1,
Qt6.1.0Alpha,6.0.2, 6.0.3, 6.0.4
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

[qtimageformats]
- QTBUG-88734 Could NOT find Qt6Gui (missing: Qt6Gui_DIR)
- QTBUG-89280 qtimageformats wrong target wrapped for webp
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

[qtquickcontrols2]
- QTBUG-88955 [REG 5.15.2 -> 6.0.0] Cannot change style of
quickcontrols2 gallery example using the menu
- QTBUG-89006 Native style: running controls on Windows with a dpr =
1.25 has drawing glitches
- QTBUG-89290 "Target "gallery_controls2" links to target
"Qt::QuickTemplates2" but the  target was not found" when building
gallery example
- QTBUG-87283 REG: Popup position changes after opening once
- QTBUG-89673 Destroying a modal Dialog with exit transition blocks all
mouse input to other dialogs
- QTBUG-88162 Crash when NinePatchImage's source is changed
- QTBUG-85770 SwipeDelegate resizes incorrectly while it is open
- QTBUG-89909 tst_controls Dialog tests fail on offscreen platform
- QTBUG-84426 Tumbler without wrap ignores initial currentIndex
- QTBUG-90580 tst_QQuickMenu::Material::subMenuDisabledMouse(non-
cascading) fails on Ubuntu 20.04
- QTBUG-75042 [Accesssibility] Qt Quick Control 2 Dialog parts (title,
body, footer) are read in wrong order
- QTBUG-90928 Update dependencies on '6.1' in qt/qtquickcontrols2 failed
- QTBUG-87018 Touch/mouse-related test failures in qtquickcontrols2
- QTBUG-91989 Default theme in Gallery on Windows is 'Basic' (expecting
the 'Windows')
- QTBUG-87236 NinePatchImage causes crash due to repeated presses.
- QTBUG-88220 Add documentation pages for the new native styles
- QTBUG-89006 Native style: running controls on Windows with a dpr =
1.25 has drawing glitches
- QTBUG-89006 Native style: running controls on Windows with a dpr =
1.25 has drawing glitches
- QTBUG-88533 qdoc errors in QtCore
- QTBUG-88492 QmlComponent: Component is not ready error with static
compiled Controls 2
- QTBUG-88553 "invalid nullptr parameter" when running Qt Quick Controls
- Contact List example
- QTBUG-52466 Styles need to be explicitly imported to work with static
builds
- QTBUG-61021 Autocomplete of editable ComboBox not working on Android
- QTBUG-91141 qdoc/WebXML (Qt 6): Invalid links to "Changes to Qt
<Module>" are inserted into \brief of classes and other places

[qtcharts]
- QTBUG-86036 callout example has a bug
- QTBUG-85909 QList::insert(): Index out of range
- QTBUG-83320 Qt 6 / QtCharts: Spurious Quick  test failures in
namespaced builds (g++ 9.2)
- QTBUG-82978 Allow "-Wextra-semi-stmt" on Q_UNUSED
- QTBUG-75500 Stack overflow on high zoom out of QChart with a
logarithmic axis

[qtdatavis3d]
- QTBUG-90400 QtDataVisualization is namespaced
- QTBUG-90737 Conan build fails
- QTBUG-91032 Some autotests fail on Qt 6.1
- QTBUG-90710 Some tests fail
- QTBUG-91053 macOS coin build fails
- QTBUG-91381 tst_qmltestWrapperRelWithDebInfo is failing in 6.1
- QTBUG-91347 tst_proxy::multiMatch() Received a fatal error
- QTBUG-90663 RHI backend selection is not documented
- QTBUG-92167 Adding additional libraries to qt5.git fails
- QTBUG-93263 QtDatavisualization examples not compiling on Android
- QTBUG-82978 Allow "-Wextra-semi-stmt" on Q_UNUSED
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH
- QTBUG-90664 Some examples do not work correctly
- QTBUG-90664 Some examples do not work correctly
- PYSIDE-1438 Using QBar3DSeries.dataProvider().addRow() segfaults

[qtvirtualkeyboard]
- QTBUG-74664 Wrong cursor position after inputting some Japanese with
Qt Virtual Keyboard
- QTBUG-83217 rotation of virtualkeyboard does not work
- QTBUG-89018 The prediction of Pinyin input method is incorrect
- QTBUG-90297 Decide fate of lipi-toolkit in Qt6
- QTBUG-86190 Shift button on virtual keyboard is disabled on startup of
application
- QTBUG-89979 "No target "XCB::XFIXES"" when building qtvirtualkeyboard
with CMake
- QTBUG-85245 Candidate characters are mixed in uppercase and lowercase
when using Pinyin in Simplified Chinese
- QTBUG-82978 Allow "-Wextra-semi-stmt" on Q_UNUSED
- QTBUG-82989 Decide upon and document our stance on binding to parent
in delegates
- QTBUG-85877 Handle CONFIG += thread (aka Threads::Threads)
- QTBUG-85789 Update dependencies is failing in Virtual keyboard
- QTBUG-87661 Rename add_qt_gui_executable in examples to
qt_add_executable across all repos

[qtscxml]
- QTBUG-83420 Q2-2020 Flaky failing autotest function dynamic in scion
- QTBUG-85710 Connecting to nonexistent states connects to destroyed
signal
- QTBUG-89521 When connecting to the relevant state changed signals for
a StateMachine then when running via Valgrind there is an invalid read
on exit
- QTBUG-82978 Allow "-Wextra-semi-stmt" on Q_UNUSED

[qtnetworkauth]
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

[qtquicktimeline]
- QTBUG-89479 TimelineAnimation type documentation is missing properties

[qtquick3d]
- QTBUG-89012 Changing sourceItem size dynamically does not function as
expected
- QTBUG-89062 Qt Quick 3D adding PointLight leads to an exception
- QTBUG-89104 Having more than 8 shadow casting lights leads to
validation errors (and broken rendering) with Vulkan
- QTBUG-89105 Adding more than 15 active lights is not handled
gracefully
- QTBUG-78975 Importing .dae file with global scale only applies the
scale to x-axis
- QTBUG-89350 Unshaded Custom Materials with VARYING don't work when not
using uniforms
- QDS-3330 Crash when importing 3D studio project
- QTBUG-89372 Qt Quick 3D random crashes if skeleton joints are created
via Loader3D
- QTBUG-89657 DefaultMaterial.NoLighting ignores opacity map
- QTBUG-89385 View3D.pick doesn't work on custom geometry
- QTBUG-89629 QQuick3DGeometry only supports UV0
- QTBUG-89942 Something is wrong with the way custom materials and
effects parse comments
- QTBUG-90450 can't use event handlers as children of View3D
- QTBUG-89886 assert/segfault on exit in MultipleViews.qml
- QTBUG-89433 Unredistributable files in qt3d and qtquick3d
- QTBUG-90514 Loader with View3D crashes
- QTBUG-89872 Error with instancing in depth pre-pass and shadows
- QTBUG-91118 Texture.indexUV is unstable
- QTBUG-91412 Texture.sourceItem does not handle all textureProvider
items correctly
- QTBUG-91879 Invisible but item layer View3D with Inline render mode
crashes
- QTBUG-88320 Dynamically creating a View3D second time crashes
- QTBUG-91871 View3D with no size specified crashes with OpenGL only
- QTBUG-91888 Item2D + importScene = crash due to the well-known dead-
rhi-objects-in-cache-key problem
- QTBUG-89946 SpotLight doesn't work properly with PBR materials
- QTBUG-92215 custom shaders example: no ui elements interacatable

[qtshadertools]
- QTBUG-89186 Fix license attributions for src/3rdparty/glslang
- QTBUG-89288 Add 'Licenses and Attributions' section to Qt ShaderTools
documentation

[qt5compat]
- QTBUG-89070 doc build failure for qt5 on Ubuntu 20.04

[qtcoap]
- QTBUG-88729 FAIL!  : tst_QCoapMessage::addOption() Received a fatal
error
- QTBUG-92253 qtcoap/.gitignore file included in 6.1.0 sources
- QTBUG-92256 Qt src build fails on MinGW
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

[qtmqtt]
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

[qtopcua]
- QTBUG-91256 qtopcua top-level build error
- QTBUG-88518 compilation error in qtopcua 'dev' branch against Qt6.0.0
beta5
- QTBUG-89427 qtopcua missing limits include
- QTBUG-89219 qtopcua build fails
- QTBUG-90531 Unable to build QtOpcua Add-On with Conan, Qt6.0.1 windows
MSVC 2019
- QTBUG-86360 Successfully executed OPC UA method closes client
connection
- QTBUG-90583 conanfile.py: Accept QTDIR in addition to QT_PATH

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f384e2e8b2d2abea47482fe50a106fdf6cf34a39

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 qt6-odbc/distinfo                                  |   8 +-
 qt6-psql/distinfo                                  |   8 +-
 qt6-qt3d/Makefile                                  |   2 -
 qt6-qt3d/PLIST                                     |   3 +-
 qt6-qt3d/distinfo                                  |   8 +-
 qt6-qt5compat/distinfo                             |   8 +-
 qt6-qtbase/Makefile                                |   3 +-
 qt6-qtbase/PLIST                                   |  86 ++++----
 qt6-qtbase/distinfo                                |  16 +-
 qt6-qtbase/patches/patch-configure                 |  35 ----
 .../patches/patch-src_corelib_CMakeLists.txt       |  20 +-
 ...-src_corelib_global_qoperatingsystemversion.cpp |  15 --
 ...ch-src_corelib_global_qoperatingsystemversion.h |  42 ----
 ...relib_global_qoperatingsystemversion__uname.cpp |  67 ------
 ...-src_corelib_io_qfilesystemwatcher__kqueue__p.h |  18 ++
 .../patch-src_tools_bootstrap_CMakeLists.txt       |  18 --
 qt6-qtdeclarative/PLIST                            | 228 +++++++++++++++++++--
 qt6-qtdeclarative/distinfo                         |  10 +-
 .../patches/patch-src_qmltest_CMakeLists.txt       |  13 +-
 qt6-qtimageformats/Makefile                        |   4 -
 qt6-qtimageformats/PLIST                           |   2 +-
 qt6-qtimageformats/distinfo                        |  11 +-
 qt6-qtimageformats/files/FindWrapMNG.cmake         |  14 --
 .../patches/patch-src_imageformats_configure.cmake |  26 ---
 .../patch-src_plugins_imageformats_CMakeLists.txt  |  17 --
 ...tch-src_plugins_imageformats_mng_CMakeLists.txt |  17 --
 qt6-qtnetworkauth/Makefile                         |   1 -
 qt6-qtnetworkauth/distinfo                         |   8 +-
 qt6-qtquick3d/PLIST                                |  93 ++++++++-
 qt6-qtquick3d/TODO                                 |   2 +
 qt6-qtquick3d/distinfo                             |   8 +-
 qt6-qtquickcontrols2/PLIST                         |   8 +
 qt6-qtquickcontrols2/distinfo                      |   8 +-
 qt6-qtquicktimeline/distinfo                       |   8 +-
 qt6-qtshadertools/distinfo                         |   8 +-
 qt6-qtsvg/distinfo                                 |   8 +-
 qt6-qttools/PLIST                                  |   7 +-
 qt6-qttools/distinfo                               |   8 +-
 qt6-qtwayland/distinfo                             |   8 +-
 qt6/Makefile.common                                |   8 +-
 40 files changed, 456 insertions(+), 426 deletions(-)

diffs:
diff --git a/qt6-odbc/distinfo b/qt6-odbc/distinfo
index 63f66274b2..3a1a82114f 100644
--- a/qt6-odbc/distinfo
+++ b/qt6-odbc/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtbase-everywhere-src-6.0.4.tar.xz) = 3ec65b403b956bc5ae6e0832fb088b6d0dc53bff
-RMD160 (qtbase-everywhere-src-6.0.4.tar.xz) = f0e95b161e69e815b8d4e4eafddafa8d1a6207be
-SHA512 (qtbase-everywhere-src-6.0.4.tar.xz) = b6be251be1dfdc5c5d33507690df15ae452ecc7b8a8d436a642e3f36b90894812268d0de19d1ba6c082988fe19b849c5021d2813e0814d3377b3b757e5070c16
-Size (qtbase-everywhere-src-6.0.4.tar.xz) = 46415776 bytes
+SHA1 (qtbase-everywhere-src-6.1.0.tar.xz) = c1bdd7e7ef0363c5b0ec815abeef372cc6d88966
+RMD160 (qtbase-everywhere-src-6.1.0.tar.xz) = 51c5ac8cec04e0c59c5b91cda98300466b8736c4
+SHA512 (qtbase-everywhere-src-6.1.0.tar.xz) = 2926e66fd1de9c7e541671fbccb2127a2abd490562180a640fdda95ba15b2c8b1828c747ebfcb49190c5d01092c8194ad4d0f1fe6bbe350b62c438322a8eb7b8
+Size (qtbase-everywhere-src-6.1.0.tar.xz) = 46482824 bytes
diff --git a/qt6-psql/distinfo b/qt6-psql/distinfo
index 63f66274b2..3a1a82114f 100644
--- a/qt6-psql/distinfo
+++ b/qt6-psql/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtbase-everywhere-src-6.0.4.tar.xz) = 3ec65b403b956bc5ae6e0832fb088b6d0dc53bff
-RMD160 (qtbase-everywhere-src-6.0.4.tar.xz) = f0e95b161e69e815b8d4e4eafddafa8d1a6207be
-SHA512 (qtbase-everywhere-src-6.0.4.tar.xz) = b6be251be1dfdc5c5d33507690df15ae452ecc7b8a8d436a642e3f36b90894812268d0de19d1ba6c082988fe19b849c5021d2813e0814d3377b3b757e5070c16
-Size (qtbase-everywhere-src-6.0.4.tar.xz) = 46415776 bytes
+SHA1 (qtbase-everywhere-src-6.1.0.tar.xz) = c1bdd7e7ef0363c5b0ec815abeef372cc6d88966
+RMD160 (qtbase-everywhere-src-6.1.0.tar.xz) = 51c5ac8cec04e0c59c5b91cda98300466b8736c4
+SHA512 (qtbase-everywhere-src-6.1.0.tar.xz) = 2926e66fd1de9c7e541671fbccb2127a2abd490562180a640fdda95ba15b2c8b1828c747ebfcb49190c5d01092c8194ad4d0f1fe6bbe350b62c438322a8eb7b8
+Size (qtbase-everywhere-src-6.1.0.tar.xz) = 46482824 bytes
diff --git a/qt6-qt3d/Makefile b/qt6-qt3d/Makefile
index 0b030b2a09..50ad726fbc 100644
--- a/qt6-qt3d/Makefile
+++ b/qt6-qt3d/Makefile
@@ -5,8 +5,6 @@ PKGNAME=	qt6-qt3d-${QTVERSION}
 COMMENT=	Qt6 3d
 CATEGORIES=	graphics
 
-QT_ADDLIB=	yes
-
 CONFIGURE_ARGS+=	-system-assimp
 CONFIGURE_ARGS+=	-no-fbxsdk
 
diff --git a/qt6-qt3d/PLIST b/qt6-qt3d/PLIST
index 47de092a5a..b02fae6c83 100644
--- a/qt6-qt3d/PLIST
+++ b/qt6-qt3d/PLIST
@@ -160,8 +160,6 @@ qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qdownloadhelperservice_p_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qdownloadnetworkworker_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qentity_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qeventfilterservice_p.h
-qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qframeallocator_p.h
-qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qframeallocator_p_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qgeometry_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qgeometryfactory_p.h
 qt6/include/Qt3DCore/${PKGVERSION}/Qt3DCore/private/qgeometryview_p.h
@@ -518,6 +516,7 @@ qt6/include/Qt3DLogic/qt3dlogicversion.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qqmlaspectengine_p.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qquaternionanimation_p.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qt3dquick_global_p.h
+qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qt3dquickforeign_p.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qt3dquicknodefactory_p.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/qt3dquickvaluetypes_p.h
 qt6/include/Qt3DQuick/${PKGVERSION}/Qt3DQuick/private/quick3dbuffer_p.h
diff --git a/qt6-qt3d/distinfo b/qt6-qt3d/distinfo
index baa14b82f9..20ab471c13 100644
--- a/qt6-qt3d/distinfo
+++ b/qt6-qt3d/distinfo
@@ -1,9 +1,9 @@
 $NetBSD$
 
-SHA1 (qt3d-everywhere-src-6.0.4.tar.xz) = 9d0f47d0c5bdce8bafa212ba3c8351101af3b003
-RMD160 (qt3d-everywhere-src-6.0.4.tar.xz) = 19af99ac4d99d98090a836a234164b93ef18da14
-SHA512 (qt3d-everywhere-src-6.0.4.tar.xz) = 30d0048d574707844e2c0ece7b9b35d31f1de9b3c05bbc8a7e8bcebded8567cc05fc4fcd3ff4aa45c54e534ae0b2527d32c0cac80daece8236cddb18452aae17
-Size (qt3d-everywhere-src-6.0.4.tar.xz) = 103136352 bytes
+SHA1 (qt3d-everywhere-src-6.1.0.tar.xz) = ace131228ff4a1f722cd7161e3075b213e9c687c
+RMD160 (qt3d-everywhere-src-6.1.0.tar.xz) = 5fc81cdeb316f8b70fc730d7046eea649261b4a4
+SHA512 (qt3d-everywhere-src-6.1.0.tar.xz) = dd4fe390cf4ba1a13fb99e39596c895ee809fa8926f72948d41e7357a40742fdccd08d98d782cc30d0cae2c54ee4b9fae92cb4eecb9004669c4422c2b03725eb
+Size (qt3d-everywhere-src-6.1.0.tar.xz) = 103510900 bytes
 SHA1 (patch-qt__cmdline.cmake) = 3e744e23d675a308ecf7ff5c778c08966ca77491
 SHA1 (patch-src_plugins_geometryloaders_configure.cmake) = 02401ea3019229fdc448fe2b31c17ebeca69ca76
 SHA1 (patch-src_plugins_renderers_opengl_CMakeLists.txt) = 0a94746a8767cd9244ae394d95872b15b6eaefb0
diff --git a/qt6-qt5compat/distinfo b/qt6-qt5compat/distinfo
index 404f558a08..7a0c8ad14f 100644
--- a/qt6-qt5compat/distinfo
+++ b/qt6-qt5compat/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qt5compat-everywhere-src-6.0.4.tar.xz) = c216e4da117e29d83dd9e3999d4e25a0f1105060
-RMD160 (qt5compat-everywhere-src-6.0.4.tar.xz) = c1698f75da7cd44a8ad97028ce2e3df732a3e144
-SHA512 (qt5compat-everywhere-src-6.0.4.tar.xz) = 89c9579e37112c3182bd17cdc529c493ad71653157b7ba2f6ce036e96db1116400f90647b06f358f937881d6d602b20b0a298a6bf9c72f0fc6dfe9e762df64ad
-Size (qt5compat-everywhere-src-6.0.4.tar.xz) = 602104 bytes
+SHA1 (qt5compat-everywhere-src-6.1.0.tar.xz) = 5a6fa3addba9d232a467d3830ec271399e8f1812
+RMD160 (qt5compat-everywhere-src-6.1.0.tar.xz) = a4c34f09a94927993d3f2552ab04f48dd19d911b
+SHA512 (qt5compat-everywhere-src-6.1.0.tar.xz) = 7837bf6243b23cb3d2b1e15e5c712f138cd1d8999388ddfabfd36cb0933d691d37687ab1277d147287e7636ed1dc9006a2a5195e28577ce55b98d573effe6990
+Size (qt5compat-everywhere-src-6.1.0.tar.xz) = 8201476 bytes
diff --git a/qt6-qtbase/Makefile b/qt6-qtbase/Makefile
index 8d07817df8..7ba27c975a 100644
--- a/qt6-qtbase/Makefile
+++ b/qt6-qtbase/Makefile
@@ -114,8 +114,7 @@ LDFLAGS+=			-lexecinfo
 LDFLAGS.FreeBSD+=		-lutil
 .endif
 
-REPLACE_PERL+=		bin/fixqt4headers.pl
-REPLACE_PERL+=		bin/syncqt.pl
+REPLACE_PERL+=		libexec/syncqt.pl
 REPLACE_PERL+=		mkspecs/features/data/unix/findclasslist.pl
 REPLACE_BASH+=		util/android/android_emulator_launcher.sh
 
diff --git a/qt6-qtbase/PLIST b/qt6-qtbase/PLIST
index ddcb5103ee..463a31c7ee 100644
--- a/qt6-qtbase/PLIST
+++ b/qt6-qtbase/PLIST
@@ -1,23 +1,15 @@
 @comment $NetBSD$
 qt6/bin/androiddeployqt
 qt6/bin/androidtestrunner
-qt6/bin/cmake_automoc_parser
-qt6/bin/moc
 ${PLIST.dbus}qt6/bin/qdbuscpp2xml
 ${PLIST.dbus}qt6/bin/qdbusxml2cpp
-qt6/bin/qlalr
 qt6/bin/qmake
+qt6/bin/qmake6
 qt6/bin/qt-cmake
 qt6/bin/qt-cmake-private
 qt6/bin/qt-cmake-private-install.cmake
 qt6/bin/qt-cmake-standalone-test
 qt6/bin/qt-configure-module
-qt6/bin/qt-internal-configure-tests
-qt6/bin/qvkgen
-qt6/bin/rcc
-qt6/bin/syncqt.pl
-qt6/bin/tracegen
-qt6/bin/uic
 qt6/doc/config/exampleurl-qt3d.qdocconf
 qt6/doc/config/exampleurl-qtactiveqt.qdocconf
 qt6/doc/config/exampleurl-qtandroidextras.qdocconf
@@ -248,7 +240,6 @@ qt6/include/QtCore/${PKGVERSION}/QtCore/private/qlogging_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qloggingregistry_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmachparser_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmakearray_p.h
-qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmemory_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmetaobject_moc_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmetaobject_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qmetaobjectbuilder_p.h
@@ -283,7 +274,6 @@ qt6/include/QtCore/${PKGVERSION}/QtCore/private/qringbuffer_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qromancalendar_data_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qromancalendar_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qsavefile_p.h
-qt6/include/QtCore/${PKGVERSION}/QtCore/private/qscopedpointer_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qsequentialanimationgroup_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qsettings_p.h
 qt6/include/QtCore/${PKGVERSION}/QtCore/private/qsharedmemory_p.h
@@ -440,6 +430,8 @@ qt6/include/QtCore/QItemSelectionModel
 qt6/include/QtCore/QItemSelectionRange
 qt6/include/QtCore/QIterable
 qt6/include/QtCore/QIterator
+qt6/include/QtCore/QJniEnvironment
+qt6/include/QtCore/QJniObject
 qt6/include/QtCore/QJsonArray
 qt6/include/QtCore/QJsonDocument
 qt6/include/QtCore/QJsonObject
@@ -506,7 +498,6 @@ qt6/include/QtCore/QNonConstOverload
 qt6/include/QtCore/QObject
 qt6/include/QtCore/QObjectBindableProperty
 qt6/include/QtCore/QObjectCleanupHandler
-qt6/include/QtCore/QObjectComputedProperty
 qt6/include/QtCore/QObjectData
 qt6/include/QtCore/QObjectList
 qt6/include/QtCore/QOperatingSystemVersion
@@ -692,7 +683,6 @@ qt6/include/QtCore/qassociativeiterable.h
 qt6/include/QtCore/qatomic.h
 qt6/include/QtCore/qatomic_bootstrap.h
 qt6/include/QtCore/qatomic_cxx11.h
-qt6/include/QtCore/qatomic_msvc.h
 qt6/include/QtCore/qbasicatomic.h
 qt6/include/QtCore/qbasictimer.h
 qt6/include/QtCore/qbitarray.h
@@ -763,6 +753,8 @@ qt6/include/QtCore/qiodevicebase.h
 qt6/include/QtCore/qitemselectionmodel.h
 qt6/include/QtCore/qiterable.h
 qt6/include/QtCore/qiterator.h
+qt6/include/QtCore/qjnienvironment.h
+qt6/include/QtCore/qjniobject.h
 qt6/include/QtCore/qjsonarray.h
 qt6/include/QtCore/qjsondocument.h
 qt6/include/QtCore/qjsonobject.h
@@ -1010,6 +1002,7 @@ qt6/include/QtGui/${PKGVERSION}/QtGui/private/qaccessiblebridgeutils_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qaccessiblecache_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qaction_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qactiongroup_p.h
+qt6/include/QtGui/${PKGVERSION}/QtGui/private/qapplekeymapper_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qastchandler_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qbasicvulkanplatforminstance_p.h
 qt6/include/QtGui/${PKGVERSION}/QtGui/private/qbezier_p.h
@@ -1650,6 +1643,7 @@ qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qasn1element_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qauthenticator_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdecompresshelper_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdnslookup_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdtls_base_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdtls_openssl_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdtls_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhostaddress_p.h
@@ -1683,6 +1677,7 @@ qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkcookiejar_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkdatagram_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkdiskcache_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkfile_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinformation_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinterface_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinterface_uikit_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinterface_unix_p.h
@@ -1695,6 +1690,7 @@ qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplywasmimpl_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkrequest_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qocsp_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qocspresponse_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qopenssl_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsctpserver_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsctpsocket_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsocks5socketengine_p.h
@@ -1707,19 +1703,34 @@ qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslcontext_openssl_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qssldiffiehellmanparameters_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslkey_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
-qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_mac_p.h
-qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_openssl_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_openssl_symbols_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_p.h
-qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_schannel_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtcpserver_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtcpsocket_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtldurl_p.h
-qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtls_utils_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtls_openssl_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtls_schannel_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtls_st_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlsbackend_cert_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlsbackend_openssl_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlsbackend_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlsbackend_schannel_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlsbackend_st_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlskey_base_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlskey_generic_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlskey_openssl_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlskey_schannel_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtlskey_st_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtnetwork-config_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtnetworkglobal_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qurltlds_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qwincrypt_p.h
 qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qwindowscarootfetcher_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qx509_base_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qx509_generic_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qx509_openssl_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qx509_schannel_p.h
+qt6/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qx509_st_p.h
 qt6/include/QtNetwork/QAbstractNetworkCache
 qt6/include/QtNetwork/QAbstractSocket
 qt6/include/QtNetwork/QAuthenticator
@@ -1747,6 +1758,7 @@ qt6/include/QtNetwork/QNetworkCookie
 qt6/include/QtNetwork/QNetworkCookieJar
 qt6/include/QtNetwork/QNetworkDatagram
 qt6/include/QtNetwork/QNetworkDiskCache
+qt6/include/QtNetwork/QNetworkInformation
 qt6/include/QtNetwork/QNetworkInterface
 qt6/include/QtNetwork/QNetworkProxy
 qt6/include/QtNetwork/QNetworkProxyFactory
@@ -1792,6 +1804,7 @@ qt6/include/QtNetwork/qnetworkcookie.h
 qt6/include/QtNetwork/qnetworkcookiejar.h
 qt6/include/QtNetwork/qnetworkdatagram.h
 qt6/include/QtNetwork/qnetworkdiskcache.h
+qt6/include/QtNetwork/qnetworkinformation.h
 qt6/include/QtNetwork/qnetworkinterface.h
 qt6/include/QtNetwork/qnetworkproxy.h
 qt6/include/QtNetwork/qnetworkreply.h
@@ -2040,6 +2053,7 @@ qt6/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkperfevents_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarktimemeasurers_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkvalgrind_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qcsvbenchmarklogger_p.h
+qt6/include/QtTest/${PKGVERSION}/QtTest/private/qemulationdetector_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qjunittestlogger_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qplaintestlogger_p.h
 qt6/include/QtTest/${PKGVERSION}/QtTest/private/qsignaldumper_p.h
@@ -2364,6 +2378,7 @@ qt6/include/QtWidgets/QStyleOptionFrame
 qt6/include/QtWidgets/QStyleOptionGraphicsItem
 qt6/include/QtWidgets/QStyleOptionGroupBox
 qt6/include/QtWidgets/QStyleOptionHeader
+qt6/include/QtWidgets/QStyleOptionHeaderV2
 qt6/include/QtWidgets/QStyleOptionMenuItem
 qt6/include/QtWidgets/QStyleOptionProgressBar
 qt6/include/QtWidgets/QStyleOptionRubberBand
@@ -2592,6 +2607,7 @@ qt6/lib/cmake/Qt6/FindDirectFB.cmake
 qt6/lib/cmake/Qt6/FindGLESv2.cmake
 qt6/lib/cmake/Qt6/FindGSSAPI.cmake
 qt6/lib/cmake/Qt6/FindGTK3.cmake
+qt6/lib/cmake/Qt6/FindInterbase.cmake
 qt6/lib/cmake/Qt6/FindLibb2.cmake
 qt6/lib/cmake/Qt6/FindLibproxy.cmake
 qt6/lib/cmake/Qt6/FindLibsystemd.cmake
@@ -2734,12 +2750,6 @@ qt6/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake
 qt6/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-release.cmake
 qt6/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake
 qt6/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectAdditionalTargetInfo.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectConfig.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectConfigVersion.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectTargets-release.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectTargets.cmake
-qt6/lib/cmake/Qt6Core_qobject/Qt6Core_qobjectVersionlessTargets.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake
@@ -2800,7 +2810,6 @@ qt6/lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake
@@ -2812,7 +2821,6 @@ qt6/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake
@@ -2836,25 +2844,21 @@ qt6/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QGifPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QGifPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake
 ${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake
 ${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake
 ${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfigVersion.cmake
-${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginDependencies.cmake
 ${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-release.cmake
 ${PLIST.gtk3}qt6/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICOPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QICOPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfigVersion.cmake
-${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginDependencies.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-release.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake
@@ -2866,55 +2870,46 @@ qt6/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginDependencies.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfigVersion.cmake
-${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginDependencies.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-release.cmake
 ${PLIST.dbus}qt6/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake
 qt6/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake
@@ -2970,13 +2965,11 @@ qt6/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessTargets.cmake
 ${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginAdditionalTargetInfo.cmake
 ${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfig.cmake
 ${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfigVersion.cmake
-${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginDependencies.cmake
 ${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets-release.cmake
 ${PLIST.cups}qt6/lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets.cmake
 qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginConfig.cmake
 qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginConfigVersion.cmake
-qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginDependencies.cmake
 qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginTargets.cmake
 qt6/lib/cmake/Qt6Sql/Qt6SqlAdditionalTargetInfo.cmake
@@ -3030,8 +3023,6 @@ qt6/lib/libQt6Core.prl
 qt6/lib/libQt6Core.so
 qt6/lib/libQt6Core.so.6
 qt6/lib/libQt6Core.so.${PKGVERSION}
-qt6/lib/libQt6Core_qobject.a
-qt6/lib/libQt6Core_qobject.prl
 ${PLIST.dbus}qt6/lib/libQt6DBus.prl
 ${PLIST.dbus}qt6/lib/libQt6DBus.so
 ${PLIST.dbus}qt6/lib/libQt6DBus.so.6
@@ -3096,13 +3087,20 @@ qt6/lib/libQt6Xml.prl
 qt6/lib/libQt6Xml.so
 qt6/lib/libQt6Xml.so.6
 qt6/lib/libQt6Xml.so.${PKGVERSION}
-qt6/lib/metatypes/qt6core_qobject_release_metatypes.json
 qt6/lib/metatypes/qt6core_release_metatypes.json
 qt6/lib/metatypes/qt6gui_release_metatypes.json
 qt6/lib/metatypes/qt6widgets_release_metatypes.json
 qt6/libexec/android_emulator_launcher.sh
+qt6/libexec/cmake_automoc_parser
 qt6/libexec/ensure_pro_file.cmake
+qt6/libexec/moc
+qt6/libexec/qlalr
+qt6/libexec/qt-internal-configure-tests
+qt6/libexec/qvkgen
+qt6/libexec/rcc
 qt6/libexec/syncqt.pl
+qt6/libexec/tracegen
+qt6/libexec/uic
 qt6/mkspecs/aix-g++-64/qmake.conf
 qt6/mkspecs/aix-g++-64/qplatformdefs.h
 qt6/mkspecs/aix-g++/qmake.conf
@@ -3515,7 +3513,6 @@ qt6/mkspecs/modules/qt_lib_concurrent.pri
 qt6/mkspecs/modules/qt_lib_concurrent_private.pri
 qt6/mkspecs/modules/qt_lib_core.pri
 qt6/mkspecs/modules/qt_lib_core_private.pri
-qt6/mkspecs/modules/qt_lib_core_qobject_private.pri
 ${PLIST.dbus}qt6/mkspecs/modules/qt_lib_dbus.pri
 ${PLIST.dbus}qt6/mkspecs/modules/qt_lib_dbus_private.pri
 qt6/mkspecs/modules/qt_lib_devicediscovery_support_private.pri
@@ -3607,7 +3604,6 @@ qt6/mkspecs/win32-msvc/qmake.conf
 qt6/mkspecs/win32-msvc/qplatformdefs.h
 qt6/modules/Concurrent.json
 qt6/modules/Core.json
-qt6/modules/Core_qobject.json
 ${PLIST.dbus}qt6/modules/DBus.json
 qt6/modules/DeviceDiscoverySupport.json
 qt6/modules/EglFSDeviceIntegration.json
diff --git a/qt6-qtbase/distinfo b/qt6-qtbase/distinfo
index f2eff94605..fe85733e14 100644
--- a/qt6-qtbase/distinfo
+++ b/qt6-qtbase/distinfo
@@ -1,27 +1,24 @@
 $NetBSD$
 
-SHA1 (qtbase-everywhere-src-6.0.4.tar.xz) = 3ec65b403b956bc5ae6e0832fb088b6d0dc53bff
-RMD160 (qtbase-everywhere-src-6.0.4.tar.xz) = f0e95b161e69e815b8d4e4eafddafa8d1a6207be
-SHA512 (qtbase-everywhere-src-6.0.4.tar.xz) = b6be251be1dfdc5c5d33507690df15ae452ecc7b8a8d436a642e3f36b90894812268d0de19d1ba6c082988fe19b849c5021d2813e0814d3377b3b757e5070c16
-Size (qtbase-everywhere-src-6.0.4.tar.xz) = 46415776 bytes
+SHA1 (qtbase-everywhere-src-6.1.0.tar.xz) = c1bdd7e7ef0363c5b0ec815abeef372cc6d88966
+RMD160 (qtbase-everywhere-src-6.1.0.tar.xz) = 51c5ac8cec04e0c59c5b91cda98300466b8736c4
+SHA512 (qtbase-everywhere-src-6.1.0.tar.xz) = 2926e66fd1de9c7e541671fbccb2127a2abd490562180a640fdda95ba15b2c8b1828c747ebfcb49190c5d01092c8194ad4d0f1fe6bbe350b62c438322a8eb7b8
+Size (qtbase-everywhere-src-6.1.0.tar.xz) = 46482824 bytes
 SHA1 (patch-cmake_FindGSSAPI.cmake) = 6ff305c475a874d8647f2f556d64250a77a9664b
 SHA1 (patch-cmake_QtBuild.cmake) = 9e51c025686de3b1a383056eb6c61b0884349b57
 SHA1 (patch-cmake_QtFeature.cmake) = 14f2f760c1e603b80fa14699e91240e8fcd699d3
 SHA1 (patch-cmake_QtPlatformSupport.cmake) = 656067b74fd8e44f0a225710613fa595accf8fd7
 SHA1 (patch-cmake_QtProcessConfigureArgs.cmake) = bc071cc80001c2cb5bf7ba205df6d9ba769ab16f
-SHA1 (patch-configure) = 07fb98e8c6629515867d0112b46853f8aa4532e1
 SHA1 (patch-configure.cmake) = b2f0982b9b097f3c25a57c690a264ad0765d36fc
 SHA1 (patch-mkspecs_features_qt__module.prf) = a04c4b1fe80250b6b3591f5486ac0fd3b5056c26
 SHA1 (patch-mkspecs_features_toolchain.prf) = 0cf13cb6e859dd6276954239b91953e557add515
 SHA1 (patch-qmake_generators_makefile.cpp) = 1bca636dc88f258876df54bd0c6c64114fa7411d
 SHA1 (patch-qmake_generators_unix_unixmake2.cpp) = 6ea4efd2ce88d7cf3c73e1dc2cdf984fe3b6af04
-SHA1 (patch-src_corelib_CMakeLists.txt) = 773be9e15bdc4f9953474ed54a7781b8d8415f9f
+SHA1 (patch-src_corelib_CMakeLists.txt) = 71ea3249e3da335d58815372293aa4aa63f18c02
 SHA1 (patch-src_corelib_configure.json) = 7a83a356330e602cbc65256dd345a107004a67cb
 SHA1 (patch-src_corelib_global_qconfig-bootstrapped.h) = 3db71f61e51cdd71f01ad1e580e89367fc179c7c
 SHA1 (patch-src_corelib_global_qglobal.cpp) = 6368692c2d5d64633d956a89c6b4607667c121a7
-SHA1 (patch-src_corelib_global_qoperatingsystemversion.cpp) = 84695f7523352f0e7cf925da8d57715e73713bad
-SHA1 (patch-src_corelib_global_qoperatingsystemversion.h) = 33a2e58242e12c44da8ce2c3cdbdd85177673646
-SHA1 (patch-src_corelib_global_qoperatingsystemversion__uname.cpp) = ab30d7f7c3ec3c9ac5eac61cee4383b916d16724
+SHA1 (patch-src_corelib_io_qfilesystemwatcher__kqueue__p.h) = 1a060fdfec5ba908dbabaa9b8b0f51d21a9f684c
 SHA1 (patch-src_corelib_io_qstandardpaths_unix.cpp) = b12a41da19b25e34e12fdf80714a37e8c46278f9
 SHA1 (patch-src_corelib_io_qstorageinfo_unix.cpp) = 9919194e9f6b47f1f311b8f8223a6a7519152073
 SHA1 (patch-src_corelib_qt__cmdline.cmake) = 25fe89821ba1e1323edae87ca1ee0bd5ccf0e407
@@ -39,6 +36,5 @@ SHA1 (patch-src_network_kernel_qnetworkinterface__unix.cpp) = 2c5569eb2ba19999eb
 SHA1 (patch-src_plugins_platforms_cocoa_qiosurfacegraphicsbuffer.mm) = 01afb2aef1d14370308c897c1d077b05c5e3f0a9
 SHA1 (patch-src_plugins_platforms_xcb_qxcbatom.cpp) = abbd0b04b881666e82f45adc18e49aafdb43d4be
 SHA1 (patch-src_plugins_platforms_xcb_qxcbconnection__basic.h) = e369001cba31e865adf010ab714ad132b96c1bef
-SHA1 (patch-src_tools_bootstrap_CMakeLists.txt) = 5b13a8d9cdfb9228a8594ab226fd0ff5b44e2009
 SHA1 (patch-src_tools_moc_main.cpp) = ebdddd657ba1c24657a9ca5624907e31a5d0c8bb
 SHA1 (patch-src_widgets_graphicsview_qgraphicsitem__p.h) = fd55d5ef6fde506849aab07f7ba23e856373b3a1
diff --git a/qt6-qtbase/patches/patch-configure b/qt6-qtbase/patches/patch-configure
deleted file mode 100644
index bcec6f7ed4..0000000000
--- a/qt6-qtbase/patches/patch-configure
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-configure,v 1.5 2018/01/17 19:30:47 markd Exp $
-
-Don't use SDKs on OS X
-Add NetBSD/sparc{,64} support
-
---- configure.orig	2021-02-09 18:01:03.000000000 +0000
-+++ configure
-@@ -318,7 +318,6 @@ getQMakeConf()
- {
-     if [ -z "$specvals" ]; then
-         specvals=`expandQMakeConf "$QMAKESPEC/qmake.conf" | extractQMakeVariables`
--        if [ "$BUILD_ON_MAC" = "yes" ]; then specvals=$(macSDKify "$specvals"); fi
-     fi
-     getSingleQMakeVariable "$1" "$specvals"
- }
-@@ -654,6 +653,19 @@ if [ -z "$PLATFORM" ]; then
-         ;;
-      LynxOS*:*)
-         PLATFORM=lynxos-g++
-+        ;;
-+    NetBSD:*:sparc)
-+        if [ "$OPT_VERBOSE" = "yes" ]; then
-+            echo "    NetBSD on SPARC"
-+        fi
-+        CFG_HOST_ARCH=sparc
-+        ;;
-+    NetBSD:*:sparc64)
-+        if [ "$OPT_VERBOSE" = "yes" ]; then
-+            echo "    NetBSD on SPARC64"
-+        fi
-+        CFG_HOST_ARCH=sparc
-+        CFG_HOST_BITSIZE=64
-         ;;
-      QNX:*)
-         PLATFORM=unsupported/qnx-g++
diff --git a/qt6-qtbase/patches/patch-src_corelib_CMakeLists.txt b/qt6-qtbase/patches/patch-src_corelib_CMakeLists.txt
index 79ce93e3a4..bbd0cb55d2 100644
--- a/qt6-qtbase/patches/patch-src_corelib_CMakeLists.txt
+++ b/qt6-qtbase/patches/patch-src_corelib_CMakeLists.txt
@@ -6,9 +6,9 @@ $NetBSD$
 
 * fix avoiding the cmake archiving api when buildling with make
 
---- src/corelib/CMakeLists.txt.orig	2021-02-11 10:23:05.000000000 +0000
+--- src/corelib/CMakeLists.txt.orig	2021-04-30 09:31:33.000000000 +0000
 +++ src/corelib/CMakeLists.txt
-@@ -440,8 +440,9 @@ qt_internal_extend_target(Core CONDITION
+@@ -424,8 +424,9 @@ qt_internal_extend_target(Core CONDITION
          "/BASE:0x67000000"
  )
  
@@ -20,19 +20,7 @@ $NetBSD$
  
  qt_internal_extend_target(Core CONDITION QT_FEATURE_animation
      SOURCES
-@@ -531,6 +532,11 @@ qt_internal_extend_target(Core CONDITION
-         --pending_instantiations=128
- )
- 
-+qt_internal_extend_target(Core CONDITION FREEBSD OR NETBSD
-+    SOURCES
-+        global/qoperatingsystemversion_uname.cpp
-+)
-+
- #### Keys ignored in scope 14:.:.:corelib.pro:pathIsAbsolute(_ss_CMAKE_HOST_DATA_DIR):
- # CMAKE_HOST_DATA_DIR = "$$[QT_HOST_DATA/src]/"
- # CMAKE_HOST_DATA_DIR_IS_ABSOLUTE = "True"
-@@ -1141,7 +1147,8 @@ if(QT_FEATURE_mimetype AND QT_FEATURE_mi
+@@ -1141,7 +1142,8 @@ if(QT_FEATURE_mimetype AND QT_FEATURE_mi
      include(${CMAKE_CURRENT_SOURCE_DIR}/mimetypes/mimetypes_resources.cmake)
  
  # Generate qmimeprovider_database.cpp
@@ -42,7 +30,7 @@ $NetBSD$
      if(CMAKE_VERSION VERSION_LESS 3.18 OR QT_AVOID_CMAKE_ARCHIVING_API)
          set(command_args "")
          set(mime_dir "${CMAKE_CURRENT_SOURCE_DIR}/mimetypes/mime")
-@@ -1150,6 +1157,7 @@ if(QT_FEATURE_mimetype AND QT_FEATURE_mi
+@@ -1150,6 +1152,7 @@ if(QT_FEATURE_mimetype AND QT_FEATURE_mi
              list(APPEND command_args "${mime_dir}/generate.bat")
              list(APPEND command_depends "${mime_dir}/generate.bat" "${mime_dir}/hexdump.ps1" )
          else()
diff --git a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.cpp b/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.cpp
deleted file mode 100644
index d322efe746..0000000000
--- a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD$
-
-* set operatingsystem verson using uname on Free and NetBSD
-
---- src/corelib/global/qoperatingsystemversion.cpp.orig	2021-01-26 18:29:22.000000000 +0000
-+++ src/corelib/global/qoperatingsystemversion.cpp
-@@ -150,7 +150,7 @@ QT_BEGIN_NAMESPACE
- 
-     \sa currentType()
- */
--#if !defined(Q_OS_DARWIN) && !defined(Q_OS_WIN)
-+#if !defined(Q_OS_DARWIN) && !defined(Q_OS_WIN) && !defined(Q_OS_FREEBSD) && !defined(Q_OS_NETBSD)
- QOperatingSystemVersion QOperatingSystemVersion::current()
- {
-     QOperatingSystemVersion version;
diff --git a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.h b/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.h
deleted file mode 100644
index a09e3ee87e..0000000000
--- a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion.h
+++ /dev/null
@@ -1,42 +0,0 @@
-$NetBSD$
-
-* set OStype enums for Free and NetBSD
-
-* NetBSD is a defined on NetBSD systems so unset it, this is safe since
-  code shouldn't even count on it being defined according to sys/param.h
-
---- src/corelib/global/qoperatingsystemversion.h.orig	2021-01-26 18:29:22.000000000 +0000
-+++ src/corelib/global/qoperatingsystemversion.h
-@@ -42,6 +42,10 @@
- #ifndef QOPERATINGSYSTEMVERSION_H
- #define QOPERATINGSYSTEMVERSION_H
- 
-+#ifdef NetBSD
-+#undef NetBSD
-+#endif
-+
- QT_BEGIN_NAMESPACE
- 
- class QString;
-@@ -57,7 +61,9 @@ public:
-         IOS,
-         TvOS,
-         WatchOS,
--        Android
-+        Android,
-+        FreeBSD,
-+        NetBSD
-     };
- 
-     static const QOperatingSystemVersion Windows7;
-@@ -109,6 +115,10 @@ public:
-         return WatchOS;
- #elif defined(Q_OS_ANDROID)
-         return Android;
-+#elif defined(Q_OS_FREEBSD)
-+        return FreeBSD;
-+#elif defined(Q_OS_NETBSD)
-+        return NetBSD;
- #else
-         return Unknown;
- #endif
diff --git a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion__uname.cpp b/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion__uname.cpp
deleted file mode 100644
index 1e062e0180..0000000000
--- a/qt6-qtbase/patches/patch-src_corelib_global_qoperatingsystemversion__uname.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-$NetBSD$
-
-* use uname to get QOperatingSystemVersion on Free and NetBSD
-
---- src/corelib/global/qoperatingsystemversion_uname.cpp.orig	2021-03-05 22:33:51.055078786 +0000
-+++ src/corelib/global/qoperatingsystemversion_uname.cpp
-@@ -0,0 +1,60 @@
-+/****************************************************************************
-+**
-+** Copyright (C) 2021 The Qt Company Ltd.
-+** Contact: https://www.qt.io/licensing/
-+**
-+** This file is part of the QtCore module of the Qt Toolkit.
-+**
-+** $QT_BEGIN_LICENSE:LGPL$
-+** Commercial License Usage
-+** Licensees holding valid commercial Qt licenses may use this file in
-+** accordance with the commercial license agreement provided with the
-+** Software or, alternatively, in accordance with the terms contained in
-+** a written agreement between you and The Qt Company. For licensing terms
-+** and conditions see https://www.qt.io/terms-conditions. For further
-+** information use the contact form at https://www.qt.io/contact-us.
-+**
-+** GNU Lesser General Public License Usage
-+** Alternatively, this file may be used under the terms of the GNU Lesser
-+** General Public License version 3 as published by the Free Software
-+** Foundation and appearing in the file LICENSE.LGPL3 included in the
-+** packaging of this file. Please review the following information to
-+** ensure the GNU Lesser General Public License version 3 requirements
-+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-+**
-+** GNU General Public License Usage
-+** Alternatively, this file may be used under the terms of the GNU
-+** General Public License version 2.0 or (at your option) the GNU General
-+** Public license version 3 or any later version approved by the KDE Free
-+** Qt Foundation. The licenses are as published by the Free Software
-+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-+** included in the packaging of this file. Please review the following
-+** information to ensure the GNU General Public License requirements will
-+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-+** https://www.gnu.org/licenses/gpl-3.0.html.
-+**
-+** $QT_END_LICENSE$
-+**
-+****************************************************************************/
-+
-+#include <QtCore/qstring.h>
-+#include <QtCore/qversionnumber.h>
-+#include <sys/utsname.h>
-+#include "qoperatingsystemversion_p.h"
-+
-+QT_BEGIN_NAMESPACE
-+
-+QOperatingSystemVersion QOperatingSystemVersion::current()
-+{
-+    QOperatingSystemVersion v(currentType(), -1);
-+    struct utsname u;
-+    if (uname(&u) == 0) {
-+      QVersionNumber osv = QVersionNumber::fromString(QString::fromLatin1(u.release));
-+      v.m_major = osv.majorVersion();
-+      v.m_minor = osv.minorVersion();
-+      v.m_micro = osv.microVersion();
-+    }
-+    return v;
-+}
-+
-+QT_END_NAMESPACE
diff --git a/qt6-qtbase/patches/patch-src_corelib_io_qfilesystemwatcher__kqueue__p.h b/qt6-qtbase/patches/patch-src_corelib_io_qfilesystemwatcher__kqueue__p.h
new file mode 100644
index 0000000000..4fbf0a0ed8
--- /dev/null
+++ b/qt6-qtbase/patches/patch-src_corelib_io_qfilesystemwatcher__kqueue__p.h
@@ -0,0 +1,18 @@
+$NetBSD$
+
+* add c++11 override to kqueue methods
+  https://codereview.qt-project.org/c/qt/qtbase/+/345328
+
+--- src/corelib/io/qfilesystemwatcher_kqueue_p.h.orig	2021-05-08 15:38:41.326716498 +0000
++++ src/corelib/io/qfilesystemwatcher_kqueue_p.h
+@@ -71,8 +71,8 @@ public:
+ 
+     static QKqueueFileSystemWatcherEngine *create(QObject *parent);
+ 
+-    QStringList addPaths(const QStringList &paths, QStringList *files, QStringList *directories);
+-    QStringList removePaths(const QStringList &paths, QStringList *files, QStringList *directories);
++    QStringList addPaths(const QStringList &paths, QStringList *files, QStringList *directories) override;
++    QStringList removePaths(const QStringList &paths, QStringList *files, QStringList *directories) override;
+ 
+ private Q_SLOTS:
+     void readFromKqueue();
diff --git a/qt6-qtbase/patches/patch-src_tools_bootstrap_CMakeLists.txt b/qt6-qtbase/patches/patch-src_tools_bootstrap_CMakeLists.txt
deleted file mode 100644
index 629748e4c7..0000000000
--- a/qt6-qtbase/patches/patch-src_tools_bootstrap_CMakeLists.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD$
-
-* get QOperatingSystemVersion using uname on Free and NetBSD
-
---- src/tools/bootstrap/CMakeLists.txt.orig	2021-01-26 18:29:22.000000000 +0000
-+++ src/tools/bootstrap/CMakeLists.txt
-@@ -258,6 +258,11 @@ qt_internal_extend_target(Bootstrap COND
-         uuid
- )
- 
-+qt_internal_extend_target(Bootstrap CONDITION FREEBSD OR NETBSD
-+    SOURCES
-+        ../../corelib/global/qoperatingsystemversion_uname.cpp
-+)
-+
- #### Keys ignored in scope 22:.:../../3rdparty/pcre2:../../3rdparty/pcre2/pcre2.pri:QT_FEATURE_intelcet:
- # QMAKE_CFLAGS = "$$QMAKE_CFLAGS_SHSTK"
- 
diff --git a/qt6-qtdeclarative/PLIST b/qt6-qtdeclarative/PLIST
index b5095dc4b7..aa3c2d64ef 100644
--- a/qt6-qtdeclarative/PLIST
+++ b/qt6-qtdeclarative/PLIST
@@ -12,6 +12,47 @@ qt6/bin/qmlscene
 qt6/bin/qmltestrunner
 qt6/bin/qmltime
 qt6/bin/qmltyperegistrar
+qt6/include/QtLabsAnimation/${PKGVERSION}/QtLabsAnimation/private/qqmlanimationglobal_p.h
+qt6/include/QtLabsAnimation/${PKGVERSION}/QtLabsAnimation/private/qquickboundaryrule_p.h
+qt6/include/QtLabsAnimation/QtLabsAnimation
+qt6/include/QtLabsAnimation/QtLabsAnimationDepends
+qt6/include/QtLabsAnimation/QtLabsAnimationVersion
+qt6/include/QtLabsAnimation/qtlabsanimationversion.h
+qt6/include/QtLabsFolderListModel/${PKGVERSION}/QtLabsFolderListModel/private/fileinfothread_p.h
+qt6/include/QtLabsFolderListModel/${PKGVERSION}/QtLabsFolderListModel/private/fileproperty_p.h
+qt6/include/QtLabsFolderListModel/${PKGVERSION}/QtLabsFolderListModel/private/qquickfolderlistmodel_p.h
+qt6/include/QtLabsFolderListModel/${PKGVERSION}/QtLabsFolderListModel/private/qquickfolderlistmodelglobal_p.h
+qt6/include/QtLabsFolderListModel/QtLabsFolderListModel
+qt6/include/QtLabsFolderListModel/QtLabsFolderListModelDepends
+qt6/include/QtLabsFolderListModel/QtLabsFolderListModelVersion
+qt6/include/QtLabsFolderListModel/qtlabsfolderlistmodelversion.h
+qt6/include/QtLabsQmlModels/${PKGVERSION}/QtLabsQmlModels/private/qqmldelegatecomponent_p.h
+qt6/include/QtLabsQmlModels/${PKGVERSION}/QtLabsQmlModels/private/qqmlmodelsglobal_p.h
+qt6/include/QtLabsQmlModels/${PKGVERSION}/QtLabsQmlModels/private/qqmltablemodel_p.h
+qt6/include/QtLabsQmlModels/${PKGVERSION}/QtLabsQmlModels/private/qqmltablemodelcolumn_p.h
+qt6/include/QtLabsQmlModels/QtLabsQmlModels
+qt6/include/QtLabsQmlModels/QtLabsQmlModelsDepends
+qt6/include/QtLabsQmlModels/QtLabsQmlModelsVersion
+qt6/include/QtLabsQmlModels/qtlabsqmlmodelsversion.h
+qt6/include/QtLabsSettings/${PKGVERSION}/QtLabsSettings/private/qqmlsettings_p.h
+qt6/include/QtLabsSettings/${PKGVERSION}/QtLabsSettings/private/qqmlsettingsglobal_p.h
+qt6/include/QtLabsSettings/QtLabsSettings
+qt6/include/QtLabsSettings/QtLabsSettingsDepends
+qt6/include/QtLabsSettings/QtLabsSettingsVersion
+qt6/include/QtLabsSettings/qtlabssettingsversion.h
+qt6/include/QtLabsSharedImage/${PKGVERSION}/QtLabsSharedImage/private/qsharedimageloader_p.h
+qt6/include/QtLabsSharedImage/${PKGVERSION}/QtLabsSharedImage/private/qsharedimageprovider_p.h
+qt6/include/QtLabsSharedImage/${PKGVERSION}/QtLabsSharedImage/private/qtlabssharedimageglobal_p.h
+qt6/include/QtLabsSharedImage/QtLabsSharedImage
+qt6/include/QtLabsSharedImage/QtLabsSharedImageDepends
+qt6/include/QtLabsSharedImage/QtLabsSharedImageVersion
+qt6/include/QtLabsSharedImage/qtlabssharedimageversion.h
+qt6/include/QtLabsWavefrontMesh/${PKGVERSION}/QtLabsWavefrontMesh/private/qqmlwavefrontmeshglobal_p.h
+qt6/include/QtLabsWavefrontMesh/${PKGVERSION}/QtLabsWavefrontMesh/private/qwavefrontmesh_p.h
+qt6/include/QtLabsWavefrontMesh/QtLabsWavefrontMesh
+qt6/include/QtLabsWavefrontMesh/QtLabsWavefrontMeshDepends
+qt6/include/QtLabsWavefrontMesh/QtLabsWavefrontMeshVersion
+qt6/include/QtLabsWavefrontMesh/qtlabswavefrontmeshversion.h
 qt6/include/QtPacketProtocol/${PKGVERSION}/QtPacketProtocol/private/qpacket_p.h
 qt6/include/QtPacketProtocol/${PKGVERSION}/QtPacketProtocol/private/qpacketprotocol_p.h
 qt6/include/QtPacketProtocol/${PKGVERSION}/QtPacketProtocol/private/qversionedpacket_p.h
@@ -48,7 +89,6 @@ qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlbind_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlbinding_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlboundsignal_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlbuiltinfunctions_p.h
-qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlcleanup_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlcomponent_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlcomponentattached_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlconfigurabledebugservice_p.h
@@ -130,7 +170,6 @@ qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlscriptblob_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlscriptdata_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlscriptstring_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlsourcecoordinate_p.h
-qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlstaticmetaobject_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlstringconverters_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmlthread_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qqmltimer_p.h
@@ -261,6 +300,11 @@ qt6/include/QtQml/${PKGVERSION}/QtQml/private/qv4vme_moth_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qv4vtable_p.h
 qt6/include/QtQml/${PKGVERSION}/QtQml/private/qv4writebarrier_p.h
 qt6/include/QtQml/QJSEngine
+qt6/include/QtQml/QJSManagedValue
+qt6/include/QtQml/QJSNumberCoercion
+qt6/include/QtQml/QJSPrimitiveNull
+qt6/include/QtQml/QJSPrimitiveUndefined
+qt6/include/QtQml/QJSPrimitiveValue
 qt6/include/QtQml/QJSValue
 qt6/include/QtQml/QJSValueIterator
 qt6/include/QtQml/QJSValueList
@@ -299,6 +343,9 @@ qt6/include/QtQml/QtQml
 qt6/include/QtQml/QtQmlDepends
 qt6/include/QtQml/QtQmlVersion
 qt6/include/QtQml/qjsengine.h
+qt6/include/QtQml/qjsmanagedvalue.h
+qt6/include/QtQml/qjsnumbercoercion.h
+qt6/include/QtQml/qjsprimitivevalue.h
 qt6/include/QtQml/qjsvalue.h
 qt6/include/QtQml/qjsvalueiterator.h
 qt6/include/QtQml/qqml.h
@@ -372,6 +419,25 @@ qt6/include/QtQmlDebug/QtQmlDebug
 qt6/include/QtQmlDebug/QtQmlDebugDepends
 qt6/include/QtQmlDebug/QtQmlDebugVersion
 qt6/include/QtQmlDebug/qtqmldebugversion.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldom_fwd_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomconstants_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomerrormessage_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomexternalitems_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomitem_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldompath_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomstringdumper_p.h
+qt6/include/QtQmlDom/${PKGVERSION}/QtQmlDom/private/qqmldomtop_p.h
+qt6/include/QtQmlDom/QtQmlDom
+qt6/include/QtQmlDom/QtQmlDomDepends
+qt6/include/QtQmlDom/QtQmlDomVersion
+qt6/include/QtQmlDom/qqmldom_global.h
+qt6/include/QtQmlDom/qtqmldomversion.h
+qt6/include/QtQmlLocalStorage/${PKGVERSION}/QtQmlLocalStorage/private/qqmllocalstorage_p.h
+qt6/include/QtQmlLocalStorage/${PKGVERSION}/QtQmlLocalStorage/private/qqmllocalstorageglobal_p.h
+qt6/include/QtQmlLocalStorage/QtQmlLocalStorage
+qt6/include/QtQmlLocalStorage/QtQmlLocalStorageDepends
+qt6/include/QtQmlLocalStorage/QtQmlLocalStorageVersion
+qt6/include/QtQmlLocalStorage/qtqmllocalstorageversion.h
 qt6/include/QtQmlModels/${PKGVERSION}/QtQmlModels/private/qqmlabstractdelegatecomponent_p.h
 qt6/include/QtQmlModels/${PKGVERSION}/QtQmlModels/private/qqmladaptormodel_p.h
 qt6/include/QtQmlModels/${PKGVERSION}/QtQmlModels/private/qqmlchangeset_p.h
@@ -435,6 +501,8 @@ qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickcontext2d_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickcontext2dcommandbuffer_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickcontext2dtexture_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickcontext2dtile_p.h
+qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickdeliveryagent_p.h
+qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickdeliveryagent_p_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickdesignercustomobjectdata_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickdesignercustomparserobject_p.h
 qt6/include/QtQuick/${PKGVERSION}/QtQuick/private/qquickdesignersupport_p.h
@@ -711,6 +779,16 @@ qt6/include/QtQuick/qsgvertexcolormaterial.h
 qt6/include/QtQuick/qtquick-config.h
 qt6/include/QtQuick/qtquickglobal.h
 qt6/include/QtQuick/qtquickversion.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquickgridlayoutengine_p.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquicklayout_p.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquicklayoutglobal_p.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquicklayoutstyleinfo_p.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquicklinearlayout_p.h
+qt6/include/QtQuickLayouts/${PKGVERSION}/QtQuickLayouts/private/qquickstacklayout_p.h
+qt6/include/QtQuickLayouts/QtQuickLayouts
+qt6/include/QtQuickLayouts/QtQuickLayoutsDepends
+qt6/include/QtQuickLayouts/QtQuickLayoutsVersion
+qt6/include/QtQuickLayouts/qtquicklayoutsversion.h
 qt6/include/QtQuickParticles/${PKGVERSION}/QtQuickParticles/private/qquickage_p.h
 qt6/include/QtQuickParticles/${PKGVERSION}/QtQuickParticles/private/qquickangledirection_p.h
 qt6/include/QtQuickParticles/${PKGVERSION}/QtQuickParticles/private/qquickcumulativedirection_p.h
@@ -758,7 +836,10 @@ qt6/include/QtQuickShapes/qquickshapesglobal.h
 qt6/include/QtQuickShapes/qtquickshapesversion.h
 qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/qtestoptions_p.h
 qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/quicktest_p.h
+qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/quicktestevent_p.h
+qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/quicktestglobal_p.h
 qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/quicktestresult_p.h
+qt6/include/QtQuickTest/${PKGVERSION}/QtQuickTest/private/quicktestutil_p.h
 qt6/include/QtQuickTest/QtQuickTest
 qt6/include/QtQuickTest/QtQuickTestDepends
 qt6/include/QtQuickTest/QtQuickTestVersion
@@ -774,6 +855,48 @@ qt6/include/QtQuickWidgets/qquickwidget.h
 qt6/include/QtQuickWidgets/qtquickwidgetsglobal.h
 qt6/include/QtQuickWidgets/qtquickwidgetsversion.h
 qt6/lib/cmake/Qt6BuildInternals/StandaloneTests/QtDeclarativeTestsConfig.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationConfig.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationDependencies.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationTargets-release.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationTargets.cmake
+qt6/lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationVersionlessTargets.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelConfig.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelDependencies.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelTargets-release.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelTargets.cmake
+qt6/lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelVersionlessTargets.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsConfig.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsDependencies.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsTargets-release.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsTargets.cmake
+qt6/lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsVersionlessTargets.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsConfig.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsDependencies.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsTargets-release.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsTargets.cmake
+qt6/lib/cmake/Qt6LabsSettings/Qt6LabsSettingsVersionlessTargets.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageConfig.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageDependencies.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageTargets-release.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageTargets.cmake
+qt6/lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageVersionlessTargets.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshConfig.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshConfigVersion.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshDependencies.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshTargets-release.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshTargets.cmake
+qt6/lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshVersionlessTargets.cmake
 qt6/lib/cmake/Qt6PacketProtocol/Qt6PacketProtocolAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6PacketProtocol/Qt6PacketProtocolConfig.cmake
 qt6/lib/cmake/Qt6PacketProtocol/Qt6PacketProtocolConfigVersion.cmake
@@ -950,6 +1073,7 @@ qt6/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryTargets.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake
+qt6/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake
 qt6/lib/cmake/Qt6Qml/Qt6QmlImportScannerTemplate.cpp.in
@@ -980,9 +1104,23 @@ qt6/lib/cmake/Qt6QmlDevTools/Qt6QmlDevToolsDependencies.cmake
 qt6/lib/cmake/Qt6QmlDevTools/Qt6QmlDevToolsTargets-release.cmake
 qt6/lib/cmake/Qt6QmlDevTools/Qt6QmlDevToolsTargets.cmake
 qt6/lib/cmake/Qt6QmlDevTools/Qt6QmlDevToolsVersionlessTargets.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomConfig.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomConfigVersion.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomDependencies.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomTargets-release.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomTargets.cmake
+qt6/lib/cmake/Qt6QmlDom/Qt6QmlDomVersionlessTargets.cmake
 qt6/lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerConfig.cmake
 qt6/lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerConfigVersion.cmake
 qt6/lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerDependencies.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageConfig.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageConfigVersion.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageDependencies.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageTargets-release.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageTargets.cmake
+qt6/lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageVersionlessTargets.cmake
 qt6/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake
 qt6/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake
@@ -1011,6 +1149,13 @@ qt6/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake
 qt6/lib/cmake/Qt6Quick/Qt6QuickTargets-release.cmake
 qt6/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake
 qt6/lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsConfig.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsConfigVersion.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsDependencies.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsTargets-release.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsTargets.cmake
+qt6/lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsVersionlessTargets.cmake
 qt6/lib/cmake/Qt6QuickParticles/Qt6QuickParticlesAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6QuickParticles/Qt6QuickParticlesConfig.cmake
 qt6/lib/cmake/Qt6QuickParticles/Qt6QuickParticlesConfigVersion.cmake
@@ -1039,6 +1184,30 @@ qt6/lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsDependencies.cmake
 qt6/lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsTargets-release.cmake
 qt6/lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsTargets.cmake
 qt6/lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsVersionlessTargets.cmake
+qt6/lib/libQt6LabsAnimation.prl
+qt6/lib/libQt6LabsAnimation.so
+qt6/lib/libQt6LabsAnimation.so.6
+qt6/lib/libQt6LabsAnimation.so.${PKGVERSION}
+qt6/lib/libQt6LabsFolderListModel.prl
+qt6/lib/libQt6LabsFolderListModel.so
+qt6/lib/libQt6LabsFolderListModel.so.6
+qt6/lib/libQt6LabsFolderListModel.so.${PKGVERSION}
+qt6/lib/libQt6LabsQmlModels.prl
+qt6/lib/libQt6LabsQmlModels.so
+qt6/lib/libQt6LabsQmlModels.so.6
+qt6/lib/libQt6LabsQmlModels.so.${PKGVERSION}
+qt6/lib/libQt6LabsSettings.prl
+qt6/lib/libQt6LabsSettings.so
+qt6/lib/libQt6LabsSettings.so.6
+qt6/lib/libQt6LabsSettings.so.${PKGVERSION}
+qt6/lib/libQt6LabsSharedImage.prl
+qt6/lib/libQt6LabsSharedImage.so
+qt6/lib/libQt6LabsSharedImage.so.6
+qt6/lib/libQt6LabsSharedImage.so.${PKGVERSION}
+qt6/lib/libQt6LabsWavefrontMesh.prl
+qt6/lib/libQt6LabsWavefrontMesh.so
+qt6/lib/libQt6LabsWavefrontMesh.so.6
+qt6/lib/libQt6LabsWavefrontMesh.so.${PKGVERSION}
 qt6/lib/libQt6PacketProtocol.a
 qt6/lib/libQt6PacketProtocol.prl
 qt6/lib/libQt6Qml.prl
@@ -1051,6 +1220,12 @@ qt6/lib/libQt6QmlDebug.a
 qt6/lib/libQt6QmlDebug.prl
 qt6/lib/libQt6QmlDevTools.a
 qt6/lib/libQt6QmlDevTools.prl
+qt6/lib/libQt6QmlDom.a
+qt6/lib/libQt6QmlDom.prl
+qt6/lib/libQt6QmlLocalStorage.prl
+qt6/lib/libQt6QmlLocalStorage.so
+qt6/lib/libQt6QmlLocalStorage.so.6
+qt6/lib/libQt6QmlLocalStorage.so.${PKGVERSION}
 qt6/lib/libQt6QmlModels.prl
 qt6/lib/libQt6QmlModels.so
 qt6/lib/libQt6QmlModels.so.6
@@ -1063,6 +1238,10 @@ qt6/lib/libQt6Quick.prl
 qt6/lib/libQt6Quick.so
 qt6/lib/libQt6Quick.so.6
 qt6/lib/libQt6Quick.so.${PKGVERSION}
+qt6/lib/libQt6QuickLayouts.prl
+qt6/lib/libQt6QuickLayouts.so
+qt6/lib/libQt6QuickLayouts.so.6
+qt6/lib/libQt6QuickLayouts.so.${PKGVERSION}
 qt6/lib/libQt6QuickParticles.prl
 qt6/lib/libQt6QuickParticles.so
 qt6/lib/libQt6QuickParticles.so.6
@@ -1079,33 +1258,47 @@ qt6/lib/libQt6QuickWidgets.prl
 qt6/lib/libQt6QuickWidgets.so
 qt6/lib/libQt6QuickWidgets.so.6
 qt6/lib/libQt6QuickWidgets.so.${PKGVERSION}
-qt6/lib/metatypes/qt6labsanimationplugin_release_metatypes.json
-qt6/lib/metatypes/qt6labsmodelsplugin_release_metatypes.json
+qt6/lib/metatypes/qt6labsanimation_release_metatypes.json
+qt6/lib/metatypes/qt6labsfolderlistmodel_release_metatypes.json
+qt6/lib/metatypes/qt6labsqmlmodels_release_metatypes.json
+qt6/lib/metatypes/qt6labssettings_release_metatypes.json
+qt6/lib/metatypes/qt6labssharedimage_release_metatypes.json
+qt6/lib/metatypes/qt6labswavefrontmesh_release_metatypes.json
 qt6/lib/metatypes/qt6qml_release_metatypes.json
-qt6/lib/metatypes/qt6qmlfolderlistmodelplugin_release_metatypes.json
-qt6/lib/metatypes/qt6qmllocalstorageplugin_release_metatypes.json
+qt6/lib/metatypes/qt6qmllocalstorage_release_metatypes.json
 qt6/lib/metatypes/qt6qmlmodels_release_metatypes.json
-qt6/lib/metatypes/qt6qmlsettingsplugin_release_metatypes.json
-qt6/lib/metatypes/qt6qmltestplugin_release_metatypes.json
-qt6/lib/metatypes/qt6qmlwavefrontmeshplugin_release_metatypes.json
 qt6/lib/metatypes/qt6qmlworkerscript_release_metatypes.json
-qt6/lib/metatypes/qt6qquicklayoutsplugin_release_metatypes.json
 qt6/lib/metatypes/qt6quick_release_metatypes.json
+qt6/lib/metatypes/qt6quicklayouts_release_metatypes.json
 qt6/lib/metatypes/qt6quickparticles_release_metatypes.json
 qt6/lib/metatypes/qt6quickshapes_release_metatypes.json
 qt6/lib/metatypes/qt6quicktest_release_metatypes.json
 qt6/lib/metatypes/qt6quicktooling_release_metatypes.json
 qt6/lib/metatypes/qt6quickwindow_release_metatypes.json
-qt6/lib/metatypes/qt6sharedimageplugin_release_metatypes.json
 qt6/mkspecs/features/qmlcache.prf
 qt6/mkspecs/features/qmltypes.prf
 qt6/mkspecs/features/qtquickcompiler.prf
+qt6/mkspecs/modules/qt_lib_labsanimation.pri
+qt6/mkspecs/modules/qt_lib_labsanimation_private.pri
+qt6/mkspecs/modules/qt_lib_labsfolderlistmodel.pri
+qt6/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri
+qt6/mkspecs/modules/qt_lib_labsqmlmodels.pri
+qt6/mkspecs/modules/qt_lib_labsqmlmodels_private.pri
+qt6/mkspecs/modules/qt_lib_labssettings.pri
+qt6/mkspecs/modules/qt_lib_labssettings_private.pri
+qt6/mkspecs/modules/qt_lib_labssharedimage.pri
+qt6/mkspecs/modules/qt_lib_labssharedimage_private.pri
+qt6/mkspecs/modules/qt_lib_labswavefrontmesh.pri
+qt6/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri
 qt6/mkspecs/modules/qt_lib_packetprotocol_private.pri
 qt6/mkspecs/modules/qt_lib_qml.pri
 qt6/mkspecs/modules/qt_lib_qml_private.pri
 qt6/mkspecs/modules/qt_lib_qmlcompiler_private.pri
 qt6/mkspecs/modules/qt_lib_qmldebug_private.pri
 qt6/mkspecs/modules/qt_lib_qmldevtools_private.pri
+qt6/mkspecs/modules/qt_lib_qmldom_private.pri
+qt6/mkspecs/modules/qt_lib_qmllocalstorage.pri
+qt6/mkspecs/modules/qt_lib_qmllocalstorage_private.pri
 qt6/mkspecs/modules/qt_lib_qmlmodels.pri
 qt6/mkspecs/modules/qt_lib_qmlmodels_private.pri
 qt6/mkspecs/modules/qt_lib_qmltest.pri
@@ -1114,18 +1307,29 @@ qt6/mkspecs/modules/qt_lib_qmlworkerscript.pri
 qt6/mkspecs/modules/qt_lib_qmlworkerscript_private.pri
 qt6/mkspecs/modules/qt_lib_quick.pri
 qt6/mkspecs/modules/qt_lib_quick_private.pri
+qt6/mkspecs/modules/qt_lib_quicklayouts.pri
+qt6/mkspecs/modules/qt_lib_quicklayouts_private.pri
 qt6/mkspecs/modules/qt_lib_quickparticles_private.pri
 qt6/mkspecs/modules/qt_lib_quickshapes_private.pri
 qt6/mkspecs/modules/qt_lib_quickwidgets.pri
 qt6/mkspecs/modules/qt_lib_quickwidgets_private.pri
+qt6/modules/LabsAnimation.json
+qt6/modules/LabsFolderListModel.json
+qt6/modules/LabsQmlModels.json
+qt6/modules/LabsSettings.json
+qt6/modules/LabsSharedImage.json
+qt6/modules/LabsWavefrontMesh.json
 qt6/modules/PacketProtocol.json
 qt6/modules/Qml.json
 qt6/modules/QmlCompiler.json
 qt6/modules/QmlDebug.json
 qt6/modules/QmlDevTools.json
+qt6/modules/QmlDom.json
+qt6/modules/QmlLocalStorage.json
 qt6/modules/QmlModels.json
 qt6/modules/QmlWorkerScript.json
 qt6/modules/Quick.json
+qt6/modules/QuickLayouts.json
 qt6/modules/QuickParticles.json
 qt6/modules/QuickShapes.json
 qt6/modules/QuickTest.json
@@ -1159,8 +1363,6 @@ qt6/qml/Qt/labs/sharedimage/qmldir
 qt6/qml/Qt/labs/wavefrontmesh/libqmlwavefrontmeshplugin.so
 qt6/qml/Qt/labs/wavefrontmesh/plugins.qmltypes
 qt6/qml/Qt/labs/wavefrontmesh/qmldir
-qt6/qml/Qt/test/qtestroot/plugins.qmltypes
-qt6/qml/Qt/test/qtestroot/qmldir
 qt6/qml/QtQml/Models/libmodelsplugin.so
 qt6/qml/QtQml/Models/plugins.qmltypes
 qt6/qml/QtQml/Models/qmldir
diff --git a/qt6-qtdeclarative/distinfo b/qt6-qtdeclarative/distinfo
index a6140051d1..aaa86b6ee0 100644
--- a/qt6-qtdeclarative/distinfo
+++ b/qt6-qtdeclarative/distinfo
@@ -1,12 +1,12 @@
 $NetBSD$
 
-SHA1 (qtdeclarative-everywhere-src-6.0.4.tar.xz) = 3dae070107b249b80070485b2f4d26dadf56d5cd
-RMD160 (qtdeclarative-everywhere-src-6.0.4.tar.xz) = cbca2f7e9f185a9b0e7f77100f0530c42b8c0c01
-SHA512 (qtdeclarative-everywhere-src-6.0.4.tar.xz) = 36e1874ecd4fc7c7a1e72b43e28f19e34a7084e58a1512f5e5ce0d0e748a2259eb8d992869bf2e9d5b8ae7650b1a3b9dcc3ed930885481aa2e6838404fbea27a
-Size (qtdeclarative-everywhere-src-6.0.4.tar.xz) = 20834808 bytes
+SHA1 (qtdeclarative-everywhere-src-6.1.0.tar.xz) = 092ea671bf930b3f335fa6e2855258701b85e52f
+RMD160 (qtdeclarative-everywhere-src-6.1.0.tar.xz) = ae1c9025b56f2c80bfa6d9314e5d75c562bfb652
+SHA512 (qtdeclarative-everywhere-src-6.1.0.tar.xz) = 6d6e969a60598165fdc525beb4caa048a5a07565f276bfb0cb9570409a3a0a9c6f72f5042a95e7097a22c89556879d243e2fd1242f95d68a09d8fc26f372762c
+Size (qtdeclarative-everywhere-src-6.1.0.tar.xz) = 20887752 bytes
 SHA1 (patch-src_3rdparty_masm_assembler_ARMv7Assembler.h) = 697cd2dc622aebabf640e1625494c981dcf6df19
 SHA1 (patch-src_3rdparty_masm_wtf_Compiler.h) = 8d7e318e0148eea0f262ec13463bc15bd03478dc
 SHA1 (patch-src_3rdparty_masm_yarr_YarrCanonicalize.h) = 3cb31384f5287a5449d1a6bdd03d42870ac9385f
 SHA1 (patch-src_qml_common_qv4alloca__p.h) = 15a300585e4f5acf956badf0d94e388934883041
 SHA1 (patch-src_qml_jit_qv4assemblercommon__p.h) = 84fa72bb8b90dffe6636fcd4302876bfc838663c
-SHA1 (patch-src_qmltest_CMakeLists.txt) = e9dd51b5f67e5c487ee06cce8c99d749f2e45445
+SHA1 (patch-src_qmltest_CMakeLists.txt) = 18df837cf1fa00dbf69e89cc3afaa05d82524c78
diff --git a/qt6-qtdeclarative/patches/patch-src_qmltest_CMakeLists.txt b/qt6-qtdeclarative/patches/patch-src_qmltest_CMakeLists.txt
index 7c9176a510..a07e131f95 100644
--- a/qt6-qtdeclarative/patches/patch-src_qmltest_CMakeLists.txt
+++ b/qt6-qtdeclarative/patches/patch-src_qmltest_CMakeLists.txt
@@ -2,17 +2,16 @@ $NetBSD$
 
 Workaround linking issue on SunOS
 
---- src/qmltest/CMakeLists.txt.orig	2021-02-24 12:50:01.679198663 +0000
+--- src/qmltest/CMakeLists.txt.orig	2021-05-03 10:15:49.000000000 +0000
 +++ src/qmltest/CMakeLists.txt
-@@ -55,6 +55,11 @@ qt_internal_extend_target(QuickTest COND
+@@ -47,6 +47,10 @@ qt_internal_extend_target(QuickTest COND
+     DEFINES
          QT_QML_DEBUG_NO_WARNING
  )
- 
 +qt_internal_extend_target(QuickTest CONDITION SOLARIS
 +    LINK_OPTIONS
 +        -mimpure-text
 +)
-+
- #### Keys ignored in scope 4:.:.:qmltest.pro:prefix_build:
- # INSTALLS = "qmldir"
- 
+ qt_internal_add_docs(QuickTest
+     doc/qtqmltest.qdocconf
+ )
diff --git a/qt6-qtimageformats/Makefile b/qt6-qtimageformats/Makefile
index 405ed85257..7dab3e04c7 100644
--- a/qt6-qtimageformats/Makefile
+++ b/qt6-qtimageformats/Makefile
@@ -5,12 +5,8 @@ PKGNAME=	qt6-qtimageformats-${QTVERSION}
 COMMENT=	Extra image handlers for Qt6
 CATEGORIES=	graphics
 
-QT_ADDLIB=	yes
 .include "../../wip/qt6-qtbase/Makefile.common"
 
-post-extract:
-	${CP} ${FILESDIR}/FindWrapMNG.cmake ${WRKSRC}/cmake
-
 .include "../../graphics/jasper/buildlink3.mk"
 .include "../../graphics/mng/buildlink3.mk"
 .include "../../graphics/tiff/buildlink3.mk"
diff --git a/qt6-qtimageformats/PLIST b/qt6-qtimageformats/PLIST
index 6fbaab62dd..6d50252544 100644
--- a/qt6-qtimageformats/PLIST
+++ b/qt6-qtimageformats/PLIST
@@ -1,6 +1,6 @@
 @comment $NetBSD$
 qt6/lib/cmake/Qt6/FindWrapJasper.cmake
-qt6/lib/cmake/Qt6/FindWrapMNG.cmake
+qt6/lib/cmake/Qt6/FindLibmng.cmake
 qt6/lib/cmake/Qt6/FindWrapWebP.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake
diff --git a/qt6-qtimageformats/distinfo b/qt6-qtimageformats/distinfo
index f6b713d017..0980749bae 100644
--- a/qt6-qtimageformats/distinfo
+++ b/qt6-qtimageformats/distinfo
@@ -1,9 +1,6 @@
 $NetBSD$
 
-SHA1 (qtimageformats-everywhere-src-6.0.4.tar.xz) = 17f57a7c189c5b7596ae359b4984a667fc96feae
-RMD160 (qtimageformats-everywhere-src-6.0.4.tar.xz) = c4136815186c930776dba585a02d45887da9bab9
-SHA512 (qtimageformats-everywhere-src-6.0.4.tar.xz) = 44834f2fa8280e5e10650cba1d04d7455157872e064372bb6eb4a2477aa68b76d1318f1579b6e6200c49037bf35fff16bd7c62d7640a0c3fc00cb4dfa2ab7d14
-Size (qtimageformats-everywhere-src-6.0.4.tar.xz) = 1837512 bytes
-SHA1 (patch-src_imageformats_configure.cmake) = ab6cfcb8b1de942ff0c04430a610bfa141819288
-SHA1 (patch-src_plugins_imageformats_CMakeLists.txt) = 8f04e7374749ba817af94561952a86ff0f6a163b
-SHA1 (patch-src_plugins_imageformats_mng_CMakeLists.txt) = 2f9cbcca62e0f00a924f212a124f9794eec69361
+SHA1 (qtimageformats-everywhere-src-6.1.0.tar.xz) = 44e9d313fcafc65e64dae2afc536dc0d5a6e7403
+RMD160 (qtimageformats-everywhere-src-6.1.0.tar.xz) = acfe94e4f7a06d5869499f163154a8e87de0d58c
+SHA512 (qtimageformats-everywhere-src-6.1.0.tar.xz) = 91f69689062dd598df54da008ac21961153eb76a48bc40c61dad926497f519d7604d161e173650929470d85818f89aa7a372e6e080c28a5413a65a55b53aa459
+Size (qtimageformats-everywhere-src-6.1.0.tar.xz) = 1835612 bytes
diff --git a/qt6-qtimageformats/files/FindWrapMNG.cmake b/qt6-qtimageformats/files/FindWrapMNG.cmake
deleted file mode 100644
index 09961d55b8..0000000000
--- a/qt6-qtimageformats/files/FindWrapMNG.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# We have to do this instead of using pkgconfig directly in configure.cmake.
-# If we use it directly in configure.cmake cmake complains about 
-# CMAKE_FIND_LIBRARY_PREFIXES and CMAKE_FIND_LIBRARY_SUFFIXES not being
-# set and that add_library used for imported target creation in
-# pkg_check_modules is not scriptable.
-# A version of this has been filed upstream
-# https://codereview.qt-project.org/c/qt/qtimageformats/+/335598
-#
-find_package(PkgConfig)
-pkg_check_modules(MNG IMPORTED_TARGET libmng>1.0.9)
-if(TARGET PkgConfig::MNG)
-set(WrapMNG_FOUND TRUE)
-endif()
diff --git a/qt6-qtimageformats/patches/patch-src_imageformats_configure.cmake b/qt6-qtimageformats/patches/patch-src_imageformats_configure.cmake
deleted file mode 100644
index 5f63d03dc4..0000000000
--- a/qt6-qtimageformats/patches/patch-src_imageformats_configure.cmake
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD$
-
-* enable mng
-  A version of this has been filed upstream
-  https://codereview.qt-project.org/c/qt/qtimageformats/+/335598
-
---- src/imageformats/configure.cmake.orig	2021-01-28 05:17:06.000000000 +0000
-+++ src/imageformats/configure.cmake
-@@ -17,7 +17,7 @@ set_property(CACHE INPUT_webp PROPERTY S
- qt_find_package(WrapJasper PROVIDED_TARGETS WrapJasper::WrapJasper MODULE_NAME imageformats QMAKE_LIB jasper)
- qt_find_package(TIFF PROVIDED_TARGETS TIFF::TIFF MODULE_NAME imageformats QMAKE_LIB tiff)
- qt_find_package(WrapWebP PROVIDED_TARGETS WrapWebP::WrapWebP MODULE_NAME imageformats QMAKE_LIB webp)
--
-+qt_find_package(WrapMNG PROVIDED_TARGETS PkgConfig::MNG MODULE_NAME imageformats QMAKE_LIB mng)
- 
- #### Tests
- 
-@@ -33,7 +33,7 @@ qt_feature("jasper" PRIVATE
- qt_feature_definition("jasper" "QT_NO_IMAGEFORMAT_JASPER" NEGATE)
- qt_feature("mng" PRIVATE
-     LABEL "MNG"
--    CONDITION libs.mng OR FIXME
-+    CONDITION TARGET PkgConfig::MNG
-     DISABLE INPUT_mng STREQUAL 'no'
- )
- qt_feature("tiff" PRIVATE
diff --git a/qt6-qtimageformats/patches/patch-src_plugins_imageformats_CMakeLists.txt b/qt6-qtimageformats/patches/patch-src_plugins_imageformats_CMakeLists.txt
deleted file mode 100644
index 761c66acf6..0000000000
--- a/qt6-qtimageformats/patches/patch-src_plugins_imageformats_CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD$
-
-* enable mng
-  A version of this has been filed upstream
-  https://codereview.qt-project.org/c/qt/qtimageformats/+/335598
-
---- src/plugins/imageformats/CMakeLists.txt.orig	2021-01-28 05:17:06.000000000 +0000
-+++ src/plugins/imageformats/CMakeLists.txt
-@@ -24,7 +24,7 @@ endif()
- if(QT_FEATURE_regularexpression)
-     add_subdirectory(icns)
- endif()
--if(QT_FEATURE_mng AND OFF) # special case: FIXME
-+if(QT_FEATURE_mng) # special case: FIXME
-     add_subdirectory(mng)
- endif()
- if(QT_FEATURE_jasper)
diff --git a/qt6-qtimageformats/patches/patch-src_plugins_imageformats_mng_CMakeLists.txt b/qt6-qtimageformats/patches/patch-src_plugins_imageformats_mng_CMakeLists.txt
deleted file mode 100644
index 7764c35590..0000000000
--- a/qt6-qtimageformats/patches/patch-src_plugins_imageformats_mng_CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD$
-
-* enable mng
-  A version of this has been filed upstream
-  https://codereview.qt-project.org/c/qt/qtimageformats/+/335598
-
---- src/plugins/imageformats/mng/CMakeLists.txt.orig	2021-01-28 05:17:06.000000000 +0000
-+++ src/plugins/imageformats/mng/CMakeLists.txt
-@@ -11,7 +11,7 @@ qt_internal_add_plugin(QMngPlugin
-         main.cpp
-         qmnghandler.cpp qmnghandler_p.h
-     LIBRARIES
--        mng
-+        PkgConfig::MNG
-     PUBLIC_LIBRARIES
-         Qt::Core
-         Qt::Gui
diff --git a/qt6-qtnetworkauth/Makefile b/qt6-qtnetworkauth/Makefile
index bb90427e7a..a8aaa710e0 100644
--- a/qt6-qtnetworkauth/Makefile
+++ b/qt6-qtnetworkauth/Makefile
@@ -5,7 +5,6 @@ PKGNAME=	qt6-qtnetworkauth-${QTVERSION}
 COMMENT=	Qt6 module with auth libraries
 CATEGORIES=	net security
 
-QT_ADDLIB=	yes
 .include "../../wip/qt6-qtbase/Makefile.common"
 
 .include "../../wip/qt6-qtbase/buildlink3.mk"
diff --git a/qt6-qtnetworkauth/distinfo b/qt6-qtnetworkauth/distinfo
index 1c0894b498..cc8505f1be 100644
--- a/qt6-qtnetworkauth/distinfo
+++ b/qt6-qtnetworkauth/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtnetworkauth-everywhere-src-6.0.4.tar.xz) = 696473c0fb59cfabfce28873ba536a40faebd845
-RMD160 (qtnetworkauth-everywhere-src-6.0.4.tar.xz) = 8ad50bf3615e4b18a4b281063b70c2e7eba88dd8
-SHA512 (qtnetworkauth-everywhere-src-6.0.4.tar.xz) = 012068a17f4174608785735a5df1f3c8aa27a77bed9b6ac40ede087cdaecd5193dc3f4d69e1b38938f6ce1888d9b762999b429fa31077d26dd098621f12b30a7
-Size (qtnetworkauth-everywhere-src-6.0.4.tar.xz) = 145892 bytes
+SHA1 (qtnetworkauth-everywhere-src-6.1.0.tar.xz) = 02cd5092ce7bb3d71c7d9e62c7a81abefbb7f7ef
+RMD160 (qtnetworkauth-everywhere-src-6.1.0.tar.xz) = 89204a4be7bae15c485629fb97ab3672e40c5a10
+SHA512 (qtnetworkauth-everywhere-src-6.1.0.tar.xz) = 4449647253278c31f8c6c50e7ac041bcc3e47fc83944a979981184e715c32a2830f154222bf4d827f08165ec3eb6a41a2172370ab60f61c692805cefe6ac794b
+Size (qtnetworkauth-everywhere-src-6.1.0.tar.xz) = 146120 bytes
diff --git a/qt6-qtquick3d/PLIST b/qt6-qtquick3d/PLIST
index e96cfa2da7..f339273c08 100644
--- a/qt6-qtquick3d/PLIST
+++ b/qt6-qtquick3d/PLIST
@@ -11,11 +11,13 @@ qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3ddirectionallight_p
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3deffect_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dfrustumcamera_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dgeometry_p.h
+qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dinstancing_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3ditem2d_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3djoint_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dloader_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dmaterial_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dmodel_p.h
+qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dmorphtarget_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dnode_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dnode_p_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dobject_p.h
@@ -43,6 +45,7 @@ qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qquick3dviewport_p.h
 qt6/include/QtQuick3D/${PKGVERSION}/QtQuick3D/private/qtquick3dglobal_p.h
 qt6/include/QtQuick3D/QQuick3D
 qt6/include/QtQuick3D/QQuick3DGeometry
+qt6/include/QtQuick3D/QQuick3DInstancing
 qt6/include/QtQuick3D/QQuick3DObject
 qt6/include/QtQuick3D/QQuick3DTextureData
 qt6/include/QtQuick3D/QtQuick3D
@@ -50,6 +53,7 @@ qt6/include/QtQuick3D/QtQuick3DDepends
 qt6/include/QtQuick3D/QtQuick3DVersion
 qt6/include/QtQuick3D/qquick3d.h
 qt6/include/QtQuick3D/qquick3dgeometry.h
+qt6/include/QtQuick3D/qquick3dinstancing.h
 qt6/include/QtQuick3D/qquick3dobject.h
 qt6/include/QtQuick3D/qquick3dtexturedata.h
 qt6/include/QtQuick3D/qtquick3dglobal.h
@@ -58,14 +62,47 @@ qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssg
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgassetimporterfactory_p.h
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgassetimporterplugin_p.h
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgassetimportmanager_p.h
+qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgmesh_p.h
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgmeshbvhbuilder_p.h
-qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgmeshutilities_p.h
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qssgqmlutilities_p.h
 qt6/include/QtQuick3DAssetImport/${PKGVERSION}/QtQuick3DAssetImport/private/qtquick3dassetimportglobal_p.h
 qt6/include/QtQuick3DAssetImport/QtQuick3DAssetImport
 qt6/include/QtQuick3DAssetImport/QtQuick3DAssetImportDepends
 qt6/include/QtQuick3DAssetImport/QtQuick3DAssetImportVersion
 qt6/include/QtQuick3DAssetImport/qtquick3dassetimportversion.h
+qt6/include/QtQuick3DIblBaker/${PKGVERSION}/QtQuick3DIblBaker/private/qssgiblbaker_p.h
+qt6/include/QtQuick3DIblBaker/${PKGVERSION}/QtQuick3DIblBaker/private/qtquick3diblbaker_p.h
+qt6/include/QtQuick3DIblBaker/QtQuick3DIblBaker
+qt6/include/QtQuick3DIblBaker/QtQuick3DIblBakerDepends
+qt6/include/QtQuick3DIblBaker/QtQuick3DIblBakerVersion
+qt6/include/QtQuick3DIblBaker/qtquick3diblbakerversion.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticle_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleaffector_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleattractor_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticledata_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticledirection_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleemitburst_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleemitter_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleforeign_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlegravity_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlemodelparticle_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlepointrotator_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlerandomizer_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleshape_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlespriteparticle_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlesystem_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlesystemlogging_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticletargetdirection_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticletrailemitter_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticleutils_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlevectordirection_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qquick3dparticlewander_p.h
+qt6/include/QtQuick3DParticles/${PKGVERSION}/QtQuick3DParticles/private/qtquick3dparticlesglobal_p.h
+qt6/include/QtQuick3DParticles/QtQuick3DParticles
+qt6/include/QtQuick3DParticles/QtQuick3DParticlesDepends
+qt6/include/QtQuick3DParticles/QtQuick3DParticlesVersion
+qt6/include/QtQuick3DParticles/qtquick3dparticlesglobal.h
+qt6/include/QtQuick3DParticles/qtquick3dparticlesversion.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgperframeallocator_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderableimage_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderableobjects_p.h
@@ -88,6 +125,7 @@ qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderimage_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderimagetexture_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderinputstreamfactory_p.h
+qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderinstancetable_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderitem2d_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderjoint_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderlayer_p.h
@@ -98,7 +136,9 @@ qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendermaterialshadergenerator_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendermesh_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendermodel_p.h
+qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendermorphtarget_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendernode_p.h
+qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderparticles_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderray_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrenderresourcemanager_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrendershadercache_p.h
@@ -112,6 +152,7 @@ qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrhicontext_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrhicustommaterialsystem_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrhieffectsystem_p.h
+qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrhiparticles_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgrhiquadrenderer_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgruntimerenderlogging_p.h
 qt6/include/QtQuick3DRuntimeRender/${PKGVERSION}/QtQuick3DRuntimeRender/private/qssgshadermapkey_p.h
@@ -157,6 +198,12 @@ qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfigVersion.cmake
 qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginDependencies.cmake
 qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-release.cmake
 qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfigVersion.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginDependencies.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-release.cmake
+qt6/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake
 qt6/lib/cmake/Qt6Quick3D/Qt6Quick3DAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Quick3D/Qt6Quick3DConfig.cmake
 qt6/lib/cmake/Qt6Quick3D/Qt6Quick3DConfigVersion.cmake
@@ -184,6 +231,20 @@ qt6/lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginConfigVersion.cmake
 qt6/lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginDependencies.cmake
 qt6/lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginTargets-release.cmake
 qt6/lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginTargets.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerConfig.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerConfigVersion.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerDependencies.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerTargets-release.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerTargets.cmake
+qt6/lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerVersionlessTargets.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesAdditionalTargetInfo.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesConfig.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesConfigVersion.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesDependencies.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesTargets-release.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesTargets.cmake
+qt6/lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesVersionlessTargets.cmake
 qt6/lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderAdditionalTargetInfo.cmake
 qt6/lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderConfig.cmake
 qt6/lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderConfigVersion.cmake
@@ -213,6 +274,14 @@ qt6/lib/libQt6Quick3DAssetImport.prl
 qt6/lib/libQt6Quick3DAssetImport.so
 qt6/lib/libQt6Quick3DAssetImport.so.6
 qt6/lib/libQt6Quick3DAssetImport.so.${PKGVERSION}
+qt6/lib/libQt6Quick3DIblBaker.prl
+qt6/lib/libQt6Quick3DIblBaker.so
+qt6/lib/libQt6Quick3DIblBaker.so.6
+qt6/lib/libQt6Quick3DIblBaker.so.${PKGVERSION}
+qt6/lib/libQt6Quick3DParticles.prl
+qt6/lib/libQt6Quick3DParticles.so
+qt6/lib/libQt6Quick3DParticles.so.6
+qt6/lib/libQt6Quick3DParticles.so.${PKGVERSION}
 qt6/lib/libQt6Quick3DRuntimeRender.prl
 qt6/lib/libQt6Quick3DRuntimeRender.so
 qt6/lib/libQt6Quick3DRuntimeRender.so.6
@@ -224,16 +293,23 @@ qt6/lib/libQt6Quick3DUtils.so.${PKGVERSION}
 qt6/lib/metatypes/qt6qtquick3deffectplugin_release_metatypes.json
 qt6/lib/metatypes/qt6qtquick3dhelpersplugin_release_metatypes.json
 qt6/lib/metatypes/qt6quick3d_release_metatypes.json
+qt6/lib/metatypes/qt6quick3dparticles_release_metatypes.json
 qt6/mkspecs/modules/qt_lib_quick3d.pri
 qt6/mkspecs/modules/qt_lib_quick3d_private.pri
 qt6/mkspecs/modules/qt_lib_quick3dassetimport.pri
 qt6/mkspecs/modules/qt_lib_quick3dassetimport_private.pri
+qt6/mkspecs/modules/qt_lib_quick3diblbaker.pri
+qt6/mkspecs/modules/qt_lib_quick3diblbaker_private.pri
+qt6/mkspecs/modules/qt_lib_quick3dparticles.pri
+qt6/mkspecs/modules/qt_lib_quick3dparticles_private.pri
 qt6/mkspecs/modules/qt_lib_quick3druntimerender.pri
 qt6/mkspecs/modules/qt_lib_quick3druntimerender_private.pri
 qt6/mkspecs/modules/qt_lib_quick3dutils.pri
 qt6/mkspecs/modules/qt_lib_quick3dutils_private.pri
 qt6/modules/Quick3D.json
 qt6/modules/Quick3DAssetImport.json
+qt6/modules/Quick3DIblBaker.json
+qt6/modules/Quick3DParticles.json
 qt6/modules/Quick3DRuntimeRender.json
 qt6/modules/Quick3DUtils.json
 qt6/plugins/assetimporters/libassimp.so
@@ -318,6 +394,9 @@ qt6/qml/QtQuick3D/Helpers/libqtquick3dhelpersplugin.so
 qt6/qml/QtQuick3D/Helpers/meshes/axisGrid.mesh
 qt6/qml/QtQuick3D/Helpers/plugins.qmltypes
 qt6/qml/QtQuick3D/Helpers/qmldir
+qt6/qml/QtQuick3D/Particles3D/libqtquick3dparticles3dplugin.so
+qt6/qml/QtQuick3D/Particles3D/plugins.qmltypes
+qt6/qml/QtQuick3D/Particles3D/qmldir
 qt6/qml/QtQuick3D/designer/BufferInputSection.qml
 qt6/qml/QtQuick3D/designer/BufferInputSpecifics.qml
 qt6/qml/QtQuick3D/designer/BufferSection.qml
@@ -390,9 +469,15 @@ qt6/qml/QtQuick3D/designer/images/effect%2x.png@localhost
 qt6/qml/QtQuick3D/designer/images/group.png
 qt6/qml/QtQuick3D/designer/images/group16.png
 qt6/qml/QtQuick3D/designer/images/group%2x.png@localhost
-qt6/qml/QtQuick3D/designer/images/light.png
-qt6/qml/QtQuick3D/designer/images/light16.png
-qt6/qml/QtQuick3D/designer/images/light%2x.png@localhost
+qt6/qml/QtQuick3D/designer/images/lightdirectional.png
+qt6/qml/QtQuick3D/designer/images/lightdirectional16.png
+qt6/qml/QtQuick3D/designer/images/lightdirectional%2x.png@localhost
+qt6/qml/QtQuick3D/designer/images/lightpoint.png
+qt6/qml/QtQuick3D/designer/images/lightpoint16.png
+qt6/qml/QtQuick3D/designer/images/lightpoint%2x.png@localhost
+qt6/qml/QtQuick3D/designer/images/lightspot.png
+qt6/qml/QtQuick3D/designer/images/lightspot16.png
+qt6/qml/QtQuick3D/designer/images/lightspot%2x.png@localhost
 qt6/qml/QtQuick3D/designer/images/material.png
 qt6/qml/QtQuick3D/designer/images/material16.png
 qt6/qml/QtQuick3D/designer/images/material%2x.png@localhost
diff --git a/qt6-qtquick3d/TODO b/qt6-qtquick3d/TODO
new file mode 100644
index 0000000000..96ce592173
--- /dev/null
+++ b/qt6-qtquick3d/TODO
@@ -0,0 +1,2 @@
+mulitmedia/assimp needs mOrthographicView in order to be used by
+qt6qtquick3d 6.1, add it
diff --git a/qt6-qtquick3d/distinfo b/qt6-qtquick3d/distinfo
index abcedc8e27..c43852640f 100644
--- a/qt6-qtquick3d/distinfo
+++ b/qt6-qtquick3d/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtquick3d-everywhere-src-6.0.4.tar.xz) = 570d0172206e9625b1ffac97b54af3e1ac95c095
-RMD160 (qtquick3d-everywhere-src-6.0.4.tar.xz) = d69a59a528c77e2162ba5649a09adf775c0c3abc
-SHA512 (qtquick3d-everywhere-src-6.0.4.tar.xz) = b83b594e37a229080a348f6eb6d499f83dd1d216f91e984043f47063c6e419daaafcfcbacfac3fe94a41f57c87eed482bf67761218db78bd0e4019fe19e57196
-Size (qtquick3d-everywhere-src-6.0.4.tar.xz) = 47230476 bytes
+SHA1 (qtquick3d-everywhere-src-6.1.0.tar.xz) = 358eeaba99ad20906a223fff2b964d2b150756ad
+RMD160 (qtquick3d-everywhere-src-6.1.0.tar.xz) = f14e02a431e28ba062d8b88d13529566e546d30d
+SHA512 (qtquick3d-everywhere-src-6.1.0.tar.xz) = 94afd434f9799240fc2c61f7dfcb28068a91df5a2e8f9aea417f5867a9272bca0dff012d3f326de436795a99095966fadd3072d76527c81041e5045d0b3d0067
+Size (qtquick3d-everywhere-src-6.1.0.tar.xz) = 49324456 bytes
diff --git a/qt6-qtquickcontrols2/PLIST b/qt6-qtquickcontrols2/PLIST
index 7c9390652f..553339840a 100644
--- a/qt6-qtquickcontrols2/PLIST
+++ b/qt6-qtquickcontrols2/PLIST
@@ -67,6 +67,7 @@ qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickgrou
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickheaderview_p.h
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickheaderview_p_p.h
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickicon_p.h
+qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickindicatorbutton_p.h
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickitemdelegate_p.h
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquickitemdelegate_p_p.h
 qt6/include/QtQuickTemplates2/${PKGVERSION}/QtQuickTemplates2/private/qquicklabel_p.h
@@ -264,6 +265,7 @@ qt6/lib/libQt6QuickTemplates2.prl
 qt6/lib/libQt6QuickTemplates2.so
 qt6/lib/libQt6QuickTemplates2.so.6
 qt6/lib/libQt6QuickTemplates2.so.${PKGVERSION}
+qt6/lib/metatypes/qt6qtlabsplatformplugin_release_metatypes.json
 qt6/lib/metatypes/qt6qtquickcontrols2basicstyleimplplugin_release_metatypes.json
 qt6/lib/metatypes/qt6qtquickcontrols2basicstyleplugin_release_metatypes.json
 qt6/lib/metatypes/qt6qtquickcontrols2fusionstyleimplplugin_release_metatypes.json
@@ -288,6 +290,7 @@ qt6/modules/QuickControls2.json
 qt6/modules/QuickControls2Impl.json
 qt6/modules/QuickTemplates2.json
 qt6/qml/Qt/labs/platform/libqtlabsplatformplugin.so
+qt6/qml/Qt/labs/platform/plugins.qmltypes
 qt6/qml/Qt/labs/platform/qmldir
 qt6/qml/QtQuick/Controls/Basic/AbstractButton.qml
 qt6/qml/QtQuick/Controls/Basic/Action.qml
@@ -350,6 +353,7 @@ qt6/qml/QtQuick/Controls/Basic/impl/libqtquickcontrols2basicstyleimplplugin.so
 qt6/qml/QtQuick/Controls/Basic/impl/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Basic/impl/qmldir
 qt6/qml/QtQuick/Controls/Basic/libqtquickcontrols2basicstyleplugin.so
+qt6/qml/QtQuick/Controls/Basic/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Basic/qmldir
 qt6/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml
 qt6/qml/QtQuick/Controls/Fusion/BusyIndicator.qml
@@ -410,6 +414,7 @@ qt6/qml/QtQuick/Controls/Fusion/impl/libqtquickcontrols2fusionstyleimplplugin.so
 qt6/qml/QtQuick/Controls/Fusion/impl/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Fusion/impl/qmldir
 qt6/qml/QtQuick/Controls/Fusion/libqtquickcontrols2fusionstyleplugin.so
+qt6/qml/QtQuick/Controls/Fusion/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Fusion/qmldir
 qt6/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml
 qt6/qml/QtQuick/Controls/Imagine/BusyIndicator.qml
@@ -465,6 +470,7 @@ qt6/qml/QtQuick/Controls/Imagine/impl/libqtquickcontrols2imaginestyleimplplugin.
 qt6/qml/QtQuick/Controls/Imagine/impl/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Imagine/impl/qmldir
 qt6/qml/QtQuick/Controls/Imagine/libqtquickcontrols2imaginestyleplugin.so
+qt6/qml/QtQuick/Controls/Imagine/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Imagine/qmldir
 qt6/qml/QtQuick/Controls/Material/ApplicationWindow.qml
 qt6/qml/QtQuick/Controls/Material/BusyIndicator.qml
@@ -529,6 +535,7 @@ qt6/qml/QtQuick/Controls/Material/impl/libqtquickcontrols2materialstyleimplplugi
 qt6/qml/QtQuick/Controls/Material/impl/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Material/impl/qmldir
 qt6/qml/QtQuick/Controls/Material/libqtquickcontrols2materialstyleplugin.so
+qt6/qml/QtQuick/Controls/Material/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Material/qmldir
 qt6/qml/QtQuick/Controls/Universal/ApplicationWindow.qml
 qt6/qml/QtQuick/Controls/Universal/BusyIndicator.qml
@@ -587,6 +594,7 @@ qt6/qml/QtQuick/Controls/Universal/impl/libqtquickcontrols2universalstyleimplplu
 qt6/qml/QtQuick/Controls/Universal/impl/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Universal/impl/qmldir
 qt6/qml/QtQuick/Controls/Universal/libqtquickcontrols2universalstyleplugin.so
+qt6/qml/QtQuick/Controls/Universal/plugins.qmltypes
 qt6/qml/QtQuick/Controls/Universal/qmldir
 qt6/qml/QtQuick/Controls/designer/AbstractButtonSection.qml
 qt6/qml/QtQuick/Controls/designer/BusyIndicatorSpecifics.qml
diff --git a/qt6-qtquickcontrols2/distinfo b/qt6-qtquickcontrols2/distinfo
index 43c7133c0b..12b9245af5 100644
--- a/qt6-qtquickcontrols2/distinfo
+++ b/qt6-qtquickcontrols2/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtquickcontrols2-everywhere-src-6.0.4.tar.xz) = bb8b133c0ad75c8e0ef169e56aff25b5dff507df
-RMD160 (qtquickcontrols2-everywhere-src-6.0.4.tar.xz) = 1c11dd3a372bc1613be2358c7980d8deda24ef11
-SHA512 (qtquickcontrols2-everywhere-src-6.0.4.tar.xz) = 42cf0fe29f134ab0412168b47da0833be31ecfbc349975bf04738d67829d4730601489e3b672bf3968ff4c3c1cb050fb3ba330d5bb521c42a716777b9bf36b60
-Size (qtquickcontrols2-everywhere-src-6.0.4.tar.xz) = 8524992 bytes
+SHA1 (qtquickcontrols2-everywhere-src-6.1.0.tar.xz) = 13538715b7f5e7936cdbc6658ac3fe3d30e6ac17
+RMD160 (qtquickcontrols2-everywhere-src-6.1.0.tar.xz) = 24d4c1f63877818a638ce50a9e2ab16cebdfac78
+SHA512 (qtquickcontrols2-everywhere-src-6.1.0.tar.xz) = 1d6cfa4d23ce9185e55fd1f9714cb73c268afd4ba03acbc714e0afa7bef782f1df825d584c4d8e67a8a401c705021ad8ab18286be5bf51f0cd0259de08645ac9
+Size (qtquickcontrols2-everywhere-src-6.1.0.tar.xz) = 8521188 bytes
diff --git a/qt6-qtquicktimeline/distinfo b/qt6-qtquicktimeline/distinfo
index 050b7b04d0..3a65c6b4aa 100644
--- a/qt6-qtquicktimeline/distinfo
+++ b/qt6-qtquicktimeline/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtquicktimeline-everywhere-src-6.0.4.tar.xz) = 3c5d8517d0422ec2c9972b30a4eff7ad66210c39
-RMD160 (qtquicktimeline-everywhere-src-6.0.4.tar.xz) = fb2ce8fab5833552f428b76f7b0c7cdad5bfa9b5
-SHA512 (qtquicktimeline-everywhere-src-6.0.4.tar.xz) = 7b894c3797fc913a5b52d4b48d20cd6c59a9fb7835aaa1d64adbe90022a2ce675921db8fba191bb5caeca4b0b766bd20ad1d289cde7177b20b2cb204a6aa80e1
-Size (qtquicktimeline-everywhere-src-6.0.4.tar.xz) = 109256 bytes
+SHA1 (qtquicktimeline-everywhere-src-6.1.0.tar.xz) = 73c0e5fdfbc5e59b8379e4cd49c4abdbc61b9cb5
+RMD160 (qtquicktimeline-everywhere-src-6.1.0.tar.xz) = b57912b2753c3e58459e39f887148ffee10f9253
+SHA512 (qtquicktimeline-everywhere-src-6.1.0.tar.xz) = a14150db3a78ffbc5f65aaefe8aea27efee918c28cba439252b3463f36f252158becfeab846b7bd282b60763094b800b2e4161ec36052dda52c48d73447b5c36
+Size (qtquicktimeline-everywhere-src-6.1.0.tar.xz) = 108788 bytes
diff --git a/qt6-qtshadertools/distinfo b/qt6-qtshadertools/distinfo
index 88a0cc0d55..a643e1ebd8 100644
--- a/qt6-qtshadertools/distinfo
+++ b/qt6-qtshadertools/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtshadertools-everywhere-src-6.0.4.tar.xz) = e155330d5723f175f93cd792c68b25bd1eaaff85
-RMD160 (qtshadertools-everywhere-src-6.0.4.tar.xz) = 3eb87e01c9b3a21ee1a5d628a0477278c1417804
-SHA512 (qtshadertools-everywhere-src-6.0.4.tar.xz) = 111d80616750ce121023a0f379ecb19e3b80b83fb9d42ab20862bc77a632b712067af3d3d215e2173fa7c8e849ad3d7eee7c17cdf2b63c151d58b6450c631339
-Size (qtshadertools-everywhere-src-6.0.4.tar.xz) = 904928 bytes
+SHA1 (qtshadertools-everywhere-src-6.1.0.tar.xz) = d1d556c28deb9e40563be2dc210d1d58cb4ef401
+RMD160 (qtshadertools-everywhere-src-6.1.0.tar.xz) = 0eccc1fd9e92669005882d1867137f2d99247651
+SHA512 (qtshadertools-everywhere-src-6.1.0.tar.xz) = 5b3105e4470ef1a922a51833809595406f5e80163edf3005389cfa2a05f18f7299083b5885e057d60f14cda559080394f8c5f3b9bbffcf3543488d019fbe7ec5
+Size (qtshadertools-everywhere-src-6.1.0.tar.xz) = 952896 bytes
diff --git a/qt6-qtsvg/distinfo b/qt6-qtsvg/distinfo
index 24bf06e485..8f53e53543 100644
--- a/qt6-qtsvg/distinfo
+++ b/qt6-qtsvg/distinfo
@@ -1,6 +1,6 @@
 $NetBSD$
 
-SHA1 (qtsvg-everywhere-src-6.0.4.tar.xz) = 29f2f3dc5c180aab9b0845eb46b46ec71b2c9931
-RMD160 (qtsvg-everywhere-src-6.0.4.tar.xz) = 2156b9021898d75d5726e0964bf3e647c20d4290
-SHA512 (qtsvg-everywhere-src-6.0.4.tar.xz) = 4664112a320413f59e7c3133a860ccae29e9247d1f81582bfb47932f0e4794f86c8732fb9052c026ae9b9a26ecf0a405d40fe6b4c49b8fae1d430b0e29581490
-Size (qtsvg-everywhere-src-6.0.4.tar.xz) = 1653336 bytes
+SHA1 (qtsvg-everywhere-src-6.1.0.tar.xz) = b7a70cf8ed3f34a7eebf26fb486129cd139ca8e0
+RMD160 (qtsvg-everywhere-src-6.1.0.tar.xz) = 10dc1b6c0c1208237e77dc65decdc8e5e888eb2d
+SHA512 (qtsvg-everywhere-src-6.1.0.tar.xz) = c1a7ede0ccfed9b8742b634f6f9faecbf651e9a38e13703bf6cbd110cda0167691bf74856f096ae95d5777cbf7eb874b69fd31120fed99d9b6b0485d33f326a6
+Size (qtsvg-everywhere-src-6.1.0.tar.xz) = 1653348 bytes
diff --git a/qt6-qttools/PLIST b/qt6-qttools/PLIST
index 056b1ffac4..108d785ed7 100644
--- a/qt6-qttools/PLIST
+++ b/qt6-qttools/PLIST
@@ -3,11 +3,8 @@ qt6/bin/assistant
 qt6/bin/designer
 qt6/bin/lconvert
 qt6/bin/linguist
-qt6/bin/lprodump
 qt6/bin/lrelease
-qt6/bin/lrelease-pro
 qt6/bin/lupdate
-qt6/bin/lupdate-pro
 qt6/bin/pixeltool
 qt6/bin/qdbus
 qt6/bin/qdbusviewer
@@ -16,6 +13,7 @@ qt6/bin/qdoc
 qt6/bin/qhelpgenerator
 qt6/bin/qtattributionsscanner
 qt6/bin/qtdiag
+qt6/bin/qtdiag6
 qt6/bin/qtpaths
 qt6/bin/qtplugininfo
 qt6/include/QtDesigner/${PKGVERSION}/QtDesigner/private/abstractdialoggui_p.h
@@ -347,6 +345,9 @@ qt6/lib/libQt6UiTools.prl
 qt6/lib/libQt6UiTools.so
 qt6/lib/libQt6UiTools.so.6
 qt6/lib/libQt6UiTools.so.${PKGVERSION}
+qt6/libexec/lprodump
+qt6/libexec/lrelease-pro
+qt6/libexec/lupdate-pro
 qt6/mkspecs/modules/qt_lib_designer.pri
 qt6/mkspecs/modules/qt_lib_designer_private.pri
 qt6/mkspecs/modules/qt_lib_designercomponents_private.pri
diff --git a/qt6-qttools/distinfo b/qt6-qttools/distinfo
index 203aaeb4f3..763e6face9 100644
--- a/qt6-qttools/distinfo
+++ b/qt6-qttools/distinfo
@@ -1,7 +1,7 @@
 $NetBSD$
 
-SHA1 (qttools-everywhere-src-6.0.4.tar.xz) = 936a2b6c2530f8c669ce4b8549f6375066c6155e
-RMD160 (qttools-everywhere-src-6.0.4.tar.xz) = adbcd455367dec7c69babb306d13b915220aec71
-SHA512 (qttools-everywhere-src-6.0.4.tar.xz) = bd17b9efc39714feddb80127d2da39ac917bb81105b061c400a552e11b733ab128d55294472ea70dd4beb249b738e78b7a53803582e53750468ad2d5affab4ba
-Size (qttools-everywhere-src-6.0.4.tar.xz) = 8388008 bytes
+SHA1 (qttools-everywhere-src-6.1.0.tar.xz) = 06e893127c49b6985937835a5b17b65f4840d3c2
+RMD160 (qttools-everywhere-src-6.1.0.tar.xz) = 07f3b964f0ef39cbbfa14076b2d48dca9097ac9e
+SHA512 (qttools-everywhere-src-6.1.0.tar.xz) = 63170743564a13b3bf29faed70d239a8e2c4c8de1019297762d1718c22d68de52e61c443dbb302f62fe0dd3da65de5af585060268059ae8b0eb21ca71d9e6c8b
+Size (qttools-everywhere-src-6.1.0.tar.xz) = 8431172 bytes
 SHA1 (patch-src_linguist_lupdate_CMakeLists.txt) = d70ea348c3ba7f64bcc245de9445becefecf3a9c
diff --git a/qt6-qtwayland/distinfo b/qt6-qtwayland/distinfo
index 7083b2c47d..115a4effdd 100644
--- a/qt6-qtwayland/distinfo
+++ b/qt6-qtwayland/distinfo
@@ -1,7 +1,7 @@
 $NetBSD$
 
-SHA1 (qtwayland-everywhere-src-6.0.4.tar.xz) = ba229bfbcf2deca43848b0f4e92e6ae649baf9ff
-RMD160 (qtwayland-everywhere-src-6.0.4.tar.xz) = a394b9fcdec1461dcbd3c9d68ed219ee92648ef6
-SHA512 (qtwayland-everywhere-src-6.0.4.tar.xz) = 7519f0c97ec83cdb92f6bb1ba03774bf4e8833fbeb9d3404cd274fd1a8dc61dbf4f8e62ecbf8ae6d2b6f531f1db4b9cdee42936116acd69d67bea4f19149e614
-Size (qtwayland-everywhere-src-6.0.4.tar.xz) = 560128 bytes
+SHA1 (qtwayland-everywhere-src-6.1.0.tar.xz) = e2aa53aa63f26c7c8f146529d516a486ea0e554a
+RMD160 (qtwayland-everywhere-src-6.1.0.tar.xz) = 1b742e962c028ea4d6334b431e381380c3c00ba9
+SHA512 (qtwayland-everywhere-src-6.1.0.tar.xz) = fddf08086ef3148de1c5738a833a9c7b92de1c1a9f4756650c40f34ed00860810eb2c2fd2690cbfdbd235e50e323590133849d290caabd8af19cc0f20caa31b6
+Size (qtwayland-everywhere-src-6.1.0.tar.xz) = 554784 bytes
 SHA1 (patch-CMakeLists.txt) = 15eda7d0287098f7efc2acd70b05b524de1aebc6
diff --git a/qt6/Makefile.common b/qt6/Makefile.common
index 9de37462c9..befd10fc3f 100644
--- a/qt6/Makefile.common
+++ b/qt6/Makefile.common
@@ -1,15 +1,11 @@
 # $NetBSD: Makefile.common,v 1.24 2020/09/14 20:08:26 adam Exp $
 # used by wip/qt6-qtbase/Makefile.common
 
-QTVERSION=	6.0.4
+QTVERSION=	6.1.0
 
 .include "../../mk/bsd.prefs.mk"
 
-.if defined(QT_ADDLIB)
-MASTER_SITES=	http://download.qt.io/official_releases/additional_libraries/${QTVERSION:R}/${QTVERSION}/
-.else
 MASTER_SITES=	http://download.qt.io/official_releases/qt/${QTVERSION:R}/${QTVERSION}/submodules/
-.endif
 
 EXTRACT_SUFX=	.tar.xz
 EXTRACT_USING=	bsdtar
@@ -19,3 +15,5 @@ HOMEPAGE=	https://www.qt.io/
 LICENSE=	gnu-lgpl-v2.1 AND gnu-lgpl-v3 AND gnu-gpl-v2 AND gnu-gpl-v3
 
 QTPREFIX=	${PREFIX}/qt6
+
+GCC_REQD+=	9


Home | Main Index | Thread Index | Old Index