mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
969926b307
--HG-- rename : other-licenses/virtualenv/AUTHORS.txt => python/virtualenv/AUTHORS.txt rename : other-licenses/virtualenv/LICENSE.txt => python/virtualenv/LICENSE.txt rename : other-licenses/virtualenv/MANIFEST.in => python/virtualenv/MANIFEST.in rename : other-licenses/virtualenv/PKG-INFO => python/virtualenv/PKG-INFO rename : other-licenses/virtualenv/docs/index.txt => python/virtualenv/docs/index.txt rename : other-licenses/virtualenv/docs/news.txt => python/virtualenv/docs/news.txt rename : other-licenses/virtualenv/scripts/virtualenv => python/virtualenv/scripts/virtualenv rename : other-licenses/virtualenv/setup.cfg => python/virtualenv/setup.cfg rename : other-licenses/virtualenv/setup.py => python/virtualenv/setup.py rename : other-licenses/virtualenv/virtualenv.py => python/virtualenv/virtualenv.py rename : other-licenses/virtualenv/virtualenv_embedded/activate.bat => python/virtualenv/virtualenv_embedded/activate.bat rename : other-licenses/virtualenv/virtualenv_embedded/activate.csh => python/virtualenv/virtualenv_embedded/activate.csh rename : other-licenses/virtualenv/virtualenv_embedded/activate.fish => python/virtualenv/virtualenv_embedded/activate.fish rename : other-licenses/virtualenv/virtualenv_embedded/activate.ps1 => python/virtualenv/virtualenv_embedded/activate.ps1 rename : other-licenses/virtualenv/virtualenv_embedded/activate.sh => python/virtualenv/virtualenv_embedded/activate.sh rename : other-licenses/virtualenv/virtualenv_embedded/activate_this.py => python/virtualenv/virtualenv_embedded/activate_this.py rename : other-licenses/virtualenv/virtualenv_embedded/deactivate.bat => python/virtualenv/virtualenv_embedded/deactivate.bat rename : other-licenses/virtualenv/virtualenv_embedded/distribute_setup.py => python/virtualenv/virtualenv_embedded/distribute_setup.py rename : other-licenses/virtualenv/virtualenv_embedded/distutils-init.py => python/virtualenv/virtualenv_embedded/distutils-init.py rename : other-licenses/virtualenv/virtualenv_embedded/distutils.cfg => python/virtualenv/virtualenv_embedded/distutils.cfg rename : other-licenses/virtualenv/virtualenv_embedded/ez_setup.py => python/virtualenv/virtualenv_embedded/ez_setup.py rename : other-licenses/virtualenv/virtualenv_embedded/site.py => python/virtualenv/virtualenv_embedded/site.py rename : other-licenses/virtualenv/virtualenv_support/__init__.py => python/virtualenv/virtualenv_support/__init__.py rename : other-licenses/virtualenv/virtualenv_support/distribute-0.6.27.tar.gz => python/virtualenv/virtualenv_support/distribute-0.6.27.tar.gz rename : other-licenses/virtualenv/virtualenv_support/pip-1.1.tar.gz => python/virtualenv/virtualenv_support/pip-1.1.tar.gz rename : other-licenses/virtualenv/virtualenv_support/setuptools-0.6c11-py2.4.egg => python/virtualenv/virtualenv_support/setuptools-0.6c11-py2.4.egg rename : other-licenses/virtualenv/virtualenv_support/setuptools-0.6c11-py2.5.egg => python/virtualenv/virtualenv_support/setuptools-0.6c11-py2.5.egg rename : other-licenses/virtualenv/virtualenv_support/setuptools-0.6c11-py2.6.egg => python/virtualenv/virtualenv_support/setuptools-0.6c11-py2.6.egg rename : other-licenses/virtualenv/virtualenv_support/setuptools-0.6c11-py2.7.egg => python/virtualenv/virtualenv_support/setuptools-0.6c11-py2.7.egg
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
"""By using execfile(this_file, dict(__file__=this_file)) you will
|
|
activate this virtualenv environment.
|
|
|
|
This can be used when you must use an existing Python interpreter, not
|
|
the virtualenv bin/python
|
|
"""
|
|
|
|
try:
|
|
__file__
|
|
except NameError:
|
|
raise AssertionError(
|
|
"You must run this like execfile('path/to/activate_this.py', dict(__file__='path/to/activate_this.py'))")
|
|
import sys
|
|
import os
|
|
|
|
old_os_path = os.environ['PATH']
|
|
os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + os.pathsep + old_os_path
|
|
base = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
if sys.platform == 'win32':
|
|
site_packages = os.path.join(base, 'Lib', 'site-packages')
|
|
else:
|
|
site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages')
|
|
prev_sys_path = list(sys.path)
|
|
import site
|
|
site.addsitedir(site_packages)
|
|
sys.real_prefix = sys.prefix
|
|
sys.prefix = base
|
|
# Move the added items to the front of the path:
|
|
new_sys_path = []
|
|
for item in list(sys.path):
|
|
if item not in prev_sys_path:
|
|
new_sys_path.append(item)
|
|
sys.path.remove(item)
|
|
sys.path[:0] = new_sys_path
|