https://bugzilla.redhat.com/show_bug.cgi?id=1562964

Robert-André Mauchin <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]



--- Comment #1 from Robert-André Mauchin <[email protected]> ---
 - Same as before, there's no need to duplicate the code to build python 2 and
python 3 targets:

%prep
%autosetup

%build
%py2_build

%if %{with python3}
%py3_build
%endif # with python3

# Build sphinx documentation
pushd docs/
make html
popd # docs

%install
# Must do the python3 install first because the scripts in /usr/bin are
# overwritten with every setup.py install (and we want the python2 version
# to be the default for now).
%if %{with python3}
%py3_install
%endif # with python3
%py2_install

   and so on for %check and %files

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to