summarylogtreecommitdiffstats
path: root/krita-pyqt5-sip5.patch
diff options
context:
space:
mode:
authorAlfredo Ramos2020-07-27 10:04:17 -0500
committerAlfredo Ramos2020-07-27 10:04:17 -0500
commit0d237945cd814a4ef39261926f7344abf97ba4aa (patch)
tree84ba2d48f8e850f4b7e00d1beca2e5de3fb831b7 /krita-pyqt5-sip5.patch
parent740020d9f4a995ca32c25535e6e689cac23eae8d (diff)
downloadaur-0d237945cd814a4ef39261926f7344abf97ba4aa.tar.gz
The patch for PyQt5 with SIP5 is no longer needed
https://github.com/KDE/krita/commit/c3cba340cfca43f216522464de5fd6f3e060718b
Diffstat (limited to 'krita-pyqt5-sip5.patch')
-rw-r--r--krita-pyqt5-sip5.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/krita-pyqt5-sip5.patch b/krita-pyqt5-sip5.patch
deleted file mode 100644
index 5d88a3b623ac..000000000000
--- a/krita-pyqt5-sip5.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/cmake/modules/FindPyQt5.py b/cmake/modules/FindPyQt5.py
-index 5849f40868..a42ba6c624 100644
---- a/cmake/modules/FindPyQt5.py
-+++ b/cmake/modules/FindPyQt5.py
-@@ -2,7 +2,7 @@
- # Redistribution and use is allowed according to the terms of the BSD license.
- # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
--import sys
-+import sys, site
- import os
-
- try:
-@@ -41,7 +41,7 @@ except ValueError:
- pass
-
- # FIXME This next line is just a little bit too crude.
--pyqt_sip_dir = os.path.join(sys.prefix, "share", "sip", "PyQt5")
-+pyqt_sip_dir = os.path.join(site.getsitepackages()[0], "PyQt5", "bindings")
- print("pyqt_sip_dir:%s" % pyqt_sip_dir)
-
- print("pyqt_sip_flags:%s" % PyQt5.QtCore.PYQT_CONFIGURATION["sip_flags"])