Lines Matching refs:install_dir
112 def is_needed(self, install_dir): argument
143 if (not module.__file__.startswith(install_dir) and
147 self.module_name, module.__file__, install_dir,
148 install_dir)
168 def _build_and_install(self, install_dir): argument
173 def _build_and_install_current_dir(self, install_dir): argument
181 def build_and_install(self, install_dir): argument
191 return self._build_and_install(install_dir)
210 def _build_and_install_current_dir_setup_py(self, install_dir): argument
215 return self._install_from_egg(install_dir, egg_path)
218 def _build_and_install_current_dir_setupegg_py(self, install_dir): argument
223 return self._install_from_egg(install_dir, egg_path)
226 def _build_and_install_current_dir_noegg(self, install_dir): argument
229 return self._install_using_setup_py_and_rsync(install_dir)
232 def _build_and_install_from_package(self, install_dir): argument
262 return self._build_and_install_current_dir(install_dir)
328 def _install_from_egg(self, install_dir, egg_path): argument
336 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
340 egg_info = os.path.join(install_dir, 'EGG-INFO')
357 def _rsync (self, temp_site_dir, install_dir): argument
361 os.path.normpath(install_dir)))
368 def _install_using_setup_py_and_rsync(self, install_dir, argument
409 return self._rsync(temp_site_dir, install_dir)
415 def _build_using_make(self, install_dir): argument
420 install_prefix = os.path.join(install_dir, 'usr', 'local')
543 def _build_and_install(self, install_dir): argument
546 return self._build_and_install_from_package(install_dir)
549 def _build_and_install_current_dir(self, install_dir): argument
599 def _build_and_install(self, install_dir): argument
606 return self._build_and_install_from_package(install_dir)
702 def _build_and_install_current_dir(self, install_dir): argument
709 status = system("rsync -r 'paramiko' '%s/'" % install_dir)
775 def is_needed(self, install_dir): argument
776 gwt_dir = os.path.join(install_dir, self.name)
777 about_file = os.path.join(install_dir, self.name, self.about_filename)
796 def _build_and_install(self, install_dir): argument
797 os.chdir(install_dir)
800 target_dir = os.path.join(install_dir, self.name)
1056 def _build_and_install(self, install_dir): argument
1066 return self._build_and_install_from_package(install_dir)
1144 def build_and_install(self, install_dir): argument
1151 rv = self._rsync(servo_dir, os.path.join(install_dir, 'servo'))
1161 def build_and_install(self, install_dir): argument
1171 local_chromite_dir = os.path.join(install_dir, 'chromite')
1190 def build_and_install(self, install_dir): argument
1200 local_devserver_dir = os.path.join(install_dir, 'devserver')
1249 def build_and_install(self, install_dir): argument
1260 rv = self._build_and_install_current_dir_setup_py(install_dir)