Date: Wednesday, October 26, 2022 @ 23:59:13
  Author: felixonmars
Revision: 1337954

archrelease: copy trunk to community-any

Added:
  python-google-auth/repos/community-any/PKGBUILD
    (from rev 1337953, python-google-auth/trunk/PKGBUILD)
  python-google-auth/repos/community-any/pytest5.patch
    (from rev 1337953, python-google-auth/trunk/pytest5.patch)
Deleted:
  python-google-auth/repos/community-any/PKGBUILD
  python-google-auth/repos/community-any/pytest5.patch

---------------+
 PKGBUILD      |   72 ++++++++++++++++++++++++++++----------------------------
 pytest5.patch |   36 ++++++++++++++--------------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-10-26 23:59:04 UTC (rev 1337953)
+++ PKGBUILD    2022-10-26 23:59:13 UTC (rev 1337954)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan <[email protected]>
-
-pkgname=python-google-auth
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Google Authentication Library"
-url="https://github.com/GoogleCloudPlatform/google-auth-library-python";
-license=('Apache')
-arch=('any')
-depends=('python-cachetools' 'python-certifi' 'python-pyasn1-modules' 
'python-rsa'
-         'python-setuptools')
-checkdepends=('python-pytest' 'python-mock' 'python-requests' 'python-flask'
-              'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
-              'python-freezegun' 'python-responses' 'python-pyopenssl' 
'python-pyu2f')
-source=("https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('2309e0defcda7ca01ba68ca75dd61196c628bdd5a35d9580f7c8fae77c0e1d41d180eae2ca200005c7e024c0f70d95c7bfe65960e5143b7b6f21415ecab23a88')
-
-prepare() {
-  cd google-auth-library-python-$pkgver
-  sed -i 's/from requests.packages.urllib3.util.ssl_ import/from 
urllib3.util.ssl_ import/' google/auth/transport/requests.py
-}
-
-build() {
-  cd google-auth-library-python-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd google-auth-library-python-$pkgver
-  python -m pytest tests
-}
-
-package() {
-  cd google-auth-library-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-google-auth/repos/community-any/PKGBUILD (from rev 1337953, 
python-google-auth/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-10-26 23:59:13 UTC (rev 1337954)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=python-google-auth
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="Google Authentication Library"
+url="https://github.com/GoogleCloudPlatform/google-auth-library-python";
+license=('Apache')
+arch=('any')
+depends=('python-cachetools' 'python-certifi' 'python-pyasn1-modules' 
'python-rsa'
+         'python-setuptools')
+checkdepends=('python-pytest' 'python-mock' 'python-requests' 'python-flask'
+              'python-oauth2client' 'python-pytest-localserver' 
'python-cryptography'
+              'python-freezegun' 'python-responses' 'python-pyopenssl' 
'python-pyu2f')
+source=("https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('478e832546d0b2f779688c5506e96efdaebc45194b9b878454b93cbd01006cb385778f4d260697cef10849c43d4571aac37d24f6b3d549f55eeedeea9e1ced55')
+
+prepare() {
+  cd google-auth-library-python-$pkgver
+  sed -i 's/from requests.packages.urllib3.util.ssl_ import/from 
urllib3.util.ssl_ import/' google/auth/transport/requests.py
+}
+
+build() {
+  cd google-auth-library-python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd google-auth-library-python-$pkgver
+  python -m pytest tests
+}
+
+package() {
+  cd google-auth-library-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}

Deleted: pytest5.patch
===================================================================
--- pytest5.patch       2022-10-26 23:59:04 UTC (rev 1337953)
+++ pytest5.patch       2022-10-26 23:59:13 UTC (rev 1337954)
@@ -1,18 +0,0 @@
-From 938e5d933aee963a6b28d6cf9e34e0634c8c4a29 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= <[email protected]>
-Date: Fri, 26 Jul 2019 01:20:41 +0200
-Subject: [PATCH] Use new pytest api to keep building with pytest 5 (#353)
-
-diff --git a/tests/test__default.py b/tests/test__default.py
-index 3fb0fa1..d143479 100644
---- a/tests/test__default.py
-+++ b/tests/test__default.py
-@@ -92,7 +92,7 @@ def 
test__load_credentials_from_file_authorized_user_bad_format(tmpdir):
- 
- 
- def test__load_credentials_from_file_authorized_user_cloud_sdk():
--    with pytest.warns(UserWarning, matches='Cloud SDK'):
-+    with pytest.warns(UserWarning, match='Cloud SDK'):
-         credentials, project_id = _default._load_credentials_from_file(
-             AUTHORIZED_USER_CLOUD_SDK_FILE)
-     assert isinstance(credentials, google.oauth2.credentials.Credentials)

Copied: python-google-auth/repos/community-any/pytest5.patch (from rev 1337953, 
python-google-auth/trunk/pytest5.patch)
===================================================================
--- pytest5.patch                               (rev 0)
+++ pytest5.patch       2022-10-26 23:59:13 UTC (rev 1337954)
@@ -0,0 +1,18 @@
+From 938e5d933aee963a6b28d6cf9e34e0634c8c4a29 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= <[email protected]>
+Date: Fri, 26 Jul 2019 01:20:41 +0200
+Subject: [PATCH] Use new pytest api to keep building with pytest 5 (#353)
+
+diff --git a/tests/test__default.py b/tests/test__default.py
+index 3fb0fa1..d143479 100644
+--- a/tests/test__default.py
++++ b/tests/test__default.py
+@@ -92,7 +92,7 @@ def 
test__load_credentials_from_file_authorized_user_bad_format(tmpdir):
+ 
+ 
+ def test__load_credentials_from_file_authorized_user_cloud_sdk():
+-    with pytest.warns(UserWarning, matches='Cloud SDK'):
++    with pytest.warns(UserWarning, match='Cloud SDK'):
+         credentials, project_id = _default._load_credentials_from_file(
+             AUTHORIZED_USER_CLOUD_SDK_FILE)
+     assert isinstance(credentials, google.oauth2.credentials.Credentials)

Reply via email to