ports/devel/py-qt5-core/files/Qt.py
Raphael Kubo da Costa 5b3f3dd953 At very long last land PyQt5 5.5.1 ports.
Add the required bits to Uses/pyqt.mk along with all the PyQt5 ports.
Thankfully this commit is mostly adding new ports, as the hard work was
already done in r403297 and r403662.

Huge kudos to Tobias Berner <tcberner@gmail.com> and, most importantly,
Guido Falsi (madpilot@) for their initial work on these ports (see D2910 in
Phabricator for an earlier version of the PyQt5 patch set).

PR:		204672
2015-12-13 21:56:50 +00:00

73 lines
1.3 KiB
Python

# Replacement for the composite module PyQt5.Qt for FreeBSD
# Provides namespace for all installed PyQt5 modules by importing them
from PyQt5.QtCore import *
try:
from PyQt5.QtGui import *
except ImportError:
pass
try:
from PyQt5.QtDBus import *
except ImportError:
pass
try:
from PyQt5.QtMultimedia import *
except ImportError:
pass
try:
from PyQt5.QtMultimediaWidgets import *
except ImportError:
pass
try:
from PyQt5.QtNetwork import *
except ImportError:
pass
try:
from PyQt5.QtOpenGL import *
except ImportError:
pass
try:
from PyQt5.QtPrintSupport import *
except ImportError:
pass
try:
from PyQt5.QtQml import *
except ImportError:
pass
try:
from PyQt5.QtSerialPort import *
except ImportError:
pass
try:
from PyQt5.QtSql import *
except ImportError:
pass
try:
from PyQt5.QtSvg import *
except ImportError:
pass
try:
from PyQt5.QtTest import *
except ImportError:
pass
try:
from PyQt5.QtWebKit import *
except ImportError:
pass
try:
from PyQt5.QtWebKitWidgets import *
except ImportError:
pass
try:
from PyQt5.QtWidgets import *
except ImportError:
pass
try:
from PyQt5.QtXml import *
except ImportError:
pass
try:
from PyQt5.QtXmlPatterns import *
except ImportError:
pass