[arch-commits] Commit in python-google-auth/repos (2 files)

Felix Yan felixonmars at archlinux.org
Thu Jun 7 09:51:14 UTC 2018


    Date: Thursday, June 7, 2018 @ 09:51:13
  Author: felixonmars
Revision: 341729

archrelease: copy trunk to community-any

Added:
  python-google-auth/repos/community-any/
  python-google-auth/repos/community-any/PKGBUILD
    (from rev 341728, python-google-auth/trunk/PKGBUILD)

----------+
 PKGBUILD |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

Copied: python-google-auth/repos/community-any/PKGBUILD (from rev 341728, python-google-auth/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2018-06-07 09:51:13 UTC (rev 341729)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-google-auth
+pkgname=(python-google-auth python2-google-auth)
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Google Authentication Library"
+url="https://github.com/GoogleCloudPlatform/google-auth-library-python"
+license=('Apache')
+arch=('any')
+makedepends=('ca-certificates' 'python-setuptools' 'python2-setuptools' 'python-pyasn1-modules'
+             'python2-pyasn1-modules' 'python-rsa' 'python2-rsa' 'python-six' 'python2-six'
+             'python-cachetools' 'python2-cachetools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 'python2-mock'
+              'python-requests' 'python2-requests' 'python-flask' 'python2-flask'
+              'python-oauth2client' 'python2-oauth2client' 'python-pytest-localserver'
+              'python2-pytest-localserver')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz")
+sha512sums=('3924332a5ffea4974ac65f46aa40912c2ce9306113c52001e208765080c16580d98e8953d0d81a239c8a906584bd7702de04c92fd7c8946803bb68223b43f31b')
+
+prepare() {
+  # Use system cert
+  sed -i -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+         -e 's|if certifi is not None:|if True:|' \
+         google-auth-library-python-$pkgver/google/auth/transport/urllib3.py
+  cp -a google-auth-library-python-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/google-auth-library-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/google-auth-library-python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Skip the without_certifi tests because we always have the system ca bundle
+
+  cd "$srcdir"/google-auth-library-python-$pkgver
+  python setup.py pytest --addopts "tests -k 'not test__make_default_http_without_certfi'"
+
+  cd "$srcdir"/google-auth-library-python-$pkgver-py2
+  python2 setup.py pytest --addopts "tests -k 'not test__make_default_http_without_certfi'"
+}
+
+package_python-google-auth() {
+  depends=('ca-certificates' 'python-pyasn1-modules' 'python-rsa' 'python-six' 'python-cachetools')
+
+  cd google-auth-library-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-google-auth() {
+  depends=('ca-certificates' 'python2-pyasn1-modules' 'python2-rsa' 'python2-six' 'python2-cachetools')
+
+  cd google-auth-library-python-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}



More information about the arch-commits mailing list