[Python-modules-commits] [python-virtualenv] 01/09: Import python-virtualenv_13.1.2+ds.orig.tar.gz

Barry Warsaw barry at moszumanska.debian.org
Thu Jan 14 15:36:54 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a commit to branch master
in repository python-virtualenv.

commit e92cbdff281c6cf2ca7da4af93d1cd55e8b600cf
Author: Barry Warsaw <barry at python.org>
Date:   Wed Jan 13 16:42:40 2016 -0500

    Import python-virtualenv_13.1.2+ds.orig.tar.gz
---
 PKG-INFO                        | 24 +++++++++++++++++++++++-
 docs/changes.rst                | 22 ++++++++++++++++++++++
 setup.cfg                       |  2 +-
 virtualenv.egg-info/PKG-INFO    | 24 +++++++++++++++++++++++-
 virtualenv.egg-info/SOURCES.txt |  4 ++--
 virtualenv.egg-info/pbr.json    |  2 +-
 virtualenv.py                   | 32 ++++++++++++++++----------------
 virtualenv_embedded/activate.sh | 16 ++++++++--------
 8 files changed, 96 insertions(+), 30 deletions(-)

diff --git a/PKG-INFO b/PKG-INFO
index ad756a3..635680b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: virtualenv
-Version: 13.0.3
+Version: 13.1.2
 Summary: Virtual Python Environment builder
 Home-page: https://virtualenv.pypa.io/
 Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,6 +47,28 @@ Description: Virtualenv
         Release History
         ===============
         
+        13.1.2 (2015-08-23)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.2.
+        
+        13.1.1 (2015-08-20)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.1.
+        
+        * Upgrade setuptools to 18.2.
+        
+        * Make the activate script safe to use when bash is running with ``-u``.
+        
+        13.1.0 (2015-06-30)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.0
+        
+        * Upgrade setuptools to 18.0.1
+        
+        
         13.0.3 (2015-06-01)
         ~~~~~~~~~~~~~~~~~~~
         
diff --git a/docs/changes.rst b/docs/changes.rst
index d85a4ba..80c3dc1 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -1,6 +1,28 @@
 Release History
 ===============
 
+13.1.2 (2015-08-23)
+~~~~~~~~~~~~~~~~~~~
+
+* Upgrade pip to 7.1.2.
+
+13.1.1 (2015-08-20)
+~~~~~~~~~~~~~~~~~~~
+
+* Upgrade pip to 7.1.1.
+
+* Upgrade setuptools to 18.2.
+
+* Make the activate script safe to use when bash is running with ``-u``.
+
+13.1.0 (2015-06-30)
+~~~~~~~~~~~~~~~~~~~
+
+* Upgrade pip to 7.1.0
+
+* Upgrade setuptools to 18.0.1
+
+
 13.0.3 (2015-06-01)
 ~~~~~~~~~~~~~~~~~~~
 
diff --git a/setup.cfg b/setup.cfg
index 6c71b61..3e89eac 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
 universal = 1
 
 [egg_info]
-tag_build = 
 tag_date = 0
 tag_svn_revision = 0
+tag_build = 
 
diff --git a/virtualenv.egg-info/PKG-INFO b/virtualenv.egg-info/PKG-INFO
index ad756a3..635680b 100644
--- a/virtualenv.egg-info/PKG-INFO
+++ b/virtualenv.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: virtualenv
-Version: 13.0.3
+Version: 13.1.2
 Summary: Virtual Python Environment builder
 Home-page: https://virtualenv.pypa.io/
 Author: Jannis Leidel, Carl Meyer and Brian Rosner
@@ -47,6 +47,28 @@ Description: Virtualenv
         Release History
         ===============
         
+        13.1.2 (2015-08-23)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.2.
+        
+        13.1.1 (2015-08-20)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.1.
+        
+        * Upgrade setuptools to 18.2.
+        
+        * Make the activate script safe to use when bash is running with ``-u``.
+        
+        13.1.0 (2015-06-30)
+        ~~~~~~~~~~~~~~~~~~~
+        
+        * Upgrade pip to 7.1.0
+        
+        * Upgrade setuptools to 18.0.1
+        
+        
         13.0.3 (2015-06-01)
         ~~~~~~~~~~~~~~~~~~~
         
diff --git a/virtualenv.egg-info/SOURCES.txt b/virtualenv.egg-info/SOURCES.txt
index b593e07..a4a8dad 100644
--- a/virtualenv.egg-info/SOURCES.txt
+++ b/virtualenv.egg-info/SOURCES.txt
@@ -35,6 +35,6 @@ virtualenv_embedded/distutils.cfg
 virtualenv_embedded/site.py
 virtualenv_support/__init__.py
 virtualenv_support/argparse-1.3.0-py2.py3-none-any.whl
-virtualenv_support/pip-7.0.3-py2.py3-none-any.whl
-virtualenv_support/setuptools-17.0-py2.py3-none-any.whl
+virtualenv_support/pip-7.1.2-py2.py3-none-any.whl
+virtualenv_support/setuptools-18.2-py2.py3-none-any.whl
 virtualenv_support/wheel-0.24.0-py2.py3-none-any.whl
\ No newline at end of file
diff --git a/virtualenv.egg-info/pbr.json b/virtualenv.egg-info/pbr.json
index 1eabf12..2ccbe6d 100644
--- a/virtualenv.egg-info/pbr.json
+++ b/virtualenv.egg-info/pbr.json
@@ -1 +1 @@
-{"git_version": "f330de3", "is_release": true}
\ No newline at end of file
+{"git_version": "134c9a6", "is_release": true}
\ No newline at end of file
diff --git a/virtualenv.py b/virtualenv.py
index cba2ec7..da25205 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -2,7 +2,7 @@
 """Create a "virtual" Python installation
 """
 
-__version__ = "13.0.3"
+__version__ = "13.1.2"
 virtualenv_version = __version__  # legacy
 
 import base64
@@ -2014,21 +2014,21 @@ AVijEPwfucjncQ==
 
 ##file activate.sh
 ACTIVATE_SH = convert("""
-eJytVVFvokAQfudXTLEPtTlLeo9tvMSmJpq02hSvl7u2wRUG2QR2DSxSe7n/frOACEVNLlceRHa+
-nfl25pvZDswCnoDPQ4QoTRQsENIEPci4CsBMZBq7CAsuLOYqvmYKTTj3YxnBgiXBudGBjUzBZUJI
-BXEqgCvweIyuCjeG4eF2F5x14bcB9KQiQQWrjSddI1/oQIx6SYYeoFjzWIoIhYI1izlbhJjkKO7D
-M/QEmKfO9O7WeRo/zr4P7pyHwWxkwitcgwpQ5Ej96OX+PmiFwLeVjFUOrNYKaq1Nud3nR2n8nI2m
-k9H0friPTGVsUdptaxGrTEfpNVFEskxpXtUkkCkl1UNF9cgLBkx48J4EXyALuBtAwNYIjF5kcmUU
-abMKmMq1ULoiRbgsDEkTSsKSGFCJ6Z8vY/2xYiSacmtyAfCDdCNTVZoVF8vSTQOoEwSnOrngBkws
-MYGMBMg8/bMBLSYKS7pYEXP0PqT+ZmBT0Xuy+Pplj5yn4aM9nk72JD8/Wi+Gr98sD9eWSMOwkapD
-BbUv91XSvmyVkICt2tmXR4tWmrcUCsjWOpw87YidEC8i0gdTSOFhouJUNxR+4NYBG0MftoCTD9F7
-2rTtxG3oPwY1b2HncYwhrlmj6Wq924xtGDWqfdNxap+OYxplEurnMVo9RWks+rH8qKEtx7kZT5zJ
-4H7oOFclrN6uFe+d+nW2aIUsSgs/42EIPuOhXq+jEo3S6tX6w2ilNkDnIpHCWdEQhFgwj9pkk7FN
-l/y5eQvRSIQ5+TrL05lewxWpt/Lbhes5cJF3mLET1MGhcKCF+40tNWnUulxrpojwDo2sObdje3Bz
-N3QeHqf3D7OjEXMVV8LN3ZlvuzoWHqiUcNKHtwNd0IbvPGKYYM31nPKCgkUILw3KL+Y8l7aO1ArS
-Ad37nIU0fCj5NE5gQCuC5sOSu+UdI2NeXg/lFkQIlFpdWVaWZRfvqGiirC9o6liJ9FXGYrSY9mI1
-D/Ncozgn13vJvsznr7DnkJWXsyMH7e42ljdJ+aqNDF1bFnKWFLdj31xtaJYK6EXFgqmV/ymD/ROG
-+n8O9H8f5vsGOWXsL1+1k3g=
+eJytVVFv2jAQfs+vuIY+lGo0Yo+tmEQ1JJBaqBrWaWurYJKDWAo2ShxSWvW/7+yEEAhl0tY8EOI7
+332++75zA8YhT2DGI4RFmiiYIqQJBpBxFYKdyDT2EaZcOMxXfMUU2nA+i+UCpiwJz60GrGUKPhNC
+KohTAVxBwGP0VbS2rAA3u+CsCW8W0JOKBBUs14H0LbPQgBj1kowCQLHisRQLFApWLOZsGmFivPgM
+HqElwD5980Y3372Hwf34R/fGu+uO+613G57hClSIwjjrRxs69mnN2S498GUpY2Ucy7UcXW2Tsc/4
+cSS/xv3RsD+67R3GU5prqEpLHVtpOopw14twFoU1vU1CmVJpA1TUFdM2YCKA1yT8AlnI/RBCtkJg
+9CKTLxcLbVYhU4YRRSjihc+iiJihJMwJATWa/s1krD+WjKhTbE0uAH4Se2SqCrPiYl6E2XHUBYJT
+XV/wQybmmEBGNGSB/lmDphSlJXYsCTkG+9W/7rqm9S1ZLPx2+95D794djIYHW2AO2Irh6zcnwJUj
+0ijaKdiHnXXbh1vqtmu9dNv1Jrrto90rzBsUucvG2hs+bLGdaGgGSwdsIUWAiYpTLTHcg9cAF6MZ
+bBxO9gC0tGmjzU32d4vknNt5HGOEK7Yjw4qad3NbVgVtx/a8yqfn2VZRh+qRrJrEqJK5PIuPirfj
+edeDoTfs3vY877Jwq6q3xL1Vgi4YrZBFaRFkPIpgxnik16teifbSTNZcxMVSrYHORYSFs1wc5DFl
+AUlmnbF1k+L5Rk40JGFCsc5MOdMruCQml3GbcDUBLozarAqtjsyIDxSty7I3H/aPamnm5EledZJq
+9b8P3O71Tc+7ux/d3o3/ktTQuWSwiWi/bLuZx6CGwkkHXj6QQ919GxGjBCuhJ1QdFGyB8LTT7id7
+YgiuM9WSNEBPA84iGkfUAhow0KUVQRNjzv3i7pExL66NYgsihEotLx0ny7KLV1Q0Y1YXNIecRM5U
+xmJ0mI7i7B7msQJxQqEPgn2aTJ7hwCHLKGdHDtrcbiyul+JVmR26vSziLMlvzY69XNN0FdBa5Au2
+5v+njPpPGPP/OeL/dbwfGu1Utz87Sp7q
 """)
 
 ##file activate.fish
diff --git a/virtualenv_embedded/activate.sh b/virtualenv_embedded/activate.sh
index e50c782..d8bb469 100644
--- a/virtualenv_embedded/activate.sh
+++ b/virtualenv_embedded/activate.sh
@@ -5,12 +5,12 @@ deactivate () {
     unset pydoc
 
     # reset old environment variables
-    if [ -n "$_OLD_VIRTUAL_PATH" ] ; then
+    if [ -n "${_OLD_VIRTUAL_PATH-}" ] ; then
         PATH="$_OLD_VIRTUAL_PATH"
         export PATH
         unset _OLD_VIRTUAL_PATH
     fi
-    if [ -n "$_OLD_VIRTUAL_PYTHONHOME" ] ; then
+    if [ -n "${_OLD_VIRTUAL_PYTHONHOME-}" ] ; then
         PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME"
         export PYTHONHOME
         unset _OLD_VIRTUAL_PYTHONHOME
@@ -19,18 +19,18 @@ deactivate () {
     # This should detect bash and zsh, which have a hash command that must
     # be called to get it to forget past commands.  Without forgetting
     # past commands the $PATH changes we made may not be respected
-    if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
+    if [ -n "${BASH-}" -o -n "${ZSH_VERSION-}" ] ; then
         hash -r 2>/dev/null
     fi
 
-    if [ -n "$_OLD_VIRTUAL_PS1" ] ; then
+    if [ -n "${_OLD_VIRTUAL_PS1-}" ] ; then
         PS1="$_OLD_VIRTUAL_PS1"
         export PS1
         unset _OLD_VIRTUAL_PS1
     fi
 
     unset VIRTUAL_ENV
-    if [ ! "$1" = "nondestructive" ] ; then
+    if [ ! "${1-}" = "nondestructive" ] ; then
     # Self destruct!
         unset -f deactivate
     fi
@@ -49,12 +49,12 @@ export PATH
 # unset PYTHONHOME if set
 # this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
 # could use `if (set -u; : $PYTHONHOME) ;` in bash
-if [ -n "$PYTHONHOME" ] ; then
+if [ -n "${PYTHONHOME-}" ] ; then
     _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME"
     unset PYTHONHOME
 fi
 
-if [ -z "$VIRTUAL_ENV_DISABLE_PROMPT" ] ; then
+if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then
     _OLD_VIRTUAL_PS1="$PS1"
     if [ "x__VIRTUAL_PROMPT__" != x ] ; then
         PS1="__VIRTUAL_PROMPT__$PS1"
@@ -75,6 +75,6 @@ alias pydoc="python -m pydoc"
 # This should detect bash and zsh, which have a hash command that must
 # be called to get it to forget past commands.  Without forgetting
 # past commands the $PATH changes we made may not be respected
-if [ -n "$BASH" -o -n "$ZSH_VERSION" ] ; then
+if [ -n "${BASH-}" -o -n "${ZSH_VERSION-}" ] ; then
     hash -r 2>/dev/null
 fi

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-virtualenv.git



More information about the Python-modules-commits mailing list