Lines Matching refs:install_dir
134 def is_needed(self, install_dir): argument
165 if (not module.__file__.startswith(install_dir) and
169 self.module_name, module.__file__, install_dir,
170 install_dir)
195 def _build_and_install(self, install_dir): argument
200 def _build_and_install_current_dir(self, install_dir): argument
208 def build_and_install(self, install_dir): argument
218 return self._build_and_install(install_dir)
237 def _build_and_install_current_dir_setup_py(self, install_dir): argument
242 return self._install_from_egg(install_dir, egg_path)
245 def _build_and_install_current_dir_setupegg_py(self, install_dir): argument
250 return self._install_from_egg(install_dir, egg_path)
253 def _build_and_install_current_dir_noegg(self, install_dir): argument
256 return self._install_using_setup_py_and_rsync(install_dir)
275 def _build_and_install_from_package(self, install_dir): argument
297 return self._build_and_install_current_dir(install_dir)
363 def _install_from_egg(self, install_dir, egg_path): argument
371 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
375 egg_info_dir = os.path.join(install_dir, 'EGG-INFO')
377 egg_info_new_path = self._get_egg_info_path(install_dir)
387 def _get_egg_info_path(self, install_dir): argument
400 return os.path.join(install_dir, egg_info_filename)
416 def _rsync (self, temp_site_dir, install_dir): argument
420 os.path.normpath(install_dir)))
427 def _install_using_setup_py_and_rsync(self, install_dir, argument
468 return self._rsync(temp_site_dir, install_dir)
474 def _build_using_make(self, install_dir): argument
479 install_prefix = os.path.join(install_dir, 'usr', 'local')
602 def _build_and_install(self, install_dir): argument
605 return self._build_and_install_from_package(install_dir)
608 def _build_and_install_current_dir(self, install_dir): argument
658 def _build_and_install(self, install_dir): argument
665 return self._build_and_install_from_package(install_dir)
773 def is_needed(self, install_dir): argument
774 gwt_dir = os.path.join(install_dir, self.name)
775 about_file = os.path.join(install_dir, self.name, self.about_filename)
794 def _build_and_install(self, install_dir): argument
795 os.chdir(install_dir)
798 target_dir = os.path.join(install_dir, self.name)
1042 def _build_and_install(self, install_dir): argument
1052 return self._build_and_install_from_package(install_dir)
1207 def build_and_install(self, install_dir): argument
1214 rv = self._rsync(servo_dir, os.path.join(install_dir, 'servo'))
1224 def build_and_install(self, install_dir, master_branch=False): argument
1238 local_chromite_dir = os.path.join(install_dir, 'chromite')
1257 def build_and_install(self, install_dir): argument
1267 local_devserver_dir = os.path.join(install_dir, 'devserver')
1316 def build_and_install(self, install_dir): argument
1327 rv = self._build_and_install_current_dir_setup_py(install_dir)