/usr/bin/lesscpy is Python 3

According to the guidelines:

https://fedoraproject.org/wiki/Packaging:Python#Executables_in_.2Fusr.2Fbin

 If the executables provide the same functionality independent of
 whether they are run on top of Python 2 or Python 3, then only the
 Python 3 version of the executable should be packaged.

I left /usr/bin/py3-lesscpy around as a symblink for backwards
compatibility. Consider removal in F30+.
This commit is contained in:
Miro Hrončok 2018-06-12 12:20:24 +02:00
parent 48960f65f8
commit 275ef13225

View File

@ -8,7 +8,7 @@
Name: python-%{pypi_name}
Version: 0.13.0
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Lesscss compiler
License: MIT
@ -79,15 +79,18 @@ popd
%install
%{__python} setup.py install --skip-build --root %{buildroot}
%if 0%{?with_python3}
rm %{buildroot}/%{_bindir}/lesscpy
pushd %{py3dir}
%{__python3} setup.py install --skip-build --root %{buildroot}
mv %{buildroot}/%{_bindir}/lesscpy %{buildroot}/%{_bindir}/py3-lesscpy
# link for backwards compatibility. consider removal in Fedora 30+
ln -s ./lesscpy %{buildroot}/%{_bindir}/py3-lesscpy
popd
%endif # with_python3
%{__python} setup.py install --skip-build --root %{buildroot}
#%check
#nosetests -v
@ -101,7 +104,6 @@ popd
%doc LICENSE
%{python_sitelib}/%{pypi_name}
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
%{_bindir}/lesscpy
%if 0%{?with_python3}
%files -n python3-lesscpy
%doc LICENSE
@ -109,9 +111,13 @@ popd
%{python3_sitelib}/%{pypi_name}
%{python3_sitelib}/%{pypi_name}*.egg-info
%endif # with_python3
%{_bindir}/lesscpy
%changelog
* Tue Jun 12 2018 Miro Hrončok <mhroncok@redhat.com> - 0.13.0-2
- /usr/bin/lesscpy is Python 3
* Mon Jun 11 2018 Christian Heimes <cheimes@redhat.com> - 0.13.0-1
- New upstream release 0.13.0, resolves rhbz#1584773