install.py

branch
5_5_x
changeset 3696
7c8fd4752a55
parent 3695
8b52ec5f40e4
child 3706
6265b4f8deb7
diff -r 8b52ec5f40e4 -r 7c8fd4752a55 install.py
--- a/install.py	Sun Jul 13 13:02:38 2014 +0200
+++ b/install.py	Sun Jul 13 14:28:20 2014 +0200
@@ -657,6 +657,7 @@
                 os.sep, name, sourceDir))
     
     # install the API file
+    from PyQt4.QtCore import qVersion
     for progLanguage in progLanguages:
         apidir = os.path.join(cfg['apidir'], progLanguage.lower())
         if not os.path.exists(apidir):
@@ -684,7 +685,17 @@
             for apiName in glob.glob(os.path.join(sourceDir, "APIs",
                                                   "Python3", "*.bas")):
                 try:
-                    shutilCopy(apiName, apidir)
+                    if os.path.basename(apiName).startswith("PyQt4"):
+                        # only install the PyQt4 file matching the Qt version
+                        if os.path.splitext(apiName)[0].endswith(
+                                qVersion().split(".")[0]):
+                            shutilCopy(apiName,
+                                       os.path.join(apidir, "PyQt4.bas"))
+                        continue
+                    if os.path.exists(os.path.join(
+                        apidir, os.path.basename(
+                            apiName.replace(".bas", ".api")))):
+                        shutilCopy(apiName, apidir)
                 except EnvironmentError:
                     print("Could not install '{0}'.".format(apiName))
     

eric ide

mercurial