Accepting request 740901 from home:StefanBruens:branches:devel:languages:python

- Remove runtime dependency for the full python3 package, as the
  actually required SSL module is in python3-base. For python(2),
  SSL is in the "full" python package. Avoids build loops and
  shortens the dependency chain for e.g. rust.

OBS-URL: https://build.opensuse.org/request/show/740901
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=184
This commit is contained in:
Matej Cepl 2019-10-18 14:05:58 +00:00 committed by Git OBS Bridge
parent d3d6dc0eec
commit 211f51d1c0
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu Oct 17 20:35:06 UTC 2019 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Remove runtime dependency for the full python3 package, as the
actually required SSL module is in python3-base. For python(2),
SSL is in the "full" python package. Avoids build loops and
shortens the dependency chain for e.g. rust.
-------------------------------------------------------------------
Wed Oct 16 13:58:35 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -45,9 +45,12 @@ BuildRequires: %{python_module xml}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: unzip
# needed for SLE
# The dependency download feature may require SSL, which is in python3-base and python(2)
%ifpython2
Requires: python
%endif
Requires: python-appdirs
Requires: python-base
Requires: python-ordered-set
Requires: python-packaging
Requires: python-six