%if 0%{?fedora} %global with_python3 1 %endif %global srcname idna Name: python-%{srcname} Version: 2.1 Release: 1%{?dist} Summary: Internationalized Domain Names in Applications (IDNA) License: BSD and Python and Unicode URL: https://github.com/kjd/idna Source0: https://pypi.io/packages/source/i/%{srcname}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python-setuptools %if 0%{?with_python3} BuildRequires: python3-devel BuildRequires: python3-setuptools %endif # with_python3 %description A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891 . This version of the protocol is often referred to as "IDNA2008" and can produce different results from the earlier standard from 2003. The library is also intended to act as a suitable drop-in replacement for the "encodings.idna" module that comes with the Python standard library but currently only supports the older 2003 specification. %if 0%{?with_python3} %package -n python3-%{srcname} Summary: Internationalized Domain Names in Applications (IDNA) %description -n python3-%{srcname} A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891 . This version of the protocol is often referred to as "IDNA2008" and can produce different results from the earlier standard from 2003. The library is also intended to act as a suitable drop-in replacement for the "encodings.idna" module that comes with the Python standard library but currently only supports the older 2003 specification. %endif # with_python3 %prep %setup -q -n %{srcname}-%{version} # Remove bundled egg-info rm -rf %{srcname}.egg-info %if 0%{?with_python3} rm -rf %{py3dir} cp -a . %{py3dir} %endif # with_python3 %build %{__python2} setup.py build %if 0%{?with_python3} pushd %{py3dir} %{__python3} setup.py build popd %endif # with_python3 %install %if 0%{?with_python3} pushd %{py3dir} %{__python3} setup.py install --skip-build --root %{buildroot} popd %endif # with_python3 %{__python2} setup.py install --skip-build --root %{buildroot} %check %{__python2} setup.py test %if 0%{?with_python3} pushd %{py3dir} %{__python3} setup.py test popd %endif # with_python3 %files %doc README.rst HISTORY.rst LICENSE.rst %{python2_sitelib}/%{srcname} %{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info %if 0%{?with_python3} %files -n python3-%{srcname} %doc README.rst HISTORY.rst LICENSE.rst %{python3_sitelib}/%{srcname} %{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info %endif # with_python3 %changelog * Mon Oct 17 2016 tom.prince@ualberta.net - 2.1-1 - Bump version. * Tue Jul 19 2016 Fedora Release Engineering - 2.0-4 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Thu Feb 04 2016 Fedora Release Engineering - 2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Nov 04 2015 Robert Kuska - 2.0-2 - Rebuilt for Python3.5 rebuild * Thu Aug 13 2015 Paul Wouters - 2.0-1 - Update to 2.0 which is required by python-cryptography * Thu Jun 18 2015 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Wed Dec 31 2014 tom.prince@ualberta.net - 1.0-1 - Bump version. * Mon Oct 27 2014 tom.prince@ualberta.net - 0.8-3 - Update licences. * Sat Jul 12 2014 tom.prince@ualberta.net - 0.8-2 - Be more specfic about .egg-info directories. - Use python2-devel * Sat Jul 12 2014 tom.prince@ualberta.net - 0.8-1 - Initial package.