[arch-commits] Commit in python-google-api-python-client/repos (2 files)
Andrzej Giniewicz
aginiewicz at archlinux.org
Sun Sep 20 07:23:10 UTC 2015
Date: Sunday, September 20, 2015 @ 09:23:10
Author: aginiewicz
Revision: 141194
archrelease: copy trunk to community-staging-any
Added:
python-google-api-python-client/repos/community-staging-any/
python-google-api-python-client/repos/community-staging-any/PKGBUILD
(from rev 141193, python-google-api-python-client/trunk/PKGBUILD)
----------+
PKGBUILD | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
Copied: python-google-api-python-client/repos/community-staging-any/PKGBUILD (from rev 141193, python-google-api-python-client/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-20 07:23:10 UTC (rev 141194)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: shadyabhi <abhijeet.1989 at gmail.com>
+
+pkgbase=python-google-api-python-client
+pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client"
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools' 'python2-httplib2'
+ 'python2-oauth2client' 'python2-uritemplate' 'python2-six'
+ 'python-httplib2' 'python-oauth2client' 'python-uritemplate'
+ 'python-six')
+source=("https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz")
+md5sums=('7033985a645e39d3ccf1b2971ab7b6b8')
+
+prepare() {
+ cd "$srcdir"
+ cp -a google-api-python-client-${pkgver} google-api-python-client-py2-${pkgver}
+ cd google-api-python-client-py2-${pkgver}
+
+ sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+ -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+ -i $(find . -name '*.py')
+}
+
+build() {
+ cd "$srcdir/google-api-python-client-$pkgver"
+
+ msg "Building Python2"
+ cd "$srcdir"/google-api-python-client-py2-${pkgver}
+ python2 setup.py build
+
+ msg "Building Python3"
+ cd "$srcdir"/google-api-python-client-${pkgver}
+ python setup.py build
+}
+
+package_python2-google-api-python-client() {
+ depends=('python2-httplib2' 'python2-oauth2client' 'python2-uritemplate' 'python2-six')
+ cd "$srcdir/google-api-python-client-py2-$pkgver"
+
+ python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
+package_python-google-api-python-client() {
+ depends=('python-httplib2' 'python-oauth2client' 'python-uritemplate' 'python-six')
+ cd "$srcdir/google-api-python-client-$pkgver"
+
+ python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
More information about the arch-commits
mailing list