+ Conform with openSUSE/SUSE naming policy - Upgrade to version 1.5.4 (bsc#1002895) + Properly handle errors when the API returns a mapping or sequence. (#289) + Upgrade to unified uritemplate 3.0.0. (#293) + Allow oauth2client 4.0.0, with the caveat that file-based discovery caching is disabled. - From 1.5.2 + Allow using oauth2client >= 1.5.0, < 4.0.0. (#265) + Fix project_id argument description. (#257) + Retry chunk uploaded on rate limit exceeded errors. (#255) + Obtain access token if necessary in BatchHttpRequest.execute(). (#232) + Warn when running tests using HttpMock without having a cache. (#261) - From 1.5.1 + Allow using versions of oauth2client < 2.0.0. (#197) + Check both current and new API discovery URL. (#202) + Retry http requests on connection errors and timeouts. (#218) + Retry http requests on rate limit responses. (#201) + Import guards for ssl (for Google App Engine). (#220) + Use named loggers instead of the root logger. (#206) + New search console example. (#212) - From 1.5.0 + Fix file stream recognition in Python 3 (#141) + Fix non-resumable binary uploads in Python 3 (#147) + Default to 'octet-stream' if mimetype detection fails (#157) + Handle SSL errors with retries (#160) + Fix incompatibility with oauth2client v2.0.0 (#182) - Upgrade to version 1.4.2 (bsc#954690) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-google-api-python-client?expand=0&rev=3
83 lines
2.7 KiB
RPMSpec
83 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-google-api-python-client
|
|
#
|
|
# Copyright (c) 2016 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/
|
|
#
|
|
|
|
|
|
Name: python-google-api-python-client
|
|
Version: 1.5.4
|
|
Release: 0
|
|
Summary: Google APIs Python Client
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/google/google-api-python-client
|
|
Source0: google-api-python-client-%{version}.tar.gz
|
|
Patch0: hidePythonDeps.patch
|
|
Requires: python
|
|
Requires: python-httplib2 >= 0.8
|
|
Requires: python-oauth2client >= 1.5.0
|
|
Requires: python-six >= 1.6.1
|
|
Requires: python-uritemplate >= 3.0.0
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-mock
|
|
BuildRequires: python-nose
|
|
BuildRequires: python-oauth2client
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: python-unittest2
|
|
BuildRequires: python-uritemplate
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%else
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
# Package renamed in SLE 12, do not remove Provides, Obsolete directives
|
|
# until after SLE 12 EOL
|
|
Provides: google-api-python-client = %{version}
|
|
Obsoletes: google-api-python-client < %{version}
|
|
|
|
%description
|
|
Google APIs Client Library for Python
|
|
|
|
%package test
|
|
Summary: Tests for google-api-python-client
|
|
Group: Development/Libraries/Python
|
|
PreReq: google-api-python-client = %version
|
|
Requires: python-nose
|
|
|
|
%description test
|
|
Package provides the unit tests for google-api-python-client
|
|
|
|
%prep
|
|
%setup -q -n google-api-python-client-%{version}
|
|
%patch0
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%check
|
|
nosetests --with-coverage --cover-package=googleapiclient --nocapture --cover-erase --cover-tests --cover-branches --cover-min-percentage=85
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc CHANGELOG LICENSE README.md
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|