summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2018-01-24 13:34:10 +0700
committerAndrey Grozin <grozin@gentoo.org>2018-01-24 13:34:10 +0700
commit63a5ea9bcb7857592d6d26396be3f78fb5328d9c (patch)
tree51f31a82bb81fe85abe4df6bb465b657bae91a81 /dev-python/pyqtgraph/files
parentdev-ruby/multi_json: add back missing ~sparc keyword (diff)
downloadgentoo-63a5ea9bcb7857592d6d26396be3f78fb5328d9c.tar.gz
gentoo-63a5ea9bcb7857592d6d26396be3f78fb5328d9c.tar.bz2
gentoo-63a5ea9bcb7857592d6d26396be3f78fb5328d9c.zip
drop optional Qt4 dependence
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-python/pyqtgraph/files')
-rw-r--r--dev-python/pyqtgraph/files/pyqtgraph-0.10.0-qt5.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-python/pyqtgraph/files/pyqtgraph-0.10.0-qt5.patch b/dev-python/pyqtgraph/files/pyqtgraph-0.10.0-qt5.patch
new file mode 100644
index 000000000000..b74df26df5d3
--- /dev/null
+++ b/dev-python/pyqtgraph/files/pyqtgraph-0.10.0-qt5.patch
@@ -0,0 +1,10 @@
+diff -r -U2 pyqtgraph-0.10.0.orig/pyqtgraph/Qt.py pyqtgraph-0.10.0/pyqtgraph/Qt.py
+--- pyqtgraph-0.10.0.orig/pyqtgraph/Qt.py 2016-10-17 23:22:41.000000000 +0700
++++ pyqtgraph-0.10.0/pyqtgraph/Qt.py 2018-01-23 22:52:19.503525554 +0700
+@@ -25,5 +25,5 @@
+ ## is already imported. If not, then attempt to import PyQt4, then PySide.
+ if QT_LIB is None:
+- libOrder = [PYQT4, PYSIDE, PYQT5]
++ libOrder = [PYQT5]
+
+ for lib in libOrder: