Accepting request 647582 from devel:languages:python:aws

- Fix build for openSUSE Leap 42.3
  + urllib3 needs the ssl module, which in Leap 42.3 is delivered by python
    and not python-base. Set explicit build dependency on python

OBS-URL: https://build.opensuse.org/request/show/647582
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-botocore?expand=0&rev=34
This commit is contained in:
Dominique Leuenberger 2018-11-12 08:41:57 +00:00 committed by Git OBS Bridge
commit 9c5f5197c0
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Nov 7 12:56:44 UTC 2018 - Robert Schweikert <rjschwei@suse.com>
- Fix build for openSUSE Leap 42.3
+ urllib3 needs the ssl module, which in Leap 42.3 is delivered by python
and not python-base. Set explicit build dependency on python
-------------------------------------------------------------------
Tue Nov 6 14:15:47 UTC 2018 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@ -23,7 +23,7 @@ Release: 0
Summary: Python interface for AWS
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/boto/botocore
URL: https://github.com/boto/botocore
Source: https://files.pythonhosted.org/packages/source/b/botocore/botocore-%{version}.tar.gz
Patch0: hide_py_pckgmgmt.patch
BuildRequires: %{python_module docutils >= 0.10}
@ -44,6 +44,10 @@ Requires: python-python-dateutil >= 2.1
Requires: python-requests
Requires: python-six
BuildArch: noarch
%if 0%{?suse_version} <= 1315
# We need the ssl module, which is delivers by python and not python-base
BuildRequires: python
%endif
# SECTION Testing requirements
BuildRequires: %{python_module mock}
BuildRequires: %{python_module nose}