Lines Matching refs:egg_path
252 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
253 if not egg_path:
255 return self._install_from_egg(install_dir, egg_path)
260 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
261 if not egg_path:
263 return self._install_from_egg(install_dir, egg_path)
376 def _install_from_egg(self, install_dir, egg_path): argument
384 status = system("unzip -q -o -d '%s' '%s'" % (install_dir, egg_path))
386 logging.error('unzip of %s failed', egg_path)
621 egg_path = self._build_egg_using_setup_py()
622 if not egg_path:
635 shutil.copy(egg_path, temp_dir)
636 egg_name = os.path.split(egg_path)[1]