commit 91c8408225bd32c58b3509039195d81c4d411a0247df244ce63c0cb61fde2160 Author: Ondřej Súkup Date: Sun Nov 19 19:18:26 2017 +0000 Accepting request 542949 from home:mcalmer:branches:devel:languages:python new package OBS-URL: https://build.opensuse.org/request/show/542949 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-google-auth?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/google-auth-1.2.1.tar.gz b/google-auth-1.2.1.tar.gz new file mode 100644 index 0000000..8eabfd0 --- /dev/null +++ b/google-auth-1.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7170435cf6aa451be7e96120b9e37e8dbc59d3e8f3bab5b57a8fabbb29bf3810 +size 69797 diff --git a/python-google-auth.changes b/python-google-auth.changes new file mode 100644 index 0000000..78f71df --- /dev/null +++ b/python-google-auth.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Sun Nov 19 15:22:10 UTC 2017 - mc@suse.com + +- initial version 1.2.1 diff --git a/python-google-auth.spec b/python-google-auth.spec new file mode 100644 index 0000000..244ab8d --- /dev/null +++ b/python-google-auth.spec @@ -0,0 +1,65 @@ +# +# spec file for package python-google-auth +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-google-auth +Version: 1.2.1 +Release: 0 +Summary: Google Authentication Library +License: Apache-2.0 +Group: Development/Languages/Python +Url: https://github.com/GoogleCloudPlatform/google-auth-library-python +Source: https://pypi.python.org/packages/83/f2/9dc87be31962a58c84e844c1f47d52a4e2811ba2e15253a036be3ae8acd8/google-auth-%{version}.tar.gz +BuildRequires: %{python_module cachetools} +BuildRequires: %{python_module devel} +BuildRequires: %{python_module pyasn1-modules} +BuildRequires: %{python_module pyasn1} +BuildRequires: %{python_module rsa} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module six} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-cachetools +Requires: python-pyasn1 +Requires: python-pyasn1-modules +Requires: python-rsa +Requires: python-setuptools +Requires: python-six +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch + +%python_subpackages + +%description +This library simplifies using Google’s various server-to-server authentication mechanisms to access Google APIs. + +%prep +%setup -q -n google-auth-%{version} + +%build +%python_build + +%install +%python_install +%fdupes %{buildroot}%{_prefix} + +%files %{python_files} +%defattr(-,root,root,-) +%{python_sitelib}/* + +%changelog