forked from pool/python-requests-cache
Accepting request 885485 from home:jayvdb:branches:devel:languages:python
- Fix runtime Requires, adding missing prefix python- - Add Recommends python-redis and Suggests for python-boto3 and python-mongodb - Activate integration tests, including redis - Update to v0.6.2 OBS-URL: https://build.opensuse.org/request/show/885485 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests-cache?expand=0&rev=11
This commit is contained in:
@@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 14 22:46:16 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
- Fix runtime Requires, adding missing prefix python-
|
||||||
|
- Add Recommends python-redis and Suggests for python-boto3 and
|
||||||
|
python-mongodb
|
||||||
|
- Activate integration tests, including redis
|
||||||
|
- Update to v0.6.2
|
||||||
|
* Explicitly include docs, tests, and examples in sdist
|
||||||
|
- from v0.6.1
|
||||||
|
* Handle errors due to invalid responses in BaseCache.urls
|
||||||
|
* Add recently renamed BaseCache.remove_old_entries() back, as an
|
||||||
|
alias with a DeprecationWarning
|
||||||
|
* Make parent dirs for new SQLite databases
|
||||||
|
* Add aws_access_key_id and aws_secret_access_key kwargs to
|
||||||
|
DynamoDbDict
|
||||||
|
* Update GridFSPickleDict.__delitem__ to raise a KeyError for
|
||||||
|
missing items
|
||||||
|
* Demote most logging.info statements to debug level
|
||||||
|
* Exclude test directory from find_packages()
|
||||||
|
* Make integration tests easier to run and/or fail more quickly in
|
||||||
|
environments where Docker isn't available
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 10 04:33:50 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
Sat Apr 10 04:33:50 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-requests-cache
|
Name: python-requests-cache
|
||||||
Version: 0.6.0
|
Version: 0.6.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Persistent cache for requests library
|
Summary: Persistent cache for requests library
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@@ -28,18 +28,24 @@ Source: https://files.pythonhosted.org/packages/source/r/requests-cache/
|
|||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: itsdangerous
|
Requires: python-itsdangerous
|
||||||
Requires: python-requests >= 2.0.0
|
Requires: python-requests >= 2.0.0
|
||||||
Requires: url-normalize >= 1.4
|
Requires: python-url-normalize >= 1.4
|
||||||
|
Recommends: python-redis
|
||||||
|
Suggests: python-boto3
|
||||||
|
Suggests: python-mongodb
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module gunicorn}
|
BuildRequires: %{python_module gunicorn}
|
||||||
BuildRequires: %{python_module httpbin}
|
BuildRequires: %{python_module httpbin}
|
||||||
BuildRequires: %{python_module itsdangerous}
|
BuildRequires: %{python_module itsdangerous}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module redis}
|
||||||
BuildRequires: %{python_module requests >= 2.0.0}
|
BuildRequires: %{python_module requests >= 2.0.0}
|
||||||
BuildRequires: %{python_module requests-mock}
|
BuildRequires: %{python_module requests-mock}
|
||||||
BuildRequires: %{python_module url-normalize >= 1.4}
|
BuildRequires: %{python_module url-normalize >= 1.4}
|
||||||
|
BuildRequires: %{python_module timeout-decorator}
|
||||||
|
BuildRequires: redis
|
||||||
# /SECTION
|
# /SECTION
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@@ -58,21 +64,19 @@ take a look at `CacheControl <https://github.com/ionrock/cachecontrol>`_.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n requests-cache-%{version}
|
%setup -q -n requests-cache-%{version}
|
||||||
sed -i '1{/^#!/d}' requests_cache/__init__.py
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%python_install
|
||||||
%{python_expand rm -r %{buildroot}%{$python_sitelib}/tests/
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
%fdupes %{buildroot}%{$python_sitelib}
|
|
||||||
}
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
gunicorn -b 127.0.0.1:8080 httpbin:app -k gevent &
|
gunicorn -b 127.0.0.1:8080 httpbin:app -k gevent &
|
||||||
|
%{_sbindir}/redis-server &
|
||||||
export HTTPBIN_URL=http://localhost:8080/
|
export HTTPBIN_URL=http://localhost:8080/
|
||||||
%pytest
|
%pytest -k 'not (dynamodb or gridfs or mongodb)'
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ba9b8b7893b15464d2bd35c40098c6f7561d77416068f15932ea9d223e1559ed
|
|
||||||
size 52342
|
|
3
requests-cache-0.6.2.tar.gz
Normal file
3
requests-cache-0.6.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:896fbf1deb9b94abc3672cf3f3530614af411c09eb2bcc5f51d44e5cea0a3e87
|
||||||
|
size 54355
|
Reference in New Issue
Block a user