Prelude
This page summarizes a proposal of changes to Python packaging guidelines, that should occur with switch to Python 3 as a default, as proposed in [1] (will be referred to as Change).
Changes in Package Naming and SRPM <-> RPM Relations
Current State
python-* packages (built with Python 2) are installed by default (from LiveCD, as dependencies of applications that require some Python packages) and by yum install python-foo. Python 3 packages are named python3-* and are installed by yum install python3-foo.
From the packaging point of view, this is achieved by either
- Having one SRPM
python-foothat producespython-fooandpython3-foobinary RPMs.
or
- Having two SRPMs,
python-foo(producespython-foobinary RPM) andpython3-fooSRPM (producespython3-foobinary RPM).
Future State Implied by the Change
After the switch, python3-* packages are going to be installed by default (from LiveCD, as dependencies of applications that require some Python packages).
Proposal for Further Changes
- A brief discussion already happened at [2].
- SRPMs that produce binary RPMs for more Python runtimes should keep current names (
python-foo). - SRPMs that produce binary RPM for just one runtime should be named
pythonX-foo. - Every binary RPM must be named
pythonX-foo, whereXis the major version of the Python runtime that it uses. - For the time being (and maybe forever), every
python2-foopackage must have a virtual provide for its previous name. For most of the packages, this will beProvides: python-foo, but some of the packages haven't had thepython-prefix historically, so these will just haveProvides: foo(for exampleProvides: PyYAML). - From packaging perspective, the above also means that all the
python2-foopackages will need to have a properObsoletes: ...tag. - From user's perspective this means:
python-*packages will be renamed topython2-*, but will still keep the provide ofpython-*(soyum install python-foowill still work).- Packages that didn't have the
python-prefix, e.g. pyfoo, will newly be namedpython2-pyfoo, but they will still provide the old name (so again,yum install pyfoowill still work).
Why?
- This concept will easily scale to more Python runtimes (PyPy, Jython), as already proposed previously by Tom Spur. Please note, that scaling to other runtimes is not part of this proposal and should be discussed further in another proposal/ML thread.
- Currently, upstream recommendation [3] is to point
/usr/bin/pythonto Python 2, but as the PEP notes, it will be reviewed and it is anticipated that in time it will be updated to recommend pointing/usr/bin/pythonto/usr/bin/python3. When this time comes, we should also move the provides suggested above (Provides: python-foo) frompython2-*packages topython3-*packages to keep things likeyum install /usr/bin/python python-fooconsistent. - Having
python2-*vs.python3-*packages is a good way of explicitly distinguishing packages from the two stacks. This is connected with the reason above - we should recommend explicit usage of/usr/bin/python{2,3}andyum install python{2,3}-foo, and we should discourage use of implicit/usr/bin/pythonandpython-*so that nothing breaks for users when these are changed in any way. (We already started to advertise usage of versioned/usr/bin/python{2,3}binary by deprecating%__pythonin current guidelines and recommending%__python{2,3}instead.)
Alternatives
- Just keep what we have - doesn't seem to scale to other Python runtimes; doesn't allow explicit naming (
python2-foovs.python3-foo) while keeping the possibility to moveProvides: python-footopython3-fooin the future. - Only allow split SRPMs - seems to be too much maintenance work.
Example Specfile
Example of what a specfile would look like follows. Everything works in the same way as it does now with building python3-* subpackages; the same approach is applied to python2-* subpackages.
This specfile will produce two binary RPMs, python2-six and python3-six. Any of them can be disabled by setting with_python{2,3} to 0:
%global with_python2 1
%global with_python3 1
# this macro is defined here only for testing purposes, it would
# be defined in macros.python2 provided by python2-devel
%global py2dir %{_builddir}/python2-%{name}-%{version}-%{release}
Name: python-six
Version: 1.4.1
Release: 1%{?dist}
Summary: Python 2 and 3 compatibility utilities
Group: Development/Languages
License: MIT
URL: http://pypi.python.org/pypi/six/
Source0: http://pypi.python.org/packages/source/s/six/six-%{version}.tar.gz
BuildArch: noarch
%if 0%{?with_python2}
BuildRequires: python2-devel
# For use by selftests:
BuildRequires: python2-pytest
BuildRequires: python2-tkinter
%endif
%if 0%{?with_python3}
BuildRequires: python3-devel
# For use by selftests:
BuildRequires: python3-pytest
BuildRequires: python3-tkinter
%endif
Provide descriptions for both packages (and for the main package, since rpmbuild enforces that).
%description
python-six provides simple utilities for wrapping over differences between
Python 2 and Python 3.
%if 0%{?with_python2}
%package -n python2-six
Summary: Python 2 and 3 compatibility utilities
Group: Development/Languages
Provides: python-six = %{version}-%{release}
Obsoletes: python-six < 1.4.1-1
%description -n python2-six
python-six provides simple utilities for wrapping over differences between
Python 2 and Python 3.
%endif
%if 0%{?with_python3}
%package -n python3-six
Summary: Python 2 and 3 compatibility utilities
Group: Development/Languages
%description -n python3-six
python-six provides simple utilities for wrapping over differences between
Python 2 and Python 3.
This is the Python 3 build of the module.
%endif
%prep, %build, %install and %check sections look pretty much the same, each has to explictly switch the directory to the respective py{2,3}dir. I believe we could come up with some macros that would make this easier and more readable (TODO).
%prep
%setup -q -n six-%{version}
# possibly apply patches here
%if 0%{?with_python2}
rm -rf %{py2dir}
cp -a . %{py2dir}
%endif
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
%endif
%build
%if 0%{?with_python2}
pushd %{py2dir}
%{__python2} setup.py build
popd
%endif
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py build
popd
%endif
%install
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
popd
%endif
%if 0%{?with_python2}
pushd %{py2dir}
%{__python2} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
popd
%endif
There is no default %files section, only %files sections for python{2,3}-six packages.
%if 0%{?with_python2}
%files -n python2-six
%doc LICENSE README documentation/index.rst
%{python2_sitelib}/*
%endif
%if 0%{?with_python3}
%files -n python3-six
%doc LICENSE README documentation/index.rst
%{python3_sitelib}/*
%endif
[1] https://fedoraproject.org/wiki/Changes/Python_3_as_Default
[2] https://lists.fedoraproject.org/pipermail/devel/2013-July/186822.html
[3] http://www.python.org/dev/peps/pep-0394/
[4] http://www.python.org/dev/peps/pep-0394/#future-changes-to-this-recommendation
