diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:14:36 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 07:14:36 +0000 |
commit | 62bbdd53e27a31fdac027f108ee315c02c640dc6 (patch) | |
tree | 7d425cbc659cb37c26145f8a4fe0e6703d1fcfa7 | |
parent | 6384967d3124b6c57ad9c0bf96668c50230b4051 (diff) |
automatic import of python-google-auth
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-google-auth.spec | 92 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 94 insertions, 0 deletions
@@ -0,0 +1 @@ +/google-auth-2.17.2.tar.gz diff --git a/python-google-auth.spec b/python-google-auth.spec new file mode 100644 index 0000000..bdd07ed --- /dev/null +++ b/python-google-auth.spec @@ -0,0 +1,92 @@ +%global _empty_manifest_terminate_build 0 +Name: python-google-auth +Version: 2.17.2 +Release: 1 +Summary: Google Authentication Library +License: Apache 2.0 +URL: https://github.com/googleapis/google-auth-library-python +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e2/bb/d809c7f2ed33c27bd2902dfce8ee1d3c7cac85ec80c11d365c755584aa55/google-auth-2.17.2.tar.gz +BuildArch: noarch + +Requires: python3-cachetools +Requires: python3-pyasn1-modules +Requires: python3-six +Requires: python3-enum34 +Requires: python3-rsa +Requires: python3-rsa +Requires: python3-requests +Requires: python3-aiohttp +Requires: python3-cryptography +Requires: python3-pyopenssl +Requires: python3-pyopenssl +Requires: python3-cryptography +Requires: python3-pyu2f +Requires: python3-requests + +%description +|pypi| +This library simplifies using Google's various server-to-server authentication +mechanisms to access Google APIs. + +%package -n python3-google-auth +Summary: Google Authentication Library +Provides: python-google-auth +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-google-auth +|pypi| +This library simplifies using Google's various server-to-server authentication +mechanisms to access Google APIs. + +%package help +Summary: Development documents and examples for google-auth +Provides: python3-google-auth-doc +%description help +|pypi| +This library simplifies using Google's various server-to-server authentication +mechanisms to access Google APIs. + +%prep +%autosetup -n google-auth-2.17.2 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-google-auth -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.17.2-1 +- Package Spec generated @@ -0,0 +1 @@ +dca9e22f113d7cf5299ace07659170d0 google-auth-2.17.2.tar.gz |