%global mod_name blinker %global with_python3 0 Name: python-blinker Version: 1.4 Release: 3%{?dist} Summary: Fast, simple object-to-object and broadcast signaling Group: Development/Libraries License: MIT URL: https://pythonhosted.org/blinker/ Source0: https://pypi.python.org/packages/source/b/%{mod_name}/%{mod_name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python2-setuptools %if 0%{?with_python3} BuildRequires: python3-devel BuildRequires: python3-setuptools %endif %global _description\ Blinker provides a fast dispatching system that allows any number\ of interested parties to subscribe to events, or "signals". %description %_description %package -n python2-blinker Summary: %summary %{?python_provide:%python_provide python2-blinker} %description -n python2-blinker %_description %if 0%{?with_python3} %package -n python3-blinker Summary: Fast, simple object-to-object and broadcast signaling %description -n python3-blinker Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". %endif %prep %setup -q -n %{mod_name}-%{version} %if 0%{?with_python3} rm -rf %{py3dir} cp -a . %{py3dir} %endif %build %{__python2} setup.py build %if 0%{?with_python3} pushd %{py3dir} %{__python3} setup.py build popd %endif %install rm -rf $RPM_BUILD_ROOT %if 0%{?with_python3} pushd %{py3dir} %{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT popd %endif %{__python2} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %files -n python2-blinker %doc docs/ CHANGES LICENSE README.md PKG-INFO %{python2_sitelib}/*.egg-info %{python2_sitelib}/%{mod_name} %if 0%{?with_python3} %files -n python3-blinker %doc docs/ CHANGES LICENSE README.md PKG-INFO %{python3_sitelib}/*.egg-info %{python3_sitelib}/%{mod_name} %endif %changelog * Fri Jul 13 2018 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Mon Jul 02 2018 Miro HronĨok - 1.4-2 - Rebuilt for Python 3.7 * Sat Jun 16 2018 Itamar Reis Peixoto - 1.4-1 - new version