mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
SIP: As mentioned in the update from sip to sip5, this is a transitional version to remove what is deprecated in sip4. Sip6 completely removes the deprecated parts. Unfortunately, some ports — mostly cura things — can not use sip6, so we reintroduce sip4. PyQt: At the same time, we took the opportunity to simplify PyQT and propose only one package as for devel/pyside2. */py-qt5-* have been merged — excepted chart, networkauth and webengine — into devel/py-qt5-pyqt. This allows us to be in adequacy with the packages that the author of these libraries proposes, namely: PyQt - devel/py-qt5-pyqt PyQt-Charts - x11-toolkits/py-qt5-chart PyQt-NetworkAuth – net/py-qt5-networkauth PyQt-WebEngine – www/py-qt5-webengine SIP – devel/py-sip py-sip - devel/py-qt5-sip PyQt-builder - devel/py-qtbuilder Qscintilla - devel/py-qt5-qscintilla2 Reviewed by: diizzy, kde Tested by: kai, rhurlin, arrowd, madpilot Approved by: makc, tcberner, kde Differential Revision: https://reviews.freebsd.org/D33237 Exp-run by: antoine
16 lines
709 B
Python
16 lines
709 B
Python
--- project.py.orig 2021-12-04 07:18:20 UTC
|
|
+++ project.py
|
|
@@ -210,11 +210,11 @@ del find_qt
|
|
if tool in ('build', 'install'):
|
|
if self.designer_plugin and 'QtDesigner' in self.bindings:
|
|
self._add_plugin('designer', "Qt Designer", 'pyqt5',
|
|
- 'designer', others_debug)
|
|
+ '%%PYQT_DESIGNERDIR%%', others_debug)
|
|
|
|
if self.qml_plugin and 'QtQml' in self.bindings:
|
|
self._add_plugin('qmlscene', "qmlscene", 'pyqt5qmlplugin',
|
|
- 'PyQt5', others_debug)
|
|
+ '%%PYQT_QMLDIR%%', others_debug)
|
|
|
|
# Add the dbus-python support.
|
|
if self.dbus_python:
|