aboutsummaryrefslogtreecommitdiff
path: root/attic/modules/FindPyQt.py
diff options
context:
space:
mode:
Diffstat (limited to 'attic/modules/FindPyQt.py')
-rw-r--r--attic/modules/FindPyQt.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/attic/modules/FindPyQt.py b/attic/modules/FindPyQt.py
deleted file mode 100644
index 6c1c759d..00000000
--- a/attic/modules/FindPyQt.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright (c) 2007, Simon Edwards <simon@simonzone.com>
-# Copyright (c) 2014, Raphael Kubo da Costa <rakuco@FreeBSD.org>
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-
-import PyQt4.QtCore
-import os
-import sys
-
-def get_default_sip_dir():
- # This is based on QScintilla's configure.py, and only works for the
- # default case where installation paths have not been changed in PyQt's
- # configuration process.
- if sys.platform == 'win32':
- pyqt_sip_dir = os.path.join(sys.prefix, 'sip', 'PyQt4')
- else:
- pyqt_sip_dir = os.path.join(sys.prefix, 'share', 'sip', 'PyQt4')
- return pyqt_sip_dir
-
-def get_qt4_tag(sip_flags):
- in_t = False
- for item in sip_flags.split(' '):
- if item == '-t':
- in_t = True
- elif in_t:
- if item.startswith('Qt_4'):
- return item
- else:
- in_t = False
- raise ValueError('Cannot find Qt\'s tag in PyQt4\'s SIP flags.')
-
-if __name__ == '__main__':
- try:
- import PyQt4.pyqtconfig
- pyqtcfg = PyQt4.pyqtconfig.Configuration()
- sip_dir = pyqtcfg.pyqt_sip_dir
- sip_flags = pyqtcfg.pyqt_sip_flags
- except ImportError:
- # PyQt4 >= 4.10.0 was built with configure-ng.py instead of
- # configure.py, so pyqtconfig.py is not installed.
- sip_dir = get_default_sip_dir()
- sip_flags = PyQt4.QtCore.PYQT_CONFIGURATION['sip_flags']
-
- print('pyqt_version:%06.x' % PyQt4.QtCore.PYQT_VERSION)
- print('pyqt_version_str:%s' % PyQt4.QtCore.PYQT_VERSION_STR)
- print('pyqt_version_tag:%s' % get_qt4_tag(sip_flags))
- print('pyqt_sip_dir:%s' % sip_dir)
- print('pyqt_sip_flags:%s' % sip_flags)