# Created by pyp2rpm-3.3.2 %global pypi_name ordereddict Name: python-%{pypi_name} Version: 1.1 Release: 1%{?dist} Summary: A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6. License: None URL: None Source0: https://files.pythonhosted.org/packages/source/o/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python2dist(setuptools) BuildRequires: python3-devel BuildRequires: python3dist(setuptools) %description Drop-in substitute for Py2.7's new collections.OrderedDict. The recipe has big- oh performance that matches regular dictionaries (amortized O(1) insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing). Originally based on http://code.activestate.com/recipes/576693/ %package -n python2-%{pypi_name} Summary: %{summary} %{?python_provide:%python_provide python2-%{pypi_name}} %description -n python2-%{pypi_name} Drop-in substitute for Py2.7's new collections.OrderedDict. The recipe has big- oh performance that matches regular dictionaries (amortized O(1) insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing). Originally based on http://code.activestate.com/recipes/576693/ %package -n python3-%{pypi_name} Summary: %{summary} %{?python_provide:%python_provide python3-%{pypi_name}} %description -n python3-%{pypi_name} Drop-in substitute for Py2.7's new collections.OrderedDict. The recipe has big- oh performance that matches regular dictionaries (amortized O(1) insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing). Originally based on http://code.activestate.com/recipes/576693/ %prep %autosetup -n %{pypi_name}-%{version} %build %py2_build %py3_build %install # Must do the default python version install last because # the scripts in /usr/bin are overwritten with every setup.py install. %py2_install %py3_install %files -n python2-%{pypi_name} %license LICENSE %{python2_sitelib}/%{pypi_name}.py* %{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %files -n python3-%{pypi_name} %license LICENSE %{python3_sitelib}/__pycache__/* %{python3_sitelib}/%{pypi_name}.py %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %changelog * Thu Aug 30 2018 mockbuilder - 1.1-1 - Initial package.