%if 0%{?fedora} %global with_python3 1 %endif %global pypi_name cachez Name: python-%{pypi_name} Version: 0.1.2 Release: 4%{?dist} Summary: Cache decorator for global or instance level memoize License: ASL 2.0 URL: https://pypi.python.org/pypi/cachez Source0: https://pypi.io/packages/source/%(n=%{pypi_name}; echo ${n:0:1})/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch %description Cache decorator for global or instance level memoize. %package -n python2-%{pypi_name} Summary: %{summary} %{?python_provide:%python_provide python2-%{pypi_name}} BuildRequires: python2-devel BuildRequires: python2-setuptools BuildRequires: python2-hamcrest BuildRequires: python2-pytest %description -n python2-%{pypi_name} Cache decorator for global or instance level memoize. %if 0%{?with_python3} %package -n python3-%{pypi_name} Summary: %{summary} %{?python_provide:%python_provide python3-%{pypi_name}} BuildRequires: python3-devel BuildRequires: python3-hamcrest BuildRequires: python3-pytest %description -n python3-%{pypi_name} Cache decorator for global or instance level memoize. %endif %prep %setup -n %{pypi_name}-%{version} %build %py2_build %if 0%{?with_python3} %py3_build %endif %install %py2_install %if 0%{?with_python3} %py3_install %endif %check py.test-2 cachez_test.py %if 0%{?with_python3} py.test-3 cachez_test.py %endif %files -n python2-%{pypi_name} %license LICENSE.txt %doc README.rst %{python2_sitelib}/* %if 0%{?with_python3} %files -n python3-%{pypi_name} %license LICENSE.txt %doc README.rst %{python3_sitelib}/* %endif %changelog * Fri Feb 09 2018 Fedora Release Engineering - 0.1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Tue Jan 16 2018 Iryna Shcherbina - 0.1.2-3 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Thu Jul 27 2017 Fedora Release Engineering - 0.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue May 16 2017 Eric Harney - 0.1.2-1 - Update to 0.1.2 * Fri Feb 10 2017 Eric Harney - 0.1.1-1 - Update to 0.1.1 - Run unit tests * Wed Feb 01 2017 Eric Harney - 0.1.0-2 - Initial package