forked from mirrors/gecko-dev
Downloaded from https://pypi.python.org/packages/source/v/virtualenv/virtualenv-14.0.1.tar.gz and extracted without any modifications. This appears to speed up `mach configure` for artifact builds by ~3.3s on my Linux machine (~16.3s to 13.0s). A significant part of this appears to be newer version of pip caching and reusing wheels after first install. This should be a rubber stamp review, as all changes are from trusted upstream packages. --HG-- extra : rebase_source : a38af27ab45f21e9ea943fcd23655b3ce51ffdd8
36 lines
1 KiB
Tcsh
36 lines
1 KiB
Tcsh
# This file must be used with "source bin/activate.csh" *from csh*.
|
|
# You cannot run it directly.
|
|
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
|
|
|
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc'
|
|
|
|
# Unset irrelevant variables.
|
|
deactivate nondestructive
|
|
|
|
setenv VIRTUAL_ENV "__VIRTUAL_ENV__"
|
|
|
|
set _OLD_VIRTUAL_PATH="$PATH"
|
|
setenv PATH "$VIRTUAL_ENV/__BIN_NAME__:$PATH"
|
|
|
|
|
|
|
|
if ("__VIRTUAL_PROMPT__" != "") then
|
|
set env_name = "__VIRTUAL_PROMPT__"
|
|
else
|
|
set env_name = `basename "$VIRTUAL_ENV"`
|
|
endif
|
|
|
|
# Could be in a non-interactive environment,
|
|
# in which case, $prompt is undefined and we wouldn't
|
|
# care about the prompt anyway.
|
|
if ( $?prompt ) then
|
|
set _OLD_VIRTUAL_PROMPT="$prompt"
|
|
set prompt = "[$env_name] $prompt"
|
|
endif
|
|
|
|
unset env_name
|
|
|
|
alias pydoc python -m pydoc
|
|
|
|
rehash
|
|
|