From d9b578c82731b0924392cdbf25d758afd12c9f6c Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Mon, 6 Oct 2014 12:45:23 +0200 Subject: [PATCH] new: [python-venv] remove distribute dependency. The project seems dead now. --- precise/python-venv/hooks/install | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/precise/python-venv/hooks/install b/precise/python-venv/hooks/install index e50d0f0..4badf28 100755 --- a/precise/python-venv/hooks/install +++ b/precise/python-venv/hooks/install @@ -26,9 +26,11 @@ PYTHON_BASE="/opt/apps/python-$VERSION" PYTHON_BIN="$PYTHON_BASE/bin" cd /tmp -wget http://python-distribute.org/distribute_setup.py -"$PYTHON_BIN"/python ./distribute_setup.py -"$PYTHON_BIN"/easy_install pip +## XXXvlab: distribute seems dead. +# wget http://python-distribute.org/distribute_setup.py +# "$PYTHON_BIN"/python ./distribute_setup.py +wget https://bootstrap.pypa.io/get-pip.py +"$PYTHON_BIN"/python ./get-pip.py "$PYTHON_BIN"/pip install virtualenv ##