Example #1
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend'))
     outputs.append(
         os.path.join(self._get_install_path(), 'cppyy_backend', 'etc',
                      'allDict.cxx.pch'))
     return outputs
Example #2
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend'))
     version = find_version('python', 'cppyy_backend', '_version.py')
     outputs.append(os.path.join(
         self._get_install_path(), 'cppyy_backend', 'etc', 'allDict.cxx.pch.'+str(version)))
     return outputs
Example #3
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     # pre-emptively add allDict.cxx.pch, which may or may not be created; need full
     # path to make sure the final relative path is correct
     outputs.append(
         os.path.join(os.getcwd(), self.install_libbase, 'cppyy',
                      'allDict.cxx.pch'))
     return outputs
Example #4
0
    def _get_base_install_path(self):
        # Path separator Unix is '/', Win is '\'
        pathre = re.compile('world4py.__init__\.py')
        install_base_dir = ''
        for path in install.get_outputs(self):
            if pathre.search(path):
                install_base_dir = path.replace('__init__.py', '')
                break

        return install_base_dir
Example #5
0
 def get_outputs(self):
     outputs = getattr(self, 'outputs', [])
     outputs += _install.get_outputs(self)
     return outputs
Example #6
0
 def get_outputs(self):
     return install.get_outputs(self) + self.ktools_components
Example #7
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     #outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend'))
     return outputs
Example #8
0
 def get_outputs(self):
     outputs = install.get_outputs(self)
     outputs.extend(self.my_outputs)
     return outputs
Example #9
0
 def get_outputs(self):
     outputs = install.get_outputs(self)
     outputs.append(self._spinnaker_init)
     return outputs
Example #10
0
File: setup.py Project: dagss/Bento
 def get_outputs(self):
     outfiles = old_install.get_outputs(self)
     outfiles.extend(self.__files)
     return outfiles
Example #11
0
 def get_outputs(self):
     outputs = install.get_outputs(self)
     outputs.extend(self.my_outputs)
     return outputs
Example #12
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     #outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend'))
     return outputs
Example #13
0
 def get_outputs(self):
     outputs = install.get_outputs(self) or []
     return outputs + [self.target]
Example #14
0
 def get_outputs(self):
     outputs = install.get_outputs(self)
     outputs.append(self._spinnaker_init)
     return outputs
Example #15
0
 def get_outputs(self):
     return install.get_outputs(self) + [
         self._get_install_full_path(
             self._get_base_install_path(),
             self._get_library(self._get_platform())),
     ]
Example #16
0
 def get_outputs(self):
     outputs = _install.get_outputs(self)
     outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend'))
     outputs.append(os.path.join(self._get_install_path(), 'cppyy_backend', 'etc', 'allDict.cxx.pch'))
     return outputs