python-pip: s/distribute/setuptools/, increase PKGREL

Conflicts:
	python-pip/PKGBUILD
This commit is contained in:
totte 2013-10-16 20:08:23 +00:00
parent eab84b5608
commit 858918c02a

View File

@ -1,4 +1,3 @@
# Apps Packages for Chakra, part of www.chakra-project.org
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Neophytos Kolokotronis (tetris4) <tetris4@gmail.com>
# Stephen McIntosh <stephenmac7@gmail.com>
@ -7,17 +6,17 @@
pkgname=('python3-pip' 'python2-pip')
pkgver=1.4.1
pkgrel=1
pkgrel=2
pkgdesc="An easy_install replacement for installing pypi python packages"
url="http://www.pip-installer.org/"
arch=('any')
license=('MIT')
makedepends=('python3' 'python3-distribute' 'python2' 'python2-distribute')
makedepends=('python3' 'python3-setuptools' 'python2' 'python2-setuptools')
source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
md5sums=('6afbb46aeb48abac658d4df742bff714')
package_python3-pip() {
depends=('python3' 'python3-distribute')
depends=('python3' 'python3-setuptools')
cd "$srcdir/pip-$pkgver"
python3 setup.py build
@ -34,7 +33,7 @@ package_python3-pip() {
}
package_python2-pip() {
depends=('python2' 'python2-distribute')
depends=('python2' 'python2-setuptools')
cd "$srcdir/pip-$pkgver"
python2 setup.py build