Skip to content

Commit

Permalink
Merge pull request #10035 from daniviga/master
Browse files Browse the repository at this point in the history
[RPM] Fix a dependency on older Fedora releases
  • Loading branch information
m-kuhn committed May 21, 2019
2 parents 92691f9 + f7722e3 commit 58c82c3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rpm/qgis.spec.template
Expand Up @@ -179,7 +179,13 @@ Obsoletes: python2-%{name} < %{version}-%{release}
Summary: Python integration and plug-ins for QGIS
Requires: %{name}%{?_isa} = %{combinedversion}-%{release}
Requires: gdal-python3
# Starting from Fedora 30 python2-gdal package
# has been renamed to gdal-python-tools
%if 0%{?fedora} >= 30
Requires: gdal-python-tools
%else
Requires: python2-gdal
%endif
Requires: python3-future
Requires: python3-jinja2
Requires: python3-OWSLib
Expand Down

0 comments on commit 58c82c3

Please sign in to comment.