python-pip.guncelleme
This commit is contained in:
parent
ebf82fd7fe
commit
8477543dcf
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue