Exemplo n.º 1
0
 def __init__(self, *args, **kw):
     build_clib_options = []
     for long_, short, comment in build_clib.user_options:
         build_clib_options.extend([long_, short])
     call(
         [sys.executable, 'setup.py', 'build_clib'] +
         [arg for arg in sys.argv if arg.lstrip("-") in build_clib_options],
         stdout=PIPE
     )
     build_ext.__init__(self, *args, **kw)
Exemplo n.º 2
0
 def __init__(self, dist):
     build_ext.__init__(self, dist)
     self.srcdir = None
     self.lib_dirs = None
     self.inc_dirs = None
     self.config_h_vars = None
     self.failed = []
     self.failed_on_import = []
     self.missing = []
     self.disabled_configure = []
     if '-j' in os.environ.get('MAKEFLAGS', ''):
         self.parallel = True
Exemplo n.º 3
0
    def __init__(self, dist):
        r"""initialize local variables -- BEFORE calling the
            base class __init__, which will cause a callback to
            our initialize_options()."""

        ## \var signet_root
        # \brief Where signet.command is installed

        self.signet_root = os.path.dirname(__file__)

        ## \var lib_root
        # \brif Default library subdirectory

        self.lib_root = os.path.join(self.signet_root, 'lib')

        _build_ext.__init__(self, dist)
Exemplo n.º 4
0
 def __init__(self, *args, **kargs):
     self.libs = None
     self.includes = None
     self.platform = None
     build_ext.__init__(self, *args, **kargs)
Exemplo n.º 5
0
 def __init__(self, dict):
     build_ext.__init__(self,dict)
     self._build_temp = None
Exemplo n.º 6
0
 def __init__(self, dict):
     build_ext.__init__(self, dict)
     self._build_temp = None
Exemplo n.º 7
0
 def __init__(self, *args, **kwargs):
     build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 8
0
 def __init__(self, *args, **kargs):
     self.libs = [LIBBFD_LIBRARY, LIBOPCODES_LIBRARY]
     self.static_libs = [lib for lib in self.libs if lib.endswith('.a')]
     self.shared_libs = [lib for lib in self.libs if not lib.endswith('.a')]
     self._include_dirs = [LIBBFD_INCLUDE_DIR, LIBOPCODES_INCLUDE_DIR]
     build_ext.__init__(self, *args, **kargs)
Exemplo n.º 9
0
 def __init__(self, *args, **kwds):
     CompilationCacheExtMixin.__init__(self, *args, **kwds)
     kwds.pop("cache_dir", None)
     build_ext.__init__(self, *args, **kwds)
Exemplo n.º 10
0
 def __init__(self, dist):
     _build_ext.__init__(self, dist)
     if sys.platform == 'win32':
         self._extension = 'vtkMultiIOPython.pyd'
     else:
         self._extension = 'libvtkMultiIOPython.so'
Exemplo n.º 11
0
 def __init__(self, dist):
     build_ext.__init__(self, dist)
     self.libuv_build_clean = False
     self.libuv_force_fetch = False
     self.use_system_libuv = False
Exemplo n.º 12
0
 def __init__(self, dist):
     _build_ext.__init__(self, dist)
     if sys.platform == 'win32':
         self._extension = 'MicroViewPython.pyd'
     else:
         self._extension = 'libMicroViewPython.so'
Exemplo n.º 13
0
 def __init__(self, *args, **kwargs):
     build_ext.__init__(self, *args, **kwargs)
     self.inplace = False
Exemplo n.º 14
0
 def __init__(self, reporter, *args, **kwargs):
     self.reporter = reporter
     build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 15
0
 def __init__(self,*args,**kwds):
     CompilationCacheExtMixin.__init__(self,*args,**kwds)
     kwds.pop("cache_dir",None)
     build_ext.__init__(self,*args,**kwds)
Exemplo n.º 16
0
 def __init__(self, *args, **kwargs):
     self.builtsolvernames = []
     self.failedsolvernames = []
     _build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 17
0
 def __init__(self, dist):
     _build_ext.__init__(self, dist)
     if sys.platform == 'win32':
         self._extension = 'MicroViewPython.pyd'
     else:
         self._extension = 'libMicroViewPython.so'
Exemplo n.º 18
0
 def __init__(self, *args, **kwargs):
     logerr('LB 1')
     build_ext.__init__(self, *args, **kwargs)
     logerr('LB 1a')
Exemplo n.º 19
0
 def __init__(self, dist):
     build_ext.__init__(self, dist)
     self.failed = []
Exemplo n.º 20
0
 def __init__(self, reporter, *args, **kwargs):
     self.reporter = reporter
     build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 21
0
 def __init__(self, *args, **kargs):
     self.libs = None
     self.includes = None 
     self.platform = None
     build_ext.__init__(self, *args, **kargs) 
Exemplo n.º 22
0
 def __init__(self, *args, **kwargs):
     build_ext.__init__(self, *args, **kwargs)
     self.inplace = False
Exemplo n.º 23
0
 def __init__(self, *args, **kwargs):
     self.builtsolvernames = []
     self.failedsolvernames = []
     _build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 24
0
 def __init__(self, *args, **kwargs):
     build_ext.__init__(self, *args, **kwargs)
Exemplo n.º 25
0
Arquivo: setup.py Projeto: koehlma/uv
 def __init__(self, dist):
     build_ext.__init__(self, dist)
     self.libuv_build_clean = False
     self.libuv_force_fetch = False
     self.use_system_libuv = False