1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
# Copyright (c) 2022, Riverbank Computing Limited
# All rights reserved.
#
# This copy of PyQt-builder is licensed for use under the terms of the SIP
# License Agreement. See the file LICENSE for more details.
#
# This copy of PyQt-builder may also used under the terms of the GNU General
# Public License v2 or v3 as published by the Free Software Foundation which
# can be found in the files LICENSE-GPL2 and LICENSE-GPL3 included in this
# package.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from ..qt_metadata import VersionedMetadata
from .pyqt import PyQt
# The Qt meta-data for this package.
_QT_METADATA = {
'pylupdate':
VersionedMetadata(dll=False),
'pyrcc':
VersionedMetadata(dll=False),
'QAxContainer':
VersionedMetadata(dll=False),
'QtAndroidExtras':
VersionedMetadata(),
'QtBluetooth':
VersionedMetadata(
lib_deps={
'linux': ('QtConcurrent', ),
'macos': ('QtConcurrent', )},
qml=True),
'QtCore':
VersionedMetadata(
other_lib_deps={
'linux': ('libicui18n.so.56', 'libicuuc.so.56',
'libicudata.so.56'),
'win': ('icudt*.dll', 'icuin*.dll', 'icuuc*.dll')},
translations=('qt_help', 'qtbase', 'qtconnectivity',
'qtdeclarative', 'qtlocation', 'qtmultimedia',
'qtquickcontrols', 'qtserialport', 'qtwebsockets',
'qtxmlpatterns', 'qt_', 'xcbglintegrations'),
excluded_plugins=('canbus', 'designer', 'qmltooling')),
'QtDBus':
VersionedMetadata(),
'QtDesigner':
VersionedMetadata(),
'QtGui':
VersionedMetadata(
lib_deps={'linux': ('QtWaylandClient', 'QtXcbQpa')},
other_lib_deps={
'win': ('d3dcompiler_47.dll', 'libEGL.dll', 'libGLESv2.dll',
'opengl32sw.dll')}),
'QtHelp':
VersionedMetadata(),
'QtLocation':
VersionedMetadata(
lib_deps={'': ('QtPositioningQuick', )},
qml=True),
'QtMacExtras':
VersionedMetadata(),
'QtMultimedia':
VersionedMetadata(
lib_deps={'linux': ('QtMultimediaGstTools', )},
qml=True, qml_names=('QtAudioEngine', 'QtMultimedia')),
'QtMultimediaWidgets':
VersionedMetadata(),
'QtNetwork':
VersionedMetadata(),
'QtNetworkAuth':
VersionedMetadata(legacy=True),
'QtNfc':
VersionedMetadata(qml=True),
'QtOpenGL':
VersionedMetadata(),
'QtPositioning':
VersionedMetadata(qml=True),
'QtPrintSupport':
VersionedMetadata(),
'QtQml':
VersionedMetadata(
lib_deps={'': ('QtQmlModels', 'QtQmlWorkerScript')},
qml=True),
'QtQuick':
VersionedMetadata(
lib_deps={'': ('QtQuickControls2', 'QtQuickParticles',
'QtQuickShapes', 'QtQuickTemplates2', 'QtQuickTest')},
qml=True,
qml_names=('QtCanvas3D', 'QtGraphicalEffects', 'QtQuick',
'QtQuick.2')),
'QtQuick3D':
VersionedMetadata(
lib_deps={
'': ('QtQuick3DAssetImport', 'QtQuick3DRender',
'QtQuick3DRuntimeRender', 'QtQuick3DUtils')},
qml=True),
'QtQuickWidgets':
VersionedMetadata(),
'QtRemoteObjects':
VersionedMetadata(qml=True),
'QtSensors':
VersionedMetadata(qml=True),
'QtSerialPort':
VersionedMetadata(),
'QtSql':
VersionedMetadata(),
'QtSvg':
VersionedMetadata(),
'QtTest':
VersionedMetadata(qml=True),
'QtTextToSpeech':
VersionedMetadata(),
'QtWebChannel':
VersionedMetadata(qml=True),
'QtWebSockets':
VersionedMetadata(qml=True),
'QtWebView':
VersionedMetadata(qml=True),
'QtWidgets':
VersionedMetadata(),
'QtWinExtras':
VersionedMetadata(),
'QtX11Extras':
VersionedMetadata(),
'QtXml':
VersionedMetadata(),
'QtXmlPatterns':
VersionedMetadata(
qml=True,
qml_names=('Qt', )),
}
class PyQt5(PyQt):
""" The PyQt5 package. """
def get_qt_metadata(self):
""" Return the package-specific meta-data describing the parts of Qt to
install.
"""
return _QT_METADATA
|