#1 Fix ambiguous Python 2 dependency declarations
Merged 6 years ago by churchyard. Opened 6 years ago by ishcherb.
rpms/ ishcherb/cura-lulzbot pyambiguous  into  master

file modified
+10 -6
@@ -1,6 +1,6 @@ 

  Name:           cura-lulzbot

  Version:        21.08

- Release:        2%{?dist}

+ Release:        3%{?dist}

  Summary:        Cura LulzBot Edition, 3D printer control software

  # Code is AGPLv3

  # Example models are CC-BY-SA
@@ -34,11 +34,11 @@ 

  BuildRequires:  dos2unix

  BuildRequires:  desktop-file-utils

  BuildRequires:  gettext

- Requires:       PyOpenGL

- Requires:       wxPython

- Requires:       pyserial

- Requires:       numpy

- Requires:       python-power

+ Requires:       python2-pyopengl

+ Requires:       python2-wxpython

+ Requires:       python2-pyserial

+ Requires:       python2-numpy

+ Requires:       python2-power

  Requires:       CuraEngine-lulzbot >= 15.04

  # So that it just works

  Requires:	3dprinter-udev-rules
@@ -132,6 +132,10 @@ 

  %{_bindir}/%{name}

  

  %changelog

+ * Mon Dec 11 2017 Iryna Shcherbina <ishcherb@redhat.com> - 21.08-3

+ - Fix ambiguous Python 2 dependency declarations

+   (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)

+ 

  * Wed Nov 22 2017 Miro Hrončok <mhroncok@redhat.com> - 21.08-2

  - Rebuilt to get it to f27

  

This package uses names with ambiguous python- prefix in requirements.

According to Fedora Packaging guidelines for Python, packages must use names with either python2- or python3- prefix in requirements where available.
We are aiming to rename python-* dependencies to python2-*, so we can later switch the python-* namespace to Python 3.

This PR is part of Fedora's Switch to Python 3 effort.

Note that, although this PR was created automatically, we will respond to any comments or issues which you might find with it. We will keep the PR open for review for a week, and if there's no feedback we'll merge it.

Koji scratch build: https://koji.fedoraproject.org/koji/taskinfo?taskID=23640815
Note: please do not backport this to f26 branch(es) as some of the modified requirements are not available there

This PR was opened automatically, for source code see here

Pull-Request has been merged by churchyard

6 years ago