From 8477543dcf73fa4cbbd88e02fbd0a0179917530a Mon Sep 17 00:00:00 2001 From: milisman Date: Tue, 31 May 2016 03:30:13 +0300 Subject: [PATCH] python-pip.guncelleme --- talimatname/genel/python-pip/talimat | 7 +++---- talimatname/genel/python3-pip/talimat | 18 ++++++++++++++++++ talimatname/genel/python3-setuptools/talimat | 16 ++++++++++++++++ 3 files changed, 37 insertions(+), 4 deletions(-) create mode 100644 talimatname/genel/python3-pip/talimat create mode 100644 talimatname/genel/python3-setuptools/talimat diff --git a/talimatname/genel/python-pip/talimat b/talimatname/genel/python-pip/talimat index 6071359e0..9a603f0cd 100644 --- a/talimatname/genel/python-pip/talimat +++ b/talimatname/genel/python-pip/talimat @@ -1,10 +1,9 @@ # Description: python-pip (easy_install replacement to install pypi python packages) -# URL: URL: http://www.pip-installer.org -# NuTyX package info file (http://nutyx.org) -# Packager: # NuTyX package info file (http://nutyx.org) +# URL: http://www.pip-installer.org +# Packager: milisarge # Depends on: python python-setuptools name=python-pip -version=1.5.6 +version=8.0.2 release=1 source=(http://pypi.python.org/packages/source/p/pip/pip-$version.tar.gz) diff --git a/talimatname/genel/python3-pip/talimat b/talimatname/genel/python3-pip/talimat new file mode 100644 index 000000000..ed14e879e --- /dev/null +++ b/talimatname/genel/python3-pip/talimat @@ -0,0 +1,18 @@ +# Description: python-pip (easy_install replacement to install pypi python packages) +# URL: http://www.pip-installer.org +# Packager: milisarge +# Depends on: python3 python3-setuptools +name=python3-pip +version=8.0.2 +release=1 + +source=(http://pypi.python.org/packages/source/p/pip/pip-$version.tar.gz) + +build() { + cd pip-$version + python3 setup.py install --prefix=/usr --root=$PKG + + mkdir -p $PKG/usr/share/doc/$name-$version + cp -Rf docs/* $PKG/usr/share/doc/$name-$version +} + diff --git a/talimatname/genel/python3-setuptools/talimat b/talimatname/genel/python3-setuptools/talimat new file mode 100644 index 000000000..376d02e2e --- /dev/null +++ b/talimatname/genel/python3-setuptools/talimat @@ -0,0 +1,16 @@ +# Description: Easily download, build, install, upgrade, and uninstall Python packages +# URL: https://bitbucket.org/pypa/setuptools +# Packager: milisarge +# Depends on: python3 + +name=python3-setuptools +version=6.0.2 +release=1 + +source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-$version.tar.gz) + +build() { + cd setuptools-$version + python3 setup.py build install --root=$PKG + rm $PKG/usr/bin/easy_install +}