From 1e947ad2a61c9f9fa2d3e8ce98d3499681bc761f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 18 Nov 2019 09:15:25 +0100 Subject: community/python-pip-bootstrap should be *only* in build-support (disabled, currently) --- .../disabled/python-pip-bootstrap/PKGBUILD | 16 +++++++------ community/python-pip-bootstrap/PKGBUILD | 28 ---------------------- community/python-pip-bootstrap/install.sh | 4 ---- community/python-pip-bootstrap/install2.sh | 4 ---- 4 files changed, 9 insertions(+), 43 deletions(-) delete mode 100644 community/python-pip-bootstrap/PKGBUILD delete mode 100644 community/python-pip-bootstrap/install.sh delete mode 100644 community/python-pip-bootstrap/install2.sh diff --git a/build-support/disabled/python-pip-bootstrap/PKGBUILD b/build-support/disabled/python-pip-bootstrap/PKGBUILD index 93c5d86e..f278e657 100644 --- a/build-support/disabled/python-pip-bootstrap/PKGBUILD +++ b/build-support/disabled/python-pip-bootstrap/PKGBUILD @@ -1,26 +1,28 @@ # Maintainer: Andreas Baumann pkgname=('python-pip-bootstrap' 'python2-pip-bootstrap') -pkgver=0.0.1 -pkgrel=1 +pkgver='19.3.1' +pkgrel='1' pkgdesc="bootstap pip and setuptools for bootstrapping python" -arch=(i486 'i686' 'x86_64' 'armv6h' 'armv7h') +arch=('x86_64' 'armv6h' 'armv7h') url="https://bootstrap.pypa.io/" -source=("https://bootstrap.pypa.io/get-pip.py") -sha512sums=('29971130c5d1d1baf2b51ef689b40c91fcd0d1e62de6f99d6abef6879684a59843be539cd112dfddc3637cc3d1a91c79f775d80f6aa2fe920252710d48d2934d') +source=("get-pip-${pkgver}.py::https://bootstrap.pypa.io/get-pip.py") +sha512sums=('d8744fcfa4dce749675632be0691a5e9bdac95e34d5b787bca6e635e2d6a25badbeb0b5f5ff6af1beb879604bdf060829805622a835a4b579967d806d3a642b5') package_python-pip-bootstrap() { + provides=("python-pip=${pkgver}") depends=('python') install=install.sh mkdir -p "${pkgdir}/usr/bin" - cp "${srcdir}/get-pip.py" "${pkgdir}/usr/bin/." + cp "${srcdir}/get-pip-${pkgver}.py" "${pkgdir}/usr/bin/." } package_python2-pip-bootstrap() { + provides=("python2-pip=${pkgver}") depends=('python2') install=install2.sh mkdir -p "${pkgdir}/usr/bin" - cp "${srcdir}/get-pip.py" "${pkgdir}/usr/bin/get-pip2.py" + cp "${srcdir}/get-pip-${pkgver}.py" "${pkgdir}/usr/bin/get-pip2.py" } diff --git a/community/python-pip-bootstrap/PKGBUILD b/community/python-pip-bootstrap/PKGBUILD deleted file mode 100644 index f278e657..00000000 --- a/community/python-pip-bootstrap/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: Andreas Baumann - -pkgname=('python-pip-bootstrap' 'python2-pip-bootstrap') -pkgver='19.3.1' -pkgrel='1' -pkgdesc="bootstap pip and setuptools for bootstrapping python" -arch=('x86_64' 'armv6h' 'armv7h') -url="https://bootstrap.pypa.io/" -source=("get-pip-${pkgver}.py::https://bootstrap.pypa.io/get-pip.py") -sha512sums=('d8744fcfa4dce749675632be0691a5e9bdac95e34d5b787bca6e635e2d6a25badbeb0b5f5ff6af1beb879604bdf060829805622a835a4b579967d806d3a642b5') - -package_python-pip-bootstrap() { - provides=("python-pip=${pkgver}") - depends=('python') - install=install.sh - - mkdir -p "${pkgdir}/usr/bin" - cp "${srcdir}/get-pip-${pkgver}.py" "${pkgdir}/usr/bin/." -} - -package_python2-pip-bootstrap() { - provides=("python2-pip=${pkgver}") - depends=('python2') - install=install2.sh - - mkdir -p "${pkgdir}/usr/bin" - cp "${srcdir}/get-pip-${pkgver}.py" "${pkgdir}/usr/bin/get-pip2.py" -} diff --git a/community/python-pip-bootstrap/install.sh b/community/python-pip-bootstrap/install.sh deleted file mode 100644 index e81432e6..00000000 --- a/community/python-pip-bootstrap/install.sh +++ /dev/null @@ -1,4 +0,0 @@ -post_install() { - echo "Bootstrapping python pip, setuptools and wheel.." - python /usr/bin/get-pip.py -} diff --git a/community/python-pip-bootstrap/install2.sh b/community/python-pip-bootstrap/install2.sh deleted file mode 100644 index b6aa16fa..00000000 --- a/community/python-pip-bootstrap/install2.sh +++ /dev/null @@ -1,4 +0,0 @@ -post_install() { - echo "Bootstrapping python2 pip, setuptools and wheel.." - python2 /usr/bin/get-pip2.py -} -- cgit v1.2.3