mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
python/pip: Updated for version 1.4.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
9c25ab7047
commit
dff549c070
2 changed files with 9 additions and 4 deletions
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=pip
|
||||
VERSION=${VERSION:-1.3.1}
|
||||
VERSION=${VERSION:-1.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -57,6 +57,11 @@ find . \
|
|||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
# Python 3 support.
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
|
||||
# Add bash completion file.
|
||||
install -D -m 644 $CWD/pip.sh $PKG/usr/share/bash-completion/completions/pip
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="pip"
|
||||
VERSION="1.3.1"
|
||||
VERSION="1.4"
|
||||
HOMEPAGE="http://www.pip-installer.org/"
|
||||
DOWNLOAD="https://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz"
|
||||
MD5SUM="cbb27a191cebc58997c4da8513863153"
|
||||
DOWNLOAD="https://pypi.python.org/packages/source/p/pip/pip-1.4.tar.gz"
|
||||
MD5SUM="ca790be30004937987767eac42cfa44a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="pysetuptools"
|
||||
|
|
Loading…
Reference in a new issue