1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
%if 0%{?rhel} && 0%{?rhel} <= 7
%{!?py2_build: %global py2_build %{__python2} setup.py build}
%{!?py2_install: %global py2_install %{__python2} setup.py install --skip-build --root %{buildroot}}
%endif
%if (0%{?fedora} >= 21 || 0%{?rhel} >= 8)
%global with_python3 1
%endif
%define srcname pypureomapi
%define version 0.8
%define release 1
%define sum Cygnus Networks GmbH %{srcname} package
Name: python-%{srcname}
Version: %{version}
Release: %{release}%{?dist}
Summary: %{sum}
License: proprietary
Source0: python-%{srcname}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel, python-setuptools
%if 0%{?with_check}
BuildRequires: pytest
%endif # with_check
Requires: python-setuptools
%{?python_provide:%python_provide python-%{project}}
%if 0%{?with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%if 0%{?with_check}
BuildRequires: python3-pytest
%endif # with_check
%endif # with_python3
%description
%{sum}
%if 0%{?with_python3}
%package -n python3-%{project}
Summary: %{sum}
%{?python_provide:%python_provide python3-%{project}}
Requires: python3-setuptools
%description -n python3-%{project}
%{sum}
%endif # with_python3
%prep
%setup -q -n python-%{srcname}-%{version}
%build
%py2_build
%if 0%{?with_python3}
%py3_build
%endif # with_python3
%install
%py2_install
%if 0%{?with_python3}
%py3_install
%endif # with_python3
%if 0%{?with_check}
%check
LANG=en_US.utf8 py.test-%{python2_version} -vv tests
%if 0%{?with_python3}
LANG=en_US.utf8 py.test-%{python3_version} -vv tests
%endif # with_python3
%endif # with_check
%files
%{python2_sitelib}/%{srcname}.py*
%{python2_sitelib}/%{srcname}-%{version}-py2.*.egg-info
%if 0%{?with_python3}
%files -n python3-%{project}
%dir %{python3_sitelib}/%{srcname}/__pycache__
%{python2_sitelib}/%{srcname}.py*
%{python3_sitelib}/%{srcname}-%{version}-py3.*.egg-info
%{python3_sitelib}/%{srcname}/__pycache__/*.py*
%endif # with_python3
|