2013-02-10 19:41:49 -05:00
|
|
|
#!/usr/bin/env python
|
2012-04-08 17:00:15 +02:00
|
|
|
|
|
|
|
# the purpose of this script is rewriting the swig_import_helper
|
|
|
|
# call so it will not load _xxxxx.so/dso from inside a kicad executable
|
|
|
|
# because the kicad executable itself sill provide an _xxxxx module
|
|
|
|
# that's linked inside itself.
|
|
|
|
#
|
|
|
|
# for the normal module import it should work the same way with this
|
|
|
|
# fix in the swig_import_helper
|
|
|
|
#
|
|
|
|
|
2018-08-03 13:33:16 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2012-04-08 17:00:15 +02:00
|
|
|
from sys import argv,exit
|
|
|
|
|
2018-08-03 13:33:16 +02:00
|
|
|
|
2012-04-08 17:00:15 +02:00
|
|
|
if len(argv)<2:
|
2018-08-03 13:33:16 +02:00
|
|
|
print("usage:")
|
|
|
|
print(" fix_swig_imports.py file.py")
|
|
|
|
print("")
|
|
|
|
print(" will fix the swig import code for working inside KiCad")
|
|
|
|
print(" where it happended that the external _pcbnew.so/dll was")
|
|
|
|
print(" loaded too -and the internal _pcbnew module was to be used")
|
2012-04-08 17:00:15 +02:00
|
|
|
exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
filename = argv[1]
|
|
|
|
|
|
|
|
f = open(filename,"rb")
|
|
|
|
lines = f.readlines()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
doneOk = False
|
|
|
|
|
2012-10-01 08:04:06 +02:00
|
|
|
if (len(lines)<4000):
|
2018-08-03 13:33:16 +02:00
|
|
|
print("still building")
|
2012-04-09 08:19:57 +02:00
|
|
|
exit(0)
|
|
|
|
|
2018-08-03 13:33:16 +02:00
|
|
|
txt = b""
|
2012-10-01 08:04:06 +02:00
|
|
|
|
2012-04-08 17:00:15 +02:00
|
|
|
for l in lines:
|
2019-05-09 09:53:46 +02:00
|
|
|
if l.startswith(b"if _swig_python_version_info < (2, 7, 0):"): # ok with swig version >= 4.0.0
|
|
|
|
l = l.replace(b"_swig_python_version_info < (2, 7, 0)", b"False")
|
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
if l.startswith(b"if _swig_python_version_info >= (2, 7, 0):"): # ok with swig version >= 3.0.10
|
|
|
|
l = l.replace(b"_swig_python_version_info >= (2, 7, 0)", b"False")
|
2016-06-20 09:32:59 -04:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
elif l.startswith(b"elif _swig_python_version_info >= (2, 6, 0):"): # needed with swig version >= 3.0.10
|
|
|
|
l = l.replace(b"_swig_python_version_info >= (2, 6, 0)", b"False")
|
2016-06-20 09:32:59 -04:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
if l.startswith(b"if version_info >= (2, 7, 0):"): # ok with swig version >= 3.0.9
|
|
|
|
l = l.replace(b"version_info >= (2, 7, 0)", b"False")
|
2016-06-13 19:50:29 +02:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
elif l.startswith(b"elif version_info >= (2, 6, 0):"): # needed with swig version >= 3.0.9
|
|
|
|
l = l.replace(b"version_info >= (2, 6, 0)", b"False")
|
2016-06-13 19:50:29 +02:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
elif l.startswith(b"if version_info >= (2,6,0):"): # ok with swig version <= 3.0.2
|
|
|
|
l = l.replace(b"version_info >= (2,6,0)", b"False")
|
2012-04-08 17:00:15 +02:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
elif l.startswith(b"if version_info >= (2, 6, 0):"): # needed with swig version 3.0.3
|
|
|
|
l = l.replace(b"version_info >= (2, 6, 0)", b"False")
|
2015-01-04 08:19:04 +01:00
|
|
|
doneOk = True
|
2018-08-03 13:33:16 +02:00
|
|
|
elif l.startswith(b"if False:"): # it was already patched?
|
2012-04-08 17:00:15 +02:00
|
|
|
doneOk = True
|
2012-07-06 21:10:55 +02:00
|
|
|
txt = txt + l
|
2012-04-08 17:00:15 +02:00
|
|
|
|
2012-07-06 21:10:55 +02:00
|
|
|
f = open(filename,"wb")
|
|
|
|
f.write(txt)
|
2012-04-08 17:00:15 +02:00
|
|
|
f.close()
|
|
|
|
|
|
|
|
if doneOk:
|
2018-08-03 13:33:16 +02:00
|
|
|
print("swig_import_helper fixed for", filename)
|
2012-04-08 17:00:15 +02:00
|
|
|
else:
|
2018-08-03 13:33:16 +02:00
|
|
|
print("Error: the swig import helper was not fixed, check", filename)
|
|
|
|
print(" and fix this script: fix_swig_imports.py")
|
2012-04-08 17:00:15 +02:00
|
|
|
exit(2)
|
|
|
|
|
2012-10-01 08:04:06 +02:00
|
|
|
|
2012-04-08 17:00:15 +02:00
|
|
|
exit(0)
|
2012-10-01 08:04:06 +02:00
|
|
|
|
|
|
|
|
2012-04-08 17:00:15 +02:00
|
|
|
|