%global pypi_name vine %bcond_without python3 # Disable tests for now as tests aren't working %bcond_with tests # docs depend on package sphinx_celery # https://github.com/celery/sphinx_celery %bcond_with docs Name: python-%{pypi_name} Version: 1.3.0 Release: 1%{?dist} Summary: Promises, promises, promises License: BSD URL: http://github.com/celery/vine Source0: https://files.pythonhosted.org/packages/source/v/%{pypi_name}/%{pypi_name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python2-setuptools %if %{with docs} BuildRequires: python2-sphinx %endif %if %{with tests} BuildRequires: python2-pytest BuildRequires: python2-pytest-cov BuildRequires: python2-case BuildRequires: python2-mock %endif %description %{summary} %package -n python2-%{pypi_name} Summary: Promises, promises, promises %{?python_provide:%python_provide python2-%{pypi_name}} %description -n python2-%{pypi_name} %{summary} %if %{with python3} %package -n python3-%{pypi_name} Summary: Promises, promises, promises %{?python_provide:%python_provide python3-%{pypi_name}} BuildRequires: python3-devel BuildRequires: python3-setuptools %if %{with tests} BuildRequires: python3-pytest BuildRequires: python3-pytest-cov BuildRequires: python3-case BuildRequires: python3-mock %endif %description -n python3-%{pypi_name} %{summary} %endif %if %{with docs} %package -n python-%{pypi_name}-doc Summary: vine documentation %description -n python-%{pypi_name}-doc Documentation for vine %endif %prep %autosetup -n %{pypi_name}-%{version} # Remove bundled egg-info rm -rf %{pypi_name}.egg-info %build %py2_build %if %{with python3} %py3_build %endif # docs depend on sphinx-celery %if %{with docs} # generate html docs sphinx-build docs html # remove the sphinx-build leftovers rm -rf html/.{doctrees,buildinfo} %endif %install %py2_install %if %{with python3} %py3_install %endif %if %{with tests} %check py.test -xv --cov=vine --cov-report=xml --no-cov-on-fail %if %{with python3} py.test-3 -xv --cov=vine --cov-report=xml --no-cov-on-fail %endif %endif %files -n python2-%{pypi_name} %license LICENSE %doc docs/templates/readme.txt README.rst %{python2_sitelib}/%{pypi_name} %{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %if %{with python3} %files -n python3-%{pypi_name} %license LICENSE %doc docs/templates/readme.txt README.rst %{python3_sitelib}/%{pypi_name} %{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info %endif %if %{with docs} %files -n python-%{pypi_name}-doc %doc html %endif %changelog * Sat Oct 03 2020 Frantisek Zatloukal - 1.3.0-1 - Update to 1.3.0 - Enable Python 3 on RHEL 7 * Sat Jan 26 2019 Neal Gompa - 1.2.0-1 - Update to 1.2.0 - Switch to using bconds for controlling build behaviors * Sat Jul 14 2018 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Mon Jul 09 2018 Matthias Runge - 1.1.4-1 - update to 1.1.4 (rhbz#1471577) * Tue Jun 19 2018 Miro HronĨok - 1.1.3-6 - Rebuilt for Python 3.7 * Fri Feb 09 2018 Fedora Release Engineering - 1.1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Wed Jan 31 2018 Iryna Shcherbina - 1.1.3-4 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Thu Jul 27 2017 Fedora Release Engineering - 1.1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Sat Feb 11 2017 Fedora Release Engineering - 1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Tue Dec 27 2016 Matthias Runge - 1.1.3-1 - Initial package. (rhbz#1408869)