From 8ac37c69651145471f75fa14f1c53aa15867253d Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 7 Feb 2015 16:30:37 +0000 Subject: Import py34-qt5-5.4 as x11/py-qt5, packaged for wip by myself. PyQt is a set of Python bindings for the Qt toolkit. PyQt brings together the Qt C++ cross-platform toolkit and the cross-platform interpreted language Python. PyQt contains 300 classes and over 5,750 functions and methods. PyQt also includes the pyuic and pylupdate utilities which correspond to the Qt uic and lupdate utilities. pyuic converts the GUI designs created with Qt Designer to executable Python code. pylupdate scans Python code, extracts all strings that are candidates for internationalisation, and creates an XML file for use by Qt Linguist. This package is for QT5. --- x11/py-qt5/DESCR | 12 + x11/py-qt5/Makefile | 77 ++++ x11/py-qt5/PLIST | 683 ++++++++++++++++++++++++++++++++++ x11/py-qt5/buildlink3.mk | 13 + x11/py-qt5/distinfo | 6 + x11/py-qt5/patches/patch-configure.py | 17 + 6 files changed, 808 insertions(+) create mode 100644 x11/py-qt5/DESCR create mode 100644 x11/py-qt5/Makefile create mode 100644 x11/py-qt5/PLIST create mode 100644 x11/py-qt5/buildlink3.mk create mode 100644 x11/py-qt5/distinfo create mode 100644 x11/py-qt5/patches/patch-configure.py diff --git a/x11/py-qt5/DESCR b/x11/py-qt5/DESCR new file mode 100644 index 00000000000..cfee0adb245 --- /dev/null +++ b/x11/py-qt5/DESCR @@ -0,0 +1,12 @@ +PyQt is a set of Python bindings for the Qt toolkit. PyQt brings +together the Qt C++ cross-platform toolkit and the cross-platform +interpreted language Python. PyQt contains 300 classes and over +5,750 functions and methods. + +PyQt also includes the pyuic and pylupdate utilities which correspond +to the Qt uic and lupdate utilities. pyuic converts the GUI designs +created with Qt Designer to executable Python code. pylupdate +scans Python code, extracts all strings that are candidates for +internationalisation, and creates an XML file for use by Qt Linguist. + +This package is for QT5. diff --git a/x11/py-qt5/Makefile b/x11/py-qt5/Makefile new file mode 100644 index 00000000000..e9c9b93042e --- /dev/null +++ b/x11/py-qt5/Makefile @@ -0,0 +1,77 @@ +# $NetBSD: Makefile,v 1.1 2015/02/07 16:30:37 wiz Exp $ + +DISTNAME= PyQt-gpl-${PYQT_VERSION} +PKGNAME= ${PYPKGPREFIX}-qt5-${PYQT_VERSION} +PYQT_VERSION= 5.4 +CATEGORIES= x11 python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pyqt/} + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Python binding for Qt5 +HOMEPAGE= http://www.riverbankcomputing.com/software/pyqt/intro + +USE_LIBTOOL= yes +USE_TOOLS+= gmake pkg-config +USE_LANGUAGES= c c++ + +CONFIGURE_ARGS+= -b ${PREFIX}/bin +CONFIGURE_ARGS+= -d ${PREFIX}/${PYSITELIB} +CONFIGURE_ARGS+= -q ${QTDIR}/bin/qmake +CONFIGURE_ARGS+= --confirm-license +CONFIGURE_ARGS+= --qsci-api +CONFIGURE_ARGS+= --sip ${BUILDLINK_PREFIX.py-sip}/bin/sip${PYVERSSUFFIX} +CONFIGURE_ARGS+= --verbose + +INSTALL_ENV+= INSTALL_ROOT=${DESTDIR} + +PY_PATCHPLIST= yes +PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q} + +SUBST_CLASSES+= install +SUBST_STAGE.install= post-configure +SUBST_SED.install+= -e 's,INSTALL_FILE = ,INSTALL_FILE = libtool --mode=install ,' +SUBST_SED.install+= -e 's,\(TARGET[A-Z ]*\)= lib,\1= ,' +SUBST_MESSAGE.install= Fixing installation target and file name. +SUBST_FILES.install+= Qt/Makefile +SUBST_FILES.install+= QtCore/Makefile +SUBST_FILES.install+= QtDBus/Makefile +SUBST_FILES.install+= QtDesigner/Makefile +SUBST_FILES.install+= QtGui/Makefile +SUBST_FILES.install+= QtHelp/Makefile +SUBST_FILES.install+= QtMultimedia/Makefile +SUBST_FILES.install+= QtMultimediaWidgets/Makefile +SUBST_FILES.install+= QtNetwork/Makefile +SUBST_FILES.install+= QtOpenGL/Makefile +SUBST_FILES.install+= QtPositioning/Makefile +SUBST_FILES.install+= QtPrintSupport/Makefile +SUBST_FILES.install+= QtQml/Makefile +SUBST_FILES.install+= QtQuick/Makefile +SUBST_FILES.install+= QtSensors/Makefile +SUBST_FILES.install+= QtSql/Makefile +SUBST_FILES.install+= QtSvg/Makefile +SUBST_FILES.install+= QtTest/Makefile +SUBST_FILES.install+= QtWebKit/Makefile +SUBST_FILES.install+= QtWebKitWidgets/Makefile +SUBST_FILES.install+= QtWidgets/Makefile +SUBST_FILES.install+= QtXmlPatterns/Makefile +SUBST_FILES.install+= _QOpenGLFunctions_2_0/Makefile + +do-configure: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${PYTHONBIN} configure.py ${CONFIGURE_ARGS} + +.include "../../lang/python/extension.mk" +.include "../../sysutils/dbus-python-common/buildlink3.mk" +BUILDLINK_API_DEPENDS.py-sip+= ${PYPKGPREFIX}-sip>=4.16.4 +.include "../../x11/py-sip/buildlink3.mk" +.include "../../x11/qt5-dbus/buildlink3.mk" +.include "../../x11/qt5-qtbase/buildlink3.mk" +.include "../../x11/qt5-qtdeclarative/buildlink3.mk" +.include "../../x11/qt5-qtlocation/buildlink3.mk" +.include "../../x11/qt5-qtmultimedia/buildlink3.mk" +.include "../../x11/qt5-qtsensors/buildlink3.mk" +.include "../../x11/qt5-qtsvg/buildlink3.mk" +.include "../../x11/qt5-qttools/buildlink3.mk" +.include "../../x11/qt5-qtwebkit/buildlink3.mk" +.include "../../x11/qt5-qtxmlpatterns/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/x11/py-qt5/PLIST b/x11/py-qt5/PLIST new file mode 100644 index 00000000000..8aad0622f5c --- /dev/null +++ b/x11/py-qt5/PLIST @@ -0,0 +1,683 @@ +@comment $NetBSD: PLIST,v 1.1 2015/02/07 16:30:37 wiz Exp $ +bin/pylupdate5 +bin/pyrcc5 +bin/pyuic5 +${PYSITELIB}/PyQt5/Qt.la +${PYSITELIB}/PyQt5/QtCore.la +${PYSITELIB}/PyQt5/QtDBus.la +${PYSITELIB}/PyQt5/QtDesigner.la +${PYSITELIB}/PyQt5/QtGui.la +${PYSITELIB}/PyQt5/QtHelp.la +${PYSITELIB}/PyQt5/QtMultimedia.la +${PYSITELIB}/PyQt5/QtMultimediaWidgets.la +${PYSITELIB}/PyQt5/QtNetwork.la +${PYSITELIB}/PyQt5/QtOpenGL.la +${PYSITELIB}/PyQt5/QtPositioning.la +${PYSITELIB}/PyQt5/QtPrintSupport.la +${PYSITELIB}/PyQt5/QtQml.la +${PYSITELIB}/PyQt5/QtQuick.la +${PYSITELIB}/PyQt5/QtSensors.la +${PYSITELIB}/PyQt5/QtSql.la +${PYSITELIB}/PyQt5/QtSvg.la +${PYSITELIB}/PyQt5/QtTest.la +${PYSITELIB}/PyQt5/QtWebKit.la +${PYSITELIB}/PyQt5/QtWebKitWidgets.la +${PYSITELIB}/PyQt5/QtWidgets.la +${PYSITELIB}/PyQt5/QtXmlPatterns.la +${PYSITELIB}/PyQt5/_QOpenGLFunctions_2_0.la +${PYSITELIB}/PyQt5/__init__.py +${PYSITELIB}/PyQt5/uic/Compiler/__init__.py +${PYSITELIB}/PyQt5/uic/Compiler/compiler.py +${PYSITELIB}/PyQt5/uic/Compiler/indenter.py +${PYSITELIB}/PyQt5/uic/Compiler/misc.py +${PYSITELIB}/PyQt5/uic/Compiler/proxy_metaclass.py +${PYSITELIB}/PyQt5/uic/Compiler/qobjectcreator.py +${PYSITELIB}/PyQt5/uic/Compiler/qtproxies.py +${PYSITELIB}/PyQt5/uic/Loader/__init__.py +${PYSITELIB}/PyQt5/uic/Loader/loader.py +${PYSITELIB}/PyQt5/uic/Loader/qobjectcreator.py +${PYSITELIB}/PyQt5/uic/__init__.py +${PYSITELIB}/PyQt5/uic/driver.py +${PYSITELIB}/PyQt5/uic/exceptions.py +${PYSITELIB}/PyQt5/uic/icon_cache.py +${PYSITELIB}/PyQt5/uic/objcreator.py +${PYSITELIB}/PyQt5/uic/port_v2/__init__.py +${PYSITELIB}/PyQt5/uic/port_v2/as_string.py +${PYSITELIB}/PyQt5/uic/port_v2/ascii_upper.py +${PYSITELIB}/PyQt5/uic/port_v2/invoke.py +${PYSITELIB}/PyQt5/uic/port_v2/load_plugin.py +${PYSITELIB}/PyQt5/uic/port_v2/proxy_base.py +${PYSITELIB}/PyQt5/uic/port_v2/string_io.py +${PYSITELIB}/PyQt5/uic/port_v3/__init__.py +${PYSITELIB}/PyQt5/uic/port_v3/as_string.py +${PYSITELIB}/PyQt5/uic/port_v3/ascii_upper.py +${PYSITELIB}/PyQt5/uic/port_v3/invoke.py +${PYSITELIB}/PyQt5/uic/port_v3/load_plugin.py +${PYSITELIB}/PyQt5/uic/port_v3/proxy_base.py +${PYSITELIB}/PyQt5/uic/port_v3/string_io.py +${PYSITELIB}/PyQt5/uic/properties.py +${PYSITELIB}/PyQt5/uic/pyuic.py +${PYSITELIB}/PyQt5/uic/uiparser.py +${PYSITELIB}/PyQt5/uic/widget-plugins/qaxcontainer.py +${PYSITELIB}/PyQt5/uic/widget-plugins/qscintilla.py +${PYSITELIB}/PyQt5/uic/widget-plugins/qtprintsupport.py +${PYSITELIB}/PyQt5/uic/widget-plugins/qtquickwidgets.py +${PYSITELIB}/PyQt5/uic/widget-plugins/qtwebkit.py +qt5/plugins/PyQt5/libpyqt5qmlplugin.la +qt5/plugins/designer/libpyqt5.la +qt5/qsci/api/python/PyQt5.api +share/sip/PyQt5/Qt/Qtmod.sip +share/sip/PyQt5/QtCore/QtCoremod.sip +share/sip/PyQt5/QtCore/qabstractanimation.sip +share/sip/PyQt5/QtCore/qabstracteventdispatcher.sip +share/sip/PyQt5/QtCore/qabstractitemmodel.sip +share/sip/PyQt5/QtCore/qabstractnativeeventfilter.sip +share/sip/PyQt5/QtCore/qabstractproxymodel.sip +share/sip/PyQt5/QtCore/qabstractstate.sip +share/sip/PyQt5/QtCore/qabstracttransition.sip +share/sip/PyQt5/QtCore/qanimationgroup.sip +share/sip/PyQt5/QtCore/qbasictimer.sip +share/sip/PyQt5/QtCore/qbitarray.sip +share/sip/PyQt5/QtCore/qbuffer.sip +share/sip/PyQt5/QtCore/qbytearray.sip +share/sip/PyQt5/QtCore/qbytearraymatcher.sip +share/sip/PyQt5/QtCore/qchar.sip +share/sip/PyQt5/QtCore/qcollator.sip +share/sip/PyQt5/QtCore/qcommandlineoption.sip +share/sip/PyQt5/QtCore/qcommandlineparser.sip +share/sip/PyQt5/QtCore/qcoreapplication.sip +share/sip/PyQt5/QtCore/qcoreevent.sip +share/sip/PyQt5/QtCore/qcryptographichash.sip +share/sip/PyQt5/QtCore/qdatastream.sip +share/sip/PyQt5/QtCore/qdatetime.sip +share/sip/PyQt5/QtCore/qdir.sip +share/sip/PyQt5/QtCore/qdiriterator.sip +share/sip/PyQt5/QtCore/qeasingcurve.sip +share/sip/PyQt5/QtCore/qelapsedtimer.sip +share/sip/PyQt5/QtCore/qeventloop.sip +share/sip/PyQt5/QtCore/qeventtransition.sip +share/sip/PyQt5/QtCore/qfile.sip +share/sip/PyQt5/QtCore/qfiledevice.sip +share/sip/PyQt5/QtCore/qfileinfo.sip +share/sip/PyQt5/QtCore/qfileselector.sip +share/sip/PyQt5/QtCore/qfilesystemwatcher.sip +share/sip/PyQt5/QtCore/qfinalstate.sip +share/sip/PyQt5/QtCore/qglobal.sip +share/sip/PyQt5/QtCore/qhistorystate.sip +share/sip/PyQt5/QtCore/qidentityproxymodel.sip +share/sip/PyQt5/QtCore/qiodevice.sip +share/sip/PyQt5/QtCore/qitemselectionmodel.sip +share/sip/PyQt5/QtCore/qjsonarray.sip +share/sip/PyQt5/QtCore/qjsondocument.sip +share/sip/PyQt5/QtCore/qjsonobject.sip +share/sip/PyQt5/QtCore/qjsonvalue.sip +share/sip/PyQt5/QtCore/qlibrary.sip +share/sip/PyQt5/QtCore/qlibraryinfo.sip +share/sip/PyQt5/QtCore/qline.sip +share/sip/PyQt5/QtCore/qlocale.sip +share/sip/PyQt5/QtCore/qlockfile.sip +share/sip/PyQt5/QtCore/qlogging.sip +share/sip/PyQt5/QtCore/qmargins.sip +share/sip/PyQt5/QtCore/qmessageauthenticationcode.sip +share/sip/PyQt5/QtCore/qmetaobject.sip +share/sip/PyQt5/QtCore/qmetatype.sip +share/sip/PyQt5/QtCore/qmimedata.sip +share/sip/PyQt5/QtCore/qmimedatabase.sip +share/sip/PyQt5/QtCore/qmimetype.sip +share/sip/PyQt5/QtCore/qmutex.sip +share/sip/PyQt5/QtCore/qnamespace.sip +share/sip/PyQt5/QtCore/qnumeric.sip +share/sip/PyQt5/QtCore/qobject.sip +share/sip/PyQt5/QtCore/qobjectcleanuphandler.sip +share/sip/PyQt5/QtCore/qobjectdefs.sip +share/sip/PyQt5/QtCore/qparallelanimationgroup.sip +share/sip/PyQt5/QtCore/qpauseanimation.sip +share/sip/PyQt5/QtCore/qpluginloader.sip +share/sip/PyQt5/QtCore/qpoint.sip +share/sip/PyQt5/QtCore/qprocess.sip +share/sip/PyQt5/QtCore/qpropertyanimation.sip +share/sip/PyQt5/QtCore/qpycore_qhash.sip +share/sip/PyQt5/QtCore/qpycore_qlist.sip +share/sip/PyQt5/QtCore/qpycore_qmap.sip +share/sip/PyQt5/QtCore/qpycore_qpair.sip +share/sip/PyQt5/QtCore/qpycore_qset.sip +share/sip/PyQt5/QtCore/qpycore_qvector.sip +share/sip/PyQt5/QtCore/qpycore_virtual_error_handler.sip +share/sip/PyQt5/QtCore/qreadwritelock.sip +share/sip/PyQt5/QtCore/qrect.sip +share/sip/PyQt5/QtCore/qregexp.sip +share/sip/PyQt5/QtCore/qregularexpression.sip +share/sip/PyQt5/QtCore/qresource.sip +share/sip/PyQt5/QtCore/qrunnable.sip +share/sip/PyQt5/QtCore/qsavefile.sip +share/sip/PyQt5/QtCore/qsemaphore.sip +share/sip/PyQt5/QtCore/qsequentialanimationgroup.sip +share/sip/PyQt5/QtCore/qsettings.sip +share/sip/PyQt5/QtCore/qsharedmemory.sip +share/sip/PyQt5/QtCore/qsignalmapper.sip +share/sip/PyQt5/QtCore/qsignaltransition.sip +share/sip/PyQt5/QtCore/qsize.sip +share/sip/PyQt5/QtCore/qsocketnotifier.sip +share/sip/PyQt5/QtCore/qsortfilterproxymodel.sip +share/sip/PyQt5/QtCore/qstandardpaths.sip +share/sip/PyQt5/QtCore/qstate.sip +share/sip/PyQt5/QtCore/qstatemachine.sip +share/sip/PyQt5/QtCore/qstorageinfo.sip +share/sip/PyQt5/QtCore/qstring.sip +share/sip/PyQt5/QtCore/qstringlist.sip +share/sip/PyQt5/QtCore/qstringlistmodel.sip +share/sip/PyQt5/QtCore/qsysinfo.sip +share/sip/PyQt5/QtCore/qsystemsemaphore.sip +share/sip/PyQt5/QtCore/qtemporarydir.sip +share/sip/PyQt5/QtCore/qtemporaryfile.sip +share/sip/PyQt5/QtCore/qtextboundaryfinder.sip +share/sip/PyQt5/QtCore/qtextcodec.sip +share/sip/PyQt5/QtCore/qtextstream.sip +share/sip/PyQt5/QtCore/qthread.sip +share/sip/PyQt5/QtCore/qthreadpool.sip +share/sip/PyQt5/QtCore/qtimeline.sip +share/sip/PyQt5/QtCore/qtimer.sip +share/sip/PyQt5/QtCore/qtimezone.sip +share/sip/PyQt5/QtCore/qtranslator.sip +share/sip/PyQt5/QtCore/qurl.sip +share/sip/PyQt5/QtCore/qurlquery.sip +share/sip/PyQt5/QtCore/quuid.sip +share/sip/PyQt5/QtCore/qvariant.sip +share/sip/PyQt5/QtCore/qvariantanimation.sip +share/sip/PyQt5/QtCore/qwaitcondition.sip +share/sip/PyQt5/QtCore/qwineventnotifier.sip +share/sip/PyQt5/QtCore/qxmlstream.sip +share/sip/PyQt5/QtDBus/QtDBusmod.sip +share/sip/PyQt5/QtDBus/qdbusabstractadaptor.sip +share/sip/PyQt5/QtDBus/qdbusabstractinterface.sip +share/sip/PyQt5/QtDBus/qdbusargument.sip +share/sip/PyQt5/QtDBus/qdbusconnection.sip +share/sip/PyQt5/QtDBus/qdbusconnectioninterface.sip +share/sip/PyQt5/QtDBus/qdbuserror.sip +share/sip/PyQt5/QtDBus/qdbusextratypes.sip +share/sip/PyQt5/QtDBus/qdbusinterface.sip +share/sip/PyQt5/QtDBus/qdbusmessage.sip +share/sip/PyQt5/QtDBus/qdbuspendingcall.sip +share/sip/PyQt5/QtDBus/qdbusservicewatcher.sip +share/sip/PyQt5/QtDBus/qdbusunixfiledescriptor.sip +share/sip/PyQt5/QtDBus/qpydbuspendingreply.sip +share/sip/PyQt5/QtDBus/qpydbusreply.sip +share/sip/PyQt5/QtDesigner/QtDesignermod.sip +share/sip/PyQt5/QtDesigner/abstractactioneditor.sip +share/sip/PyQt5/QtDesigner/abstractformbuilder.sip +share/sip/PyQt5/QtDesigner/abstractformeditor.sip +share/sip/PyQt5/QtDesigner/abstractformwindow.sip +share/sip/PyQt5/QtDesigner/abstractformwindowcursor.sip +share/sip/PyQt5/QtDesigner/abstractformwindowmanager.sip +share/sip/PyQt5/QtDesigner/abstractobjectinspector.sip +share/sip/PyQt5/QtDesigner/abstractpropertyeditor.sip +share/sip/PyQt5/QtDesigner/abstractwidgetbox.sip +share/sip/PyQt5/QtDesigner/container.sip +share/sip/PyQt5/QtDesigner/customwidget.sip +share/sip/PyQt5/QtDesigner/default_extensionfactory.sip +share/sip/PyQt5/QtDesigner/extension.sip +share/sip/PyQt5/QtDesigner/formbuilder.sip +share/sip/PyQt5/QtDesigner/membersheet.sip +share/sip/PyQt5/QtDesigner/propertysheet.sip +share/sip/PyQt5/QtDesigner/qextensionmanager.sip +share/sip/PyQt5/QtDesigner/qpydesignercontainerextension.sip +share/sip/PyQt5/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip +share/sip/PyQt5/QtDesigner/qpydesignercustomwidgetplugin.sip +share/sip/PyQt5/QtDesigner/qpydesignermembersheetextension.sip +share/sip/PyQt5/QtDesigner/qpydesignerpropertysheetextension.sip +share/sip/PyQt5/QtDesigner/qpydesignertaskmenuextension.sip +share/sip/PyQt5/QtDesigner/taskmenu.sip +share/sip/PyQt5/QtGui/QtGuimod.sip +share/sip/PyQt5/QtGui/opengl_types.sip +share/sip/PyQt5/QtGui/qabstracttextdocumentlayout.sip +share/sip/PyQt5/QtGui/qbackingstore.sip +share/sip/PyQt5/QtGui/qbitmap.sip +share/sip/PyQt5/QtGui/qbrush.sip +share/sip/PyQt5/QtGui/qclipboard.sip +share/sip/PyQt5/QtGui/qcolor.sip +share/sip/PyQt5/QtGui/qcursor.sip +share/sip/PyQt5/QtGui/qdesktopservices.sip +share/sip/PyQt5/QtGui/qdrag.sip +share/sip/PyQt5/QtGui/qevent.sip +share/sip/PyQt5/QtGui/qfont.sip +share/sip/PyQt5/QtGui/qfontdatabase.sip +share/sip/PyQt5/QtGui/qfontinfo.sip +share/sip/PyQt5/QtGui/qfontmetrics.sip +share/sip/PyQt5/QtGui/qgenericmatrix.sip +share/sip/PyQt5/QtGui/qglyphrun.sip +share/sip/PyQt5/QtGui/qguiapplication.sip +share/sip/PyQt5/QtGui/qicon.sip +share/sip/PyQt5/QtGui/qiconengine.sip +share/sip/PyQt5/QtGui/qimage.sip +share/sip/PyQt5/QtGui/qimageiohandler.sip +share/sip/PyQt5/QtGui/qimagereader.sip +share/sip/PyQt5/QtGui/qimagewriter.sip +share/sip/PyQt5/QtGui/qinputmethod.sip +share/sip/PyQt5/QtGui/qkeysequence.sip +share/sip/PyQt5/QtGui/qmatrix4x4.sip +share/sip/PyQt5/QtGui/qmovie.sip +share/sip/PyQt5/QtGui/qoffscreensurface.sip +share/sip/PyQt5/QtGui/qopenglbuffer.sip +share/sip/PyQt5/QtGui/qopenglcontext.sip +share/sip/PyQt5/QtGui/qopengldebug.sip +share/sip/PyQt5/QtGui/qopenglframebufferobject.sip +share/sip/PyQt5/QtGui/qopenglpaintdevice.sip +share/sip/PyQt5/QtGui/qopenglpixeltransferoptions.sip +share/sip/PyQt5/QtGui/qopenglshaderprogram.sip +share/sip/PyQt5/QtGui/qopengltexture.sip +share/sip/PyQt5/QtGui/qopengltimerquery.sip +share/sip/PyQt5/QtGui/qopenglversionfunctions.sip +share/sip/PyQt5/QtGui/qopenglvertexarrayobject.sip +share/sip/PyQt5/QtGui/qopenglwindow.sip +share/sip/PyQt5/QtGui/qpagedpaintdevice.sip +share/sip/PyQt5/QtGui/qpagelayout.sip +share/sip/PyQt5/QtGui/qpagesize.sip +share/sip/PyQt5/QtGui/qpaintdevice.sip +share/sip/PyQt5/QtGui/qpaintdevicewindow.sip +share/sip/PyQt5/QtGui/qpaintengine.sip +share/sip/PyQt5/QtGui/qpainter.sip +share/sip/PyQt5/QtGui/qpainterpath.sip +share/sip/PyQt5/QtGui/qpalette.sip +share/sip/PyQt5/QtGui/qpdfwriter.sip +share/sip/PyQt5/QtGui/qpen.sip +share/sip/PyQt5/QtGui/qpicture.sip +share/sip/PyQt5/QtGui/qpixelformat.sip +share/sip/PyQt5/QtGui/qpixmap.sip +share/sip/PyQt5/QtGui/qpixmapcache.sip +share/sip/PyQt5/QtGui/qpolygon.sip +share/sip/PyQt5/QtGui/qpygui_qlist.sip +share/sip/PyQt5/QtGui/qpygui_qpair.sip +share/sip/PyQt5/QtGui/qpygui_qvector.sip +share/sip/PyQt5/QtGui/qquaternion.sip +share/sip/PyQt5/QtGui/qrasterwindow.sip +share/sip/PyQt5/QtGui/qrawfont.sip +share/sip/PyQt5/QtGui/qregion.sip +share/sip/PyQt5/QtGui/qrgb.sip +share/sip/PyQt5/QtGui/qscreen.sip +share/sip/PyQt5/QtGui/qsessionmanager.sip +share/sip/PyQt5/QtGui/qstandarditemmodel.sip +share/sip/PyQt5/QtGui/qstatictext.sip +share/sip/PyQt5/QtGui/qstylehints.sip +share/sip/PyQt5/QtGui/qsurface.sip +share/sip/PyQt5/QtGui/qsurfaceformat.sip +share/sip/PyQt5/QtGui/qsyntaxhighlighter.sip +share/sip/PyQt5/QtGui/qtextcursor.sip +share/sip/PyQt5/QtGui/qtextdocument.sip +share/sip/PyQt5/QtGui/qtextdocumentfragment.sip +share/sip/PyQt5/QtGui/qtextdocumentwriter.sip +share/sip/PyQt5/QtGui/qtextformat.sip +share/sip/PyQt5/QtGui/qtextlayout.sip +share/sip/PyQt5/QtGui/qtextlist.sip +share/sip/PyQt5/QtGui/qtextobject.sip +share/sip/PyQt5/QtGui/qtextoption.sip +share/sip/PyQt5/QtGui/qtexttable.sip +share/sip/PyQt5/QtGui/qtouchdevice.sip +share/sip/PyQt5/QtGui/qtransform.sip +share/sip/PyQt5/QtGui/qvalidator.sip +share/sip/PyQt5/QtGui/qvector2d.sip +share/sip/PyQt5/QtGui/qvector3d.sip +share/sip/PyQt5/QtGui/qvector4d.sip +share/sip/PyQt5/QtGui/qwindow.sip +share/sip/PyQt5/QtGui/qwindowdefs.sip +share/sip/PyQt5/QtHelp/QtHelpmod.sip +share/sip/PyQt5/QtHelp/qhelpcontentwidget.sip +share/sip/PyQt5/QtHelp/qhelpengine.sip +share/sip/PyQt5/QtHelp/qhelpenginecore.sip +share/sip/PyQt5/QtHelp/qhelpindexwidget.sip +share/sip/PyQt5/QtHelp/qhelpsearchengine.sip +share/sip/PyQt5/QtHelp/qhelpsearchquerywidget.sip +share/sip/PyQt5/QtHelp/qhelpsearchresultwidget.sip +share/sip/PyQt5/QtMultimedia/QtMultimediamod.sip +share/sip/PyQt5/QtMultimedia/qabstractvideobuffer.sip +share/sip/PyQt5/QtMultimedia/qabstractvideosurface.sip +share/sip/PyQt5/QtMultimedia/qaudio.sip +share/sip/PyQt5/QtMultimedia/qaudiobuffer.sip +share/sip/PyQt5/QtMultimedia/qaudiodecoder.sip +share/sip/PyQt5/QtMultimedia/qaudiodeviceinfo.sip +share/sip/PyQt5/QtMultimedia/qaudioformat.sip +share/sip/PyQt5/QtMultimedia/qaudioinput.sip +share/sip/PyQt5/QtMultimedia/qaudiooutput.sip +share/sip/PyQt5/QtMultimedia/qaudioprobe.sip +share/sip/PyQt5/QtMultimedia/qaudiorecorder.sip +share/sip/PyQt5/QtMultimedia/qcamera.sip +share/sip/PyQt5/QtMultimedia/qcameraexposure.sip +share/sip/PyQt5/QtMultimedia/qcamerafocus.sip +share/sip/PyQt5/QtMultimedia/qcameraimagecapture.sip +share/sip/PyQt5/QtMultimedia/qcameraimageprocessing.sip +share/sip/PyQt5/QtMultimedia/qcamerainfo.sip +share/sip/PyQt5/QtMultimedia/qmediabindableinterface.sip +share/sip/PyQt5/QtMultimedia/qmediacontent.sip +share/sip/PyQt5/QtMultimedia/qmediacontrol.sip +share/sip/PyQt5/QtMultimedia/qmediaencodersettings.sip +share/sip/PyQt5/QtMultimedia/qmediametadata.sip +share/sip/PyQt5/QtMultimedia/qmediaobject.sip +share/sip/PyQt5/QtMultimedia/qmediaplayer.sip +share/sip/PyQt5/QtMultimedia/qmediaplaylist.sip +share/sip/PyQt5/QtMultimedia/qmediarecorder.sip +share/sip/PyQt5/QtMultimedia/qmediaresource.sip +share/sip/PyQt5/QtMultimedia/qmediaservice.sip +share/sip/PyQt5/QtMultimedia/qmediatimerange.sip +share/sip/PyQt5/QtMultimedia/qmultimedia.sip +share/sip/PyQt5/QtMultimedia/qpymultimedia_qlist.sip +share/sip/PyQt5/QtMultimedia/qradiodata.sip +share/sip/PyQt5/QtMultimedia/qradiotuner.sip +share/sip/PyQt5/QtMultimedia/qsound.sip +share/sip/PyQt5/QtMultimedia/qsoundeffect.sip +share/sip/PyQt5/QtMultimedia/qvideoframe.sip +share/sip/PyQt5/QtMultimedia/qvideoprobe.sip +share/sip/PyQt5/QtMultimedia/qvideosurfaceformat.sip +share/sip/PyQt5/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip +share/sip/PyQt5/QtMultimediaWidgets/qcameraviewfinder.sip +share/sip/PyQt5/QtMultimediaWidgets/qgraphicsvideoitem.sip +share/sip/PyQt5/QtMultimediaWidgets/qvideowidget.sip +share/sip/PyQt5/QtNetwork/QtNetworkmod.sip +share/sip/PyQt5/QtNetwork/qabstractnetworkcache.sip +share/sip/PyQt5/QtNetwork/qabstractsocket.sip +share/sip/PyQt5/QtNetwork/qauthenticator.sip +share/sip/PyQt5/QtNetwork/qdnslookup.sip +share/sip/PyQt5/QtNetwork/qhostaddress.sip +share/sip/PyQt5/QtNetwork/qhostinfo.sip +share/sip/PyQt5/QtNetwork/qhttpmultipart.sip +share/sip/PyQt5/QtNetwork/qlocalserver.sip +share/sip/PyQt5/QtNetwork/qlocalsocket.sip +share/sip/PyQt5/QtNetwork/qnetworkaccessmanager.sip +share/sip/PyQt5/QtNetwork/qnetworkconfigmanager.sip +share/sip/PyQt5/QtNetwork/qnetworkconfiguration.sip +share/sip/PyQt5/QtNetwork/qnetworkcookie.sip +share/sip/PyQt5/QtNetwork/qnetworkcookiejar.sip +share/sip/PyQt5/QtNetwork/qnetworkdiskcache.sip +share/sip/PyQt5/QtNetwork/qnetworkinterface.sip +share/sip/PyQt5/QtNetwork/qnetworkproxy.sip +share/sip/PyQt5/QtNetwork/qnetworkreply.sip +share/sip/PyQt5/QtNetwork/qnetworkrequest.sip +share/sip/PyQt5/QtNetwork/qnetworksession.sip +share/sip/PyQt5/QtNetwork/qpynetwork_qhash.sip +share/sip/PyQt5/QtNetwork/qpynetwork_qmap.sip +share/sip/PyQt5/QtNetwork/qssl.sip +share/sip/PyQt5/QtNetwork/qsslcertificate.sip +share/sip/PyQt5/QtNetwork/qsslcertificateextension.sip +share/sip/PyQt5/QtNetwork/qsslcipher.sip +share/sip/PyQt5/QtNetwork/qsslconfiguration.sip +share/sip/PyQt5/QtNetwork/qsslerror.sip +share/sip/PyQt5/QtNetwork/qsslkey.sip +share/sip/PyQt5/QtNetwork/qsslsocket.sip +share/sip/PyQt5/QtNetwork/qtcpserver.sip +share/sip/PyQt5/QtNetwork/qtcpsocket.sip +share/sip/PyQt5/QtNetwork/qudpsocket.sip +share/sip/PyQt5/QtOpenGL/QtOpenGLmod.sip +share/sip/PyQt5/QtOpenGL/qgl.sip +share/sip/PyQt5/QtPositioning/QtPositioningmod.sip +share/sip/PyQt5/QtPositioning/qgeoaddress.sip +share/sip/PyQt5/QtPositioning/qgeoareamonitorinfo.sip +share/sip/PyQt5/QtPositioning/qgeoareamonitorsource.sip +share/sip/PyQt5/QtPositioning/qgeocircle.sip +share/sip/PyQt5/QtPositioning/qgeocoordinate.sip +share/sip/PyQt5/QtPositioning/qgeolocation.sip +share/sip/PyQt5/QtPositioning/qgeopositioninfo.sip +share/sip/PyQt5/QtPositioning/qgeopositioninfosource.sip +share/sip/PyQt5/QtPositioning/qgeorectangle.sip +share/sip/PyQt5/QtPositioning/qgeosatelliteinfo.sip +share/sip/PyQt5/QtPositioning/qgeosatelliteinfosource.sip +share/sip/PyQt5/QtPositioning/qgeoshape.sip +share/sip/PyQt5/QtPositioning/qnmeapositioninfosource.sip +share/sip/PyQt5/QtPrintSupport/QtPrintSupportmod.sip +share/sip/PyQt5/QtPrintSupport/qabstractprintdialog.sip +share/sip/PyQt5/QtPrintSupport/qpagesetupdialog.sip +share/sip/PyQt5/QtPrintSupport/qprintdialog.sip +share/sip/PyQt5/QtPrintSupport/qprintengine.sip +share/sip/PyQt5/QtPrintSupport/qprinter.sip +share/sip/PyQt5/QtPrintSupport/qprinterinfo.sip +share/sip/PyQt5/QtPrintSupport/qprintpreviewdialog.sip +share/sip/PyQt5/QtPrintSupport/qprintpreviewwidget.sip +share/sip/PyQt5/QtPrintSupport/qpyprintsupport_qlist.sip +share/sip/PyQt5/QtQml/QtQmlmod.sip +share/sip/PyQt5/QtQml/qjsengine.sip +share/sip/PyQt5/QtQml/qjsvalue.sip +share/sip/PyQt5/QtQml/qjsvalueiterator.sip +share/sip/PyQt5/QtQml/qmlattachedpropertiesobject.sip +share/sip/PyQt5/QtQml/qmlregistertype.sip +share/sip/PyQt5/QtQml/qpyqmllistproperty.sip +share/sip/PyQt5/QtQml/qqmlabstracturlinterceptor.sip +share/sip/PyQt5/QtQml/qqmlapplicationengine.sip +share/sip/PyQt5/QtQml/qqmlcomponent.sip +share/sip/PyQt5/QtQml/qqmlcontext.sip +share/sip/PyQt5/QtQml/qqmlengine.sip +share/sip/PyQt5/QtQml/qqmlerror.sip +share/sip/PyQt5/QtQml/qqmlexpression.sip +share/sip/PyQt5/QtQml/qqmlextensionplugin.sip +share/sip/PyQt5/QtQml/qqmlfileselector.sip +share/sip/PyQt5/QtQml/qqmlincubator.sip +share/sip/PyQt5/QtQml/qqmllist.sip +share/sip/PyQt5/QtQml/qqmlnetworkaccessmanagerfactory.sip +share/sip/PyQt5/QtQml/qqmlparserstatus.sip +share/sip/PyQt5/QtQml/qqmlproperty.sip +share/sip/PyQt5/QtQml/qqmlpropertymap.sip +share/sip/PyQt5/QtQml/qqmlpropertyvaluesource.sip +share/sip/PyQt5/QtQml/qqmlscriptstring.sip +share/sip/PyQt5/QtQuick/QtQuickmod.sip +share/sip/PyQt5/QtQuick/qquickframebufferobject.sip +share/sip/PyQt5/QtQuick/qquickimageprovider.sip +share/sip/PyQt5/QtQuick/qquickitem.sip +share/sip/PyQt5/QtQuick/qquickitemgrabresult.sip +share/sip/PyQt5/QtQuick/qquickpainteditem.sip +share/sip/PyQt5/QtQuick/qquickrendercontrol.sip +share/sip/PyQt5/QtQuick/qquicktextdocument.sip +share/sip/PyQt5/QtQuick/qquickview.sip +share/sip/PyQt5/QtQuick/qquickwindow.sip +share/sip/PyQt5/QtQuick/qsgabstractrenderer.sip +share/sip/PyQt5/QtQuick/qsgengine.sip +share/sip/PyQt5/QtQuick/qsgflatcolormaterial.sip +share/sip/PyQt5/QtQuick/qsggeometry.sip +share/sip/PyQt5/QtQuick/qsgmaterial.sip +share/sip/PyQt5/QtQuick/qsgnode.sip +share/sip/PyQt5/QtQuick/qsgsimplerectnode.sip +share/sip/PyQt5/QtQuick/qsgsimpletexturenode.sip +share/sip/PyQt5/QtQuick/qsgtexture.sip +share/sip/PyQt5/QtQuick/qsgtexturematerial.sip +share/sip/PyQt5/QtQuick/qsgtextureprovider.sip +share/sip/PyQt5/QtQuick/qsgvertexcolormaterial.sip +share/sip/PyQt5/QtQuickWidgets/QtQuickWidgetsmod.sip +share/sip/PyQt5/QtQuickWidgets/qquickwidget.sip +share/sip/PyQt5/QtSensors/QtSensorsmod.sip +share/sip/PyQt5/QtSensors/qaccelerometer.sip +share/sip/PyQt5/QtSensors/qaltimeter.sip +share/sip/PyQt5/QtSensors/qambientlightsensor.sip +share/sip/PyQt5/QtSensors/qambienttemperaturesensor.sip +share/sip/PyQt5/QtSensors/qcompass.sip +share/sip/PyQt5/QtSensors/qdistancesensor.sip +share/sip/PyQt5/QtSensors/qgyroscope.sip +share/sip/PyQt5/QtSensors/qholstersensor.sip +share/sip/PyQt5/QtSensors/qirproximitysensor.sip +share/sip/PyQt5/QtSensors/qlightsensor.sip +share/sip/PyQt5/QtSensors/qmagnetometer.sip +share/sip/PyQt5/QtSensors/qorientationsensor.sip +share/sip/PyQt5/QtSensors/qpressuresensor.sip +share/sip/PyQt5/QtSensors/qproximitysensor.sip +share/sip/PyQt5/QtSensors/qrotationsensor.sip +share/sip/PyQt5/QtSensors/qsensor.sip +share/sip/PyQt5/QtSensors/qtapsensor.sip +share/sip/PyQt5/QtSensors/qtiltsensor.sip +share/sip/PyQt5/QtSql/QtSqlmod.sip +share/sip/PyQt5/QtSql/qsql.sip +share/sip/PyQt5/QtSql/qsqldatabase.sip +share/sip/PyQt5/QtSql/qsqldriver.sip +share/sip/PyQt5/QtSql/qsqlerror.sip +share/sip/PyQt5/QtSql/qsqlfield.sip +share/sip/PyQt5/QtSql/qsqlindex.sip +share/sip/PyQt5/QtSql/qsqlquery.sip +share/sip/PyQt5/QtSql/qsqlquerymodel.sip +share/sip/PyQt5/QtSql/qsqlrecord.sip +share/sip/PyQt5/QtSql/qsqlrelationaldelegate.sip +share/sip/PyQt5/QtSql/qsqlrelationaltablemodel.sip +share/sip/PyQt5/QtSql/qsqlresult.sip +share/sip/PyQt5/QtSql/qsqltablemodel.sip +share/sip/PyQt5/QtSvg/QtSvgmod.sip +share/sip/PyQt5/QtSvg/qgraphicssvgitem.sip +share/sip/PyQt5/QtSvg/qsvggenerator.sip +share/sip/PyQt5/QtSvg/qsvgrenderer.sip +share/sip/PyQt5/QtSvg/qsvgwidget.sip +share/sip/PyQt5/QtTest/QtTestmod.sip +share/sip/PyQt5/QtTest/qsignalspy.sip +share/sip/PyQt5/QtTest/qtestcase.sip +share/sip/PyQt5/QtTest/qtestkeyboard.sip +share/sip/PyQt5/QtTest/qtestmouse.sip +share/sip/PyQt5/QtTest/qtestsystem.sip +share/sip/PyQt5/QtTest/qtesttouch.sip +share/sip/PyQt5/QtWebKit/QtWebKitmod.sip +share/sip/PyQt5/QtWebKit/qwebdatabase.sip +share/sip/PyQt5/QtWebKit/qwebelement.sip +share/sip/PyQt5/QtWebKit/qwebhistory.sip +share/sip/PyQt5/QtWebKit/qwebhistoryinterface.sip +share/sip/PyQt5/QtWebKit/qwebkitglobal.sip +share/sip/PyQt5/QtWebKit/qwebpluginfactory.sip +share/sip/PyQt5/QtWebKit/qwebsecurityorigin.sip +share/sip/PyQt5/QtWebKit/qwebsettings.sip +share/sip/PyQt5/QtWebKitWidgets/QtWebKitWidgetsmod.sip +share/sip/PyQt5/QtWebKitWidgets/qgraphicswebview.sip +share/sip/PyQt5/QtWebKitWidgets/qwebframe.sip +share/sip/PyQt5/QtWebKitWidgets/qwebinspector.sip +share/sip/PyQt5/QtWebKitWidgets/qwebpage.sip +share/sip/PyQt5/QtWebKitWidgets/qwebview.sip +share/sip/PyQt5/QtWidgets/QtWidgetsmod.sip +share/sip/PyQt5/QtWidgets/qabstractbutton.sip +share/sip/PyQt5/QtWidgets/qabstractitemdelegate.sip +share/sip/PyQt5/QtWidgets/qabstractitemview.sip +share/sip/PyQt5/QtWidgets/qabstractscrollarea.sip +share/sip/PyQt5/QtWidgets/qabstractslider.sip +share/sip/PyQt5/QtWidgets/qabstractspinbox.sip +share/sip/PyQt5/QtWidgets/qaction.sip +share/sip/PyQt5/QtWidgets/qactiongroup.sip +share/sip/PyQt5/QtWidgets/qapplication.sip +share/sip/PyQt5/QtWidgets/qboxlayout.sip +share/sip/PyQt5/QtWidgets/qbuttongroup.sip +share/sip/PyQt5/QtWidgets/qcalendarwidget.sip +share/sip/PyQt5/QtWidgets/qcheckbox.sip +share/sip/PyQt5/QtWidgets/qcolordialog.sip +share/sip/PyQt5/QtWidgets/qcolumnview.sip +share/sip/PyQt5/QtWidgets/qcombobox.sip +share/sip/PyQt5/QtWidgets/qcommandlinkbutton.sip +share/sip/PyQt5/QtWidgets/qcommonstyle.sip +share/sip/PyQt5/QtWidgets/qcompleter.sip +share/sip/PyQt5/QtWidgets/qdatawidgetmapper.sip +share/sip/PyQt5/QtWidgets/qdatetimeedit.sip +share/sip/PyQt5/QtWidgets/qdesktopwidget.sip +share/sip/PyQt5/QtWidgets/qdial.sip +share/sip/PyQt5/QtWidgets/qdialog.sip +share/sip/PyQt5/QtWidgets/qdialogbuttonbox.sip +share/sip/PyQt5/QtWidgets/qdirmodel.sip +share/sip/PyQt5/QtWidgets/qdockwidget.sip +share/sip/PyQt5/QtWidgets/qdrawutil.sip +share/sip/PyQt5/QtWidgets/qerrormessage.sip +share/sip/PyQt5/QtWidgets/qfiledialog.sip +share/sip/PyQt5/QtWidgets/qfileiconprovider.sip +share/sip/PyQt5/QtWidgets/qfilesystemmodel.sip +share/sip/PyQt5/QtWidgets/qfocusframe.sip +share/sip/PyQt5/QtWidgets/qfontcombobox.sip +share/sip/PyQt5/QtWidgets/qfontdialog.sip +share/sip/PyQt5/QtWidgets/qformlayout.sip +share/sip/PyQt5/QtWidgets/qframe.sip +share/sip/PyQt5/QtWidgets/qgesture.sip +share/sip/PyQt5/QtWidgets/qgesturerecognizer.sip +share/sip/PyQt5/QtWidgets/qgraphicsanchorlayout.sip +share/sip/PyQt5/QtWidgets/qgraphicseffect.sip +share/sip/PyQt5/QtWidgets/qgraphicsgridlayout.sip +share/sip/PyQt5/QtWidgets/qgraphicsitem.sip +share/sip/PyQt5/QtWidgets/qgraphicslayout.sip +share/sip/PyQt5/QtWidgets/qgraphicslayoutitem.sip +share/sip/PyQt5/QtWidgets/qgraphicslinearlayout.sip +share/sip/PyQt5/QtWidgets/qgraphicsproxywidget.sip +share/sip/PyQt5/QtWidgets/qgraphicsscene.sip +share/sip/PyQt5/QtWidgets/qgraphicssceneevent.sip +share/sip/PyQt5/QtWidgets/qgraphicstransform.sip +share/sip/PyQt5/QtWidgets/qgraphicsview.sip +share/sip/PyQt5/QtWidgets/qgraphicswidget.sip +share/sip/PyQt5/QtWidgets/qgridlayout.sip +share/sip/PyQt5/QtWidgets/qgroupbox.sip +share/sip/PyQt5/QtWidgets/qheaderview.sip +share/sip/PyQt5/QtWidgets/qinputdialog.sip +share/sip/PyQt5/QtWidgets/qitemdelegate.sip +share/sip/PyQt5/QtWidgets/qitemeditorfactory.sip +share/sip/PyQt5/QtWidgets/qkeyeventtransition.sip +share/sip/PyQt5/QtWidgets/qkeysequenceedit.sip +share/sip/PyQt5/QtWidgets/qlabel.sip +share/sip/PyQt5/QtWidgets/qlayout.sip +share/sip/PyQt5/QtWidgets/qlayoutitem.sip +share/sip/PyQt5/QtWidgets/qlcdnumber.sip +share/sip/PyQt5/QtWidgets/qlineedit.sip +share/sip/PyQt5/QtWidgets/qlistview.sip +share/sip/PyQt5/QtWidgets/qlistwidget.sip +share/sip/PyQt5/QtWidgets/qmainwindow.sip +share/sip/PyQt5/QtWidgets/qmdiarea.sip +share/sip/PyQt5/QtWidgets/qmdisubwindow.sip +share/sip/PyQt5/QtWidgets/qmenu.sip +share/sip/PyQt5/QtWidgets/qmenubar.sip +share/sip/PyQt5/QtWidgets/qmessagebox.sip +share/sip/PyQt5/QtWidgets/qmouseeventtransition.sip +share/sip/PyQt5/QtWidgets/qopenglwidget.sip +share/sip/PyQt5/QtWidgets/qplaintextedit.sip +share/sip/PyQt5/QtWidgets/qprogressbar.sip +share/sip/PyQt5/QtWidgets/qprogressdialog.sip +share/sip/PyQt5/QtWidgets/qpushbutton.sip +share/sip/PyQt5/QtWidgets/qpywidgets_qlist.sip +share/sip/PyQt5/QtWidgets/qradiobutton.sip +share/sip/PyQt5/QtWidgets/qrubberband.sip +share/sip/PyQt5/QtWidgets/qscrollarea.sip +share/sip/PyQt5/QtWidgets/qscrollbar.sip +share/sip/PyQt5/QtWidgets/qscroller.sip +share/sip/PyQt5/QtWidgets/qscrollerproperties.sip +share/sip/PyQt5/QtWidgets/qshortcut.sip +share/sip/PyQt5/QtWidgets/qsizegrip.sip +share/sip/PyQt5/QtWidgets/qsizepolicy.sip +share/sip/PyQt5/QtWidgets/qslider.sip +share/sip/PyQt5/QtWidgets/qspinbox.sip +share/sip/PyQt5/QtWidgets/qsplashscreen.sip +share/sip/PyQt5/QtWidgets/qsplitter.sip +share/sip/PyQt5/QtWidgets/qstackedlayout.sip +share/sip/PyQt5/QtWidgets/qstackedwidget.sip +share/sip/PyQt5/QtWidgets/qstatusbar.sip +share/sip/PyQt5/QtWidgets/qstyle.sip +share/sip/PyQt5/QtWidgets/qstyleditemdelegate.sip +share/sip/PyQt5/QtWidgets/qstylefactory.sip +share/sip/PyQt5/QtWidgets/qstyleoption.sip +share/sip/PyQt5/QtWidgets/qstylepainter.sip +share/sip/PyQt5/QtWidgets/qsystemtrayicon.sip +share/sip/PyQt5/QtWidgets/qtabbar.sip +share/sip/PyQt5/QtWidgets/qtableview.sip +share/sip/PyQt5/QtWidgets/qtablewidget.sip +share/sip/PyQt5/QtWidgets/qtabwidget.sip +share/sip/PyQt5/QtWidgets/qtextbrowser.sip +share/sip/PyQt5/QtWidgets/qtextedit.sip +share/sip/PyQt5/QtWidgets/qtoolbar.sip +share/sip/PyQt5/QtWidgets/qtoolbox.sip +share/sip/PyQt5/QtWidgets/qtoolbutton.sip +share/sip/PyQt5/QtWidgets/qtooltip.sip +share/sip/PyQt5/QtWidgets/qtreeview.sip +share/sip/PyQt5/QtWidgets/qtreewidget.sip +share/sip/PyQt5/QtWidgets/qtreewidgetitemiterator.sip +share/sip/PyQt5/QtWidgets/qundogroup.sip +share/sip/PyQt5/QtWidgets/qundostack.sip +share/sip/PyQt5/QtWidgets/qundoview.sip +share/sip/PyQt5/QtWidgets/qwhatsthis.sip +share/sip/PyQt5/QtWidgets/qwidget.sip +share/sip/PyQt5/QtWidgets/qwidgetaction.sip +share/sip/PyQt5/QtWidgets/qwizard.sip +share/sip/PyQt5/QtXml/QtXmlmod.sip +share/sip/PyQt5/QtXml/qdom.sip +share/sip/PyQt5/QtXml/qxml.sip +share/sip/PyQt5/QtXmlPatterns/QtXmlPatternsmod.sip +share/sip/PyQt5/QtXmlPatterns/qabstractmessagehandler.sip +share/sip/PyQt5/QtXmlPatterns/qabstracturiresolver.sip +share/sip/PyQt5/QtXmlPatterns/qabstractxmlnodemodel.sip +share/sip/PyQt5/QtXmlPatterns/qabstractxmlreceiver.sip +share/sip/PyQt5/QtXmlPatterns/qsimplexmlnodemodel.sip +share/sip/PyQt5/QtXmlPatterns/qsourcelocation.sip +share/sip/PyQt5/QtXmlPatterns/qxmlformatter.sip +share/sip/PyQt5/QtXmlPatterns/qxmlname.sip +share/sip/PyQt5/QtXmlPatterns/qxmlnamepool.sip +share/sip/PyQt5/QtXmlPatterns/qxmlquery.sip +share/sip/PyQt5/QtXmlPatterns/qxmlresultitems.sip +share/sip/PyQt5/QtXmlPatterns/qxmlschema.sip +share/sip/PyQt5/QtXmlPatterns/qxmlschemavalidator.sip +share/sip/PyQt5/QtXmlPatterns/qxmlserializer.sip +share/sip/PyQt5/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip +share/sip/PyQt5/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip diff --git a/x11/py-qt5/buildlink3.mk b/x11/py-qt5/buildlink3.mk new file mode 100644 index 00000000000..3b670e75e3d --- /dev/null +++ b/x11/py-qt5/buildlink3.mk @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2015/02/07 16:30:37 wiz Exp $ + +BUILDLINK_TREE+= py-qt5 + +.if !defined(PY_QT5_BUILDLINK3_MK) +PY_QT5_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.py-qt5+= ${PYPKGPREFIX}-qt5>=5.2.1 +BUILDLINK_PKGSRCDIR.py-qt5?= ../../x11/py-qt5 + +.endif # PY_QT5_BUILDLINK3_MK + +BUILDLINK_TREE+= -py-qt5 diff --git a/x11/py-qt5/distinfo b/x11/py-qt5/distinfo new file mode 100644 index 00000000000..497dfbdd4c9 --- /dev/null +++ b/x11/py-qt5/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2015/02/07 16:30:37 wiz Exp $ + +SHA1 (PyQt-gpl-5.4.tar.gz) = 057e6b32c43e673e79f876fb9b6f33d3072edfc2 +RMD160 (PyQt-gpl-5.4.tar.gz) = 93a7046162d6a65d781797599cf08532e1fb1746 +Size (PyQt-gpl-5.4.tar.gz) = 3644542 bytes +SHA1 (patch-configure.py) = 482e3dbafdc4c901583d85655a4b734078c85a3b diff --git a/x11/py-qt5/patches/patch-configure.py b/x11/py-qt5/patches/patch-configure.py new file mode 100644 index 00000000000..8931a1c28a8 --- /dev/null +++ b/x11/py-qt5/patches/patch-configure.py @@ -0,0 +1,17 @@ +$NetBSD: patch-configure.py,v 1.1 2015/02/07 16:30:37 wiz Exp $ + +Adapt for pkgsrc change to make qmake create libtool files. + +--- configure.py.orig 2014-03-14 14:38:18.000000000 +0000 ++++ configure.py +@@ -2149,8 +2149,8 @@ win32 { + target.files = %s%s.pyd + LIBS += %s + } else { +- PY_MODULE = %s.so +- target.files = %s.so ++ PY_MODULE = %s.la ++ target.files = %s.la + } + ''' % (target_name, debug_suffix, target_name, debug_suffix, link, target_name, target_name) + -- cgit v1.2.3