Sync from SUSE:ALP:Source:Standard:1.0 python-google-auth-httplib2 revision 4021b6b1d16d92745320a807530536b9

This commit is contained in:
Adrian Schröter 2024-01-05 09:50:09 +01:00
commit 7b6adf88b3
4 changed files with 142 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
google-auth-httplib2-0.2.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,51 @@
-------------------------------------------------------------------
Sat Dec 16 20:16:51 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.2.0:
* Add support for Python 3.12 (#126)
* Remove third-party mock library (#124)
- drop python-google-auth-httplib2-no-mock.patch (upstream)
-------------------------------------------------------------------
Mon Sep 18 14:42:19 UTC 2023 - pgajdos@suse.com
- version update to 0.1.1
* remove six, update python versions
- modified patches
% python-google-auth-httplib2-no-mock.patch (refreshed)
-------------------------------------------------------------------
Sun Jul 2 12:51:06 UTC 2023 - ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
-------------------------------------------------------------------
Wed Jun 8 11:42:08 UTC 2022 - pgajdos@suse.com
- do not require python-mock for build
- added patches
fix https://github.com/googleapis/google-auth-library-python-httplib2/issues/68
+ python-google-auth-httplib2-no-mock.patch
-------------------------------------------------------------------
Mon Aug 23 11:45:51 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.1.0
* chore: release 0.1.0 (#22)
* feat: add close method (#14)
* build: migrate to flakybot (#21)
* chore: use nox and kokoro (#16)
* Add renovate.json (#15)
* Fix the signature of AuthorizedHttp.request to match
the signature of the request in httplib2 (#13)
* Expose redirect_codes on AuthorizedHttp. (#12)
- from version 0.0.4
* Release 0.0.4 (#11)
* feat: expose a few httplib2 properties and a method (#9)
* Bug: Catch any underlying exceptions from http.HTTPException (#7)
- Update BuildRequires and Requires from setup.py
-------------------------------------------------------------------
Thu Mar 14 16:31:27 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Initial commit, needed by google-api-python-client

View File

@ -0,0 +1,65 @@
#
# spec file for package python-google-auth-httplib2
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-google-auth-httplib2
Version: 0.2.0
Release: 0
Summary: Google Authentication Library: httplib2 transport
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2
Source: https://files.pythonhosted.org/packages/source/g/google-auth-httplib2/google-auth-httplib2-%{version}.tar.gz
BuildRequires: %{python_module Flask}
BuildRequires: %{python_module google-auth}
BuildRequires: %{python_module httplib2 >= 0.15.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest-localserver}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-google-auth
Requires: python-httplib2 >= 0.15.0
BuildArch: noarch
%python_subpackages
%description
This library provides an `httplib2`_ transport for `google-auth`_.
%prep
%autosetup -p1 -n google-auth-httplib2-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/google_auth_httplib2.py
%pycache_only %{python_sitelib}/__pycache__/google_auth_httplib*
%{python_sitelib}/google_auth_httplib2-%{version}.dist-info
%changelog