aboutsummaryrefslogtreecommitdiffstats
path: root/community
diff options
context:
space:
mode:
authorAndré Klitzing <aklitzing@gmail.com>2017-07-16 00:27:13 +0200
committerTimo Teräs <timo.teras@iki.fi>2017-07-18 07:34:23 +0000
commit98b512f6e553ffacbffa590d19f3d4fb5cbdad5e (patch)
tree56c077148f1625a76acd3094181c3259b8f6553c /community
parent2a03ef848dd1a80476bbc66a83fab82c05153deb (diff)
downloadaports-98b512f6e553ffacbffa590d19f3d4fb5cbdad5e.tar.bz2
aports-98b512f6e553ffacbffa590d19f3d4fb5cbdad5e.tar.xz
main/py-urllib3: moved from community
Diffstat (limited to 'community')
-rw-r--r--community/py-urllib3/APKBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/community/py-urllib3/APKBUILD b/community/py-urllib3/APKBUILD
deleted file mode 100644
index d6ab3f9577..0000000000
--- a/community/py-urllib3/APKBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# Contributor: Yura Kushnir <kushnir.yura@gmail.com>
-# Maintainer: Yura Kushnir <kushnir.yura@gmail.com>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=py-urllib3
-_pkgname=${pkgname/py-/}
-pkgver=1.21.1
-pkgrel=0
-pkgdesc="HTTP library with thread-safe connection pooling, file post, and more."
-url="https://github.com/shazow/urllib3"
-arch="noarch"
-license="MIT"
-makedepends="python2-dev python3-dev py-setuptools"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-source="$pkgname-$pkgver.zip::https://github.com/shazow/urllib3/archive/$pkgver.zip"
-builddir="$srcdir"/$_pkgname-$pkgver
-
-check() {
- cd "$builddir"
- python2 setup.py check
- python3 setup.py check
-}
-
-build() {
- cd "$builddir"
- python2 setup.py build
- python3 setup.py build
-}
-
-package() {
- mkdir -p "$pkgdir"
-}
-
-_py2() {
- replaces="$pkgname"
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-_py() {
- local python="$1"
- pkgdesc="$pkgdesc (for $python)"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
-}
-
-sha512sums="01750e8f970d7cb31c155f2294172fdab8cbd311787b44a1d6dedb40b1b5e21d5c694f5f2ca3e24c68751f596f4ad6f3b9876d2614c46dde72b66c081b96a220 py-urllib3-1.21.1.zip"