X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f42.google.com (mail-lf0-f42.google.com [209.85.215.42]) by lists.alpinelinux.org (Postfix) with ESMTP id A2F175C433C for ; Thu, 6 Oct 2016 13:44:28 +0000 (GMT) Received: by mail-lf0-f42.google.com with SMTP id l131so16659996lfl.2 for ; Thu, 06 Oct 2016 06:44:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=+hH5AYno3IEfbCvD0rabWxw8UWrAlIrCgRY2+q9zU4k=; b=LUbr6qFo0le+LiANNUQkc94GV1+Og8gSrOwWhX9zX1CQ/fOwJBAvfvxrCVAE4qfH7q k0a34U7Ggc5k+cr29j/BPzi8gTwjc54OCFARtKNgXel3gQXOMK8peRxU2EZ9wyNoy1Z8 Q3GT9lm0WlqX8B4f0RsmsioW58PIkLWSULUajeqk7YSdiwd1g+AQ2chW3QZDM/TZW6vd 3vs+Xu+4/OtoCQ6/dJOdD62IZj8dhL8WuMUv5Glaku4fstOc3iPd9QpHZTPdOp+4sv1V nxqVBcNB8tcvYG7Hmsx4uif2wBH3q6V1BCih9ks7RcDqRGh/8imb9FBzKNY1rV1Urr4s ilyg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=+hH5AYno3IEfbCvD0rabWxw8UWrAlIrCgRY2+q9zU4k=; b=ebm7GI/1Af71UJpZBdD6x4ADfCYq3mx5EFNM/TfWjrxREGMtytiNPJbnkR45lj+Cid mZVvokFPYV+myGlebLRPJrkSZFA1Uo1kmXIP9LfL7y/qt6tVZ3YjzbnvldGjOo5c8Raj ORGnbY+2HSuA5dIlpe8wqhbzSOFD88S7VnPGEwSf236v3low88L45voA04uKvobwF1nl Gps2B5MAzmZtTXaJ/l0+Uw+QuVEtRXQY8eVH9b3kaAtsdpvQgdys0reC2ni36Dywuxns OhoBdVFrl5UhWi+hDr/lwK3rp0R6WDF9GSsrXY1qKpOy5OglLLQ9GiDROgwYkauZorPX bQaA== X-Gm-Message-State: AA6/9Rnsrwnqa4oYzwXelioLhooOYVI6gUwsCSSf1JcpBpuCVftZTgik3tk04EfLfK4KdQ== X-Received: by 10.194.110.130 with SMTP id ia2mr11843604wjb.98.1475758152611; Thu, 06 Oct 2016 05:49:12 -0700 (PDT) Received: from alpdev.localdomain ([195.110.56.34]) by smtp.gmail.com with ESMTPSA id b8sm14366165wjq.40.2016.10.06.05.49.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Oct 2016 05:49:11 -0700 (PDT) From: Yura Kushnir To: alpine-aports@lists.alpinelinux.org Cc: Yura Kushnir Subject: [alpine-aports] [PATCH] testing/py-urllib3: new aport Date: Thu, 6 Oct 2016 13:14:28 +0000 Message-Id: <20161006131428.6592-1-kushnir.yura@gmail.com> X-Mailer: git-send-email 2.10.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://pypi.python.org/pypi/urllib3/ HTTP library with thread-safe connection pooling, file post, and more. --- testing/py-urllib3/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/py-urllib3/APKBUILD diff --git a/testing/py-urllib3/APKBUILD b/testing/py-urllib3/APKBUILD new file mode 100644 index 0000000..4043f37 --- /dev/null +++ b/testing/py-urllib3/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Yura Kushnir +# Maintainer: Yura Kushnir +pkgname=py-urllib3 +_pkgname=${pkgname/py-/} +pkgver=1.18 +pkgrel=0 +pkgdesc="HTTP library with thread-safe connection pooling, file post, and more." +url="https://github.com/shazow/urllib3" +arch="noarch" +license="MIT" +depends="" +depends_dev="" +makedepends="$depends_dev py-setuptools" +install="" +subpackages="" +source="$pkgname-$pkgver.zip::https://github.com/shazow/urllib3/archive/$pkgver.zip" +_builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$_builddir" + python setup.py build +} + +package() { + cd "$_builddir" + python setup.py install --root="$pkgdir" --optimize=1 +} +md5sums="a5c3fd74a8d72803b0a9b19bdcb4d99f py-urllib3-1.18.zip" +sha256sums="24b0213a304ebd4da902dfdcc5a9cc6abff788f6f10e85aea5f77b463bb72e15 py-urllib3-1.18.zip" +sha512sums="535639543c5258be236f2098c74d0e089687a82f9c39c77d967da5e57f5cdc42506375bf4ee5ee209b57f9b0a4e56144a38e3addff6754ff380fe3fc20b5aaab py-urllib3-1.18.zip" -- 2.10.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---