%if 0%{?fedora} %global with_python3 1 %endif %{!?_licensedir: %global license %%doc} %if 0%{?rhel} && 0%{?rhel} <= 6 %{!?__python2: %global __python2 /usr/bin/python2} %{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} %{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} %endif %global modname stuf Name: python-stuf Version: 0.9.16 Release: 1%{?dist} Summary: Fancy python dictionary types Group: Development/Libraries License: BSD URL: http://pypi.python.org/pypi/stuf Source0: https://pypi.python.org/packages/source/s/%{modname}/%{modname}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python2-setuptools %if 0%{?with_python3} BuildRequires: python3-devel BuildRequires: python3-setuptools %endif %description A collection of Python dictionary types that support attribute-style access. Includes *defaultdict*, *OrderedDict*, restricted, *ChainMap*, *Counter*, and frozen implementations plus miscellaneous utilities for writing Python software. %package -n python2-%{modname} Summary: Fancy python dictionary types %{?python_provide:%python_provide python2-%{module}} Requires: python2-parse %description -n python2-%{modname} A collection of Python dictionary types that support attribute-style access. Includes *defaultdict*, *OrderedDict*, restricted, *ChainMap*, *Counter*, and frozen implementations plus miscellaneous utilities for writing Python software. %if 0%{?with_python3} %package -n python3-%{modname} Summary: Fancy python dictionary types %{?python_provide:%python_provide python3-%{module}} Requires: python3-parse %description -n python3-%{modname} A collection of Python dictionary types that support attribute-style access. Includes *defaultdict*, *OrderedDict*, restricted, *ChainMap*, *Counter*, and frozen implementations plus miscellaneous utilities for writing Python software. %endif %prep %autosetup -n %{modname}-%{version} %build %py2_build %if 0%{?with_python3} %py3_build %endif %install %py2_install # https://bitbucket.org/lcrees/stuf/issues/9/find_packages-should-exclude-tests rm -rf %{buildroot}%{python2_sitelib}/tests/ %if 0%{?with_python3} %py3_install rm -rf %{buildroot}%{python3_sitelib}/tests/ %endif %files -n python2-%{modname} %doc README.rst %license LICENSE.txt %{python2_sitelib}/%{modname}/ %{python2_sitelib}/%{modname}-%{version}* %if 0%{?with_python3} %files -n python3-%{modname} %doc README.rst %license LICENSE.txt %{python3_sitelib}/%{modname}/ %{python3_sitelib}/%{modname}-%{version}-* %endif %changelog * Fri Nov 13 2015 <> 0.9.16-1 - Initial packaging for Fedora.