X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 0E1BBDCF1E2 for ; Wed, 3 Jun 2015 06:04:46 +0000 (UTC) Received: from mail-ie0-f178.google.com (mail-ie0-f178.google.com [209.85.223.178]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C5ADEDCF15B for ; Wed, 3 Jun 2015 06:04:40 +0000 (UTC) Received: by iesa3 with SMTP id a3so6034402ies.2 for ; Tue, 02 Jun 2015 23:04:40 -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:in-reply-to:references; bh=3RviNKzilr7Un+GAEm0Ki8uXhsHhSR+Cqgvpn15++PA=; b=YGIk1pa7DPtepF2eRAtZ4Ppy2jII3gqvXJDpqZmNFvfxUpNBfelnmjYlGwE7VXPhXt Wy7Mi4br+SKvnnlfCTFOr163UJ1dd6jGB7qS5PElnOjc/gbf8kEL4iONFQwK83nCnI2u Y8enoEWDRUDey0i/eYO9HVqtg+fDLHteslMm5Ch/V8Bd7VwEo+K1BWzegu7uTMgvOEN/ oqpfPaVW2ZMCiMn3UssIIS6SS186qhIFJzu7MGv3b9I+pJWOO3Eo8Y/+rQpUD3U3z6n1 1cYrJKBvCrOQbGnKSOcT7R4AOMSFknZbChs7sKbWirWTlfaXa43nZs1oPHv56t6s5q4W eSZg== X-Received: by 10.43.10.194 with SMTP id pb2mr17955065icb.31.1433311480500; Tue, 02 Jun 2015 23:04:40 -0700 (PDT) Received: from localhost.localdomain (97-90-234-80.dhcp.eucl.wi.charter.com. [97.90.234.80]) by mx.google.com with ESMTPSA id cy11sm11607921igc.14.2015.06.02.23.04.39 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 02 Jun 2015 23:04:39 -0700 (PDT) From: Peter Bui To: alpine-aports@lists.alpinelinux.org Cc: Peter Bui Subject: [alpine-aports] [PATCH 6/9] testing/py-oauth2client: new aport Date: Wed, 3 Jun 2015 01:04:08 -0500 Message-Id: <1433311451-26735-6-git-send-email-pnutzh4x0r@gmail.com> X-Mailer: git-send-email 2.4.1 In-Reply-To: <1433311451-26735-1-git-send-email-pnutzh4x0r@gmail.com> References: <1433311451-26735-1-git-send-email-pnutzh4x0r@gmail.com> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://github.com/google/oauth2client A client library for OAuth 2.0 --- testing/py-oauth2client/APKBUILD | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/py-oauth2client/APKBUILD diff --git a/testing/py-oauth2client/APKBUILD b/testing/py-oauth2client/APKBUILD new file mode 100644 index 0000000..63c0173 --- /dev/null +++ b/testing/py-oauth2client/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Peter Bui +# Maintainer: +pkgname=py-oauth2client +_pkgname=oauth2client +pkgver=1.4.11 +pkgrel=0 +pkgdesc="A client library for OAuth 2.0" +url="https://github.com/google/oauth2client" +arch="noarch" +license="Apache" +depends="python py-asn1 py-httplib2 py-asn1-modules py-rsa py-six" +depends_dev="" +makedepends="python-dev py-setuptools" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="ace6b6e4c9cd17fd611d9984d6746c7b oauth2client-1.4.11.tar.gz" +sha256sums="dcc9bfaa544791206ca86a2f311872f0c4c1e81b068775c3da16abe72a506873 oauth2client-1.4.11.tar.gz" +sha512sums="46e5b475fd032bc1de6cb4a404747a62988fc337c9c73a329cf4127fc4a1966124a506316fb4a4e90ea68e78103cab571cd42f9eb683ce1413c8a501ace5ed91 oauth2client-1.4.11.tar.gz" -- 2.4.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---