You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
240 lines
5.1 KiB
240 lines
5.1 KiB
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
|
|
|
|
%global sname sushy
|
|
|
|
# Settings for Fedora > 29 and EL > 7
|
|
%if 0%{?fedora} > 29 || 0%{?rhel} > 7
|
|
%bcond_with python2
|
|
%else
|
|
%bcond_without python2
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
|
%bcond_without python3
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
|
%bcond_without python3
|
|
%endif
|
|
|
|
%if %{lua: if (string.find(rpm.expand("%{?dist}"), "ost") == nil) then print(0) else print(1) end}
|
|
%bcond_without docs
|
|
%bcond_without tests
|
|
%else
|
|
%bcond_with docs
|
|
%bcond_with tests
|
|
%endif
|
|
|
|
%global common_desc \
|
|
Sushy is a Python library to communicate with Redfish based systems (http://redfish.dmtf.org)
|
|
|
|
%global common_desc_tests Tests for Sushy
|
|
|
|
Name: python-%{sname}
|
|
Version: 1.3.1
|
|
Release: 3%{?dist}
|
|
Summary: Sushy is a Python library to communicate with Redfish based systems
|
|
License: ASL 2.0
|
|
URL: http://launchpad.net/%{sname}/
|
|
|
|
Source0: http://tarballs.openstack.org/%{sname}/%{sname}-%{upstream_version}.tar.gz
|
|
|
|
Patch0: nopbr.patch
|
|
Patch1: setup.patch
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: git
|
|
|
|
%description
|
|
%{common_desc}
|
|
|
|
%if %{with python2}
|
|
%package -n python2-%{sname}
|
|
Summary: Sushy is a Python library to communicate with Redfish based systems
|
|
%{?python_provide:%python_provide python2-%{sname}}
|
|
|
|
BuildRequires: python2-devel
|
|
#BuildRequires: python2-pbr
|
|
BuildRequires: python2-setuptools
|
|
# For running unit tests during check phase
|
|
BuildRequires: python2-requests
|
|
BuildRequires: python2-six
|
|
|
|
#Requires: python2-pbr >= 2.0.0
|
|
Requires: python2-six >= 1.10.0
|
|
Requires: python2-requests >= 2.14.2
|
|
|
|
%description -n python2-%{sname}
|
|
%{common_desc}
|
|
|
|
%if %{with tests}
|
|
%package -n python2-%{sname}-tests
|
|
Summary: Sushy tests
|
|
Requires: python2-%{sname} = %{version}-%{release}
|
|
|
|
BuildRequires: python2-oslotest
|
|
BuildRequires: python2-testrepository
|
|
BuildRequires: python2-testscenarios
|
|
BuildRequires: python2-testtools
|
|
|
|
Requires: python2-oslotest
|
|
Requires: python2-testrepository
|
|
Requires: python2-testscenarios
|
|
Requires: python2-testtools
|
|
|
|
%description -n python2-%{sname}-tests
|
|
%{common_desc_tests}
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%if %{with python3}
|
|
|
|
%package -n python3-%{sname}
|
|
Summary: Sushy is a Python library to communicate with Redfish based systems
|
|
|
|
%{?python_provide:%python_provide python3-%{sname}}
|
|
BuildRequires: python3-devel
|
|
#BuildRequires: python3-pbr
|
|
BuildRequires: python3-setuptools
|
|
# For running unit tests during check phase
|
|
BuildRequires: python3-requests
|
|
BuildRequires: python3-six
|
|
|
|
#Requires: python3-pbr >= 2.0.0
|
|
Requires: python3-six >= 1.10.0
|
|
Requires: python3-requests >= 2.14.2
|
|
|
|
%description -n python3-%{sname}
|
|
%{common_desc}
|
|
|
|
%if %{with tests}
|
|
%package -n python3-%{sname}-tests
|
|
Summary: Sushy tests
|
|
Requires: python3-%{sname} = %{version}-%{release}
|
|
|
|
BuildRequires: python3-oslotest
|
|
BuildRequires: python3-testrepository
|
|
BuildRequires: python3-testscenarios
|
|
BuildRequires: python3-testtools
|
|
|
|
Requires: python3-oslotest
|
|
Requires: python3-testrepository
|
|
Requires: python3-testscenarios
|
|
Requires: python3-testtools
|
|
|
|
%description -n python3-%{sname}-tests
|
|
%{common_desc_tests}
|
|
|
|
%endif
|
|
|
|
%endif # with_python3
|
|
|
|
%if %{with docs}
|
|
|
|
%package -n python-%{sname}-doc
|
|
Summary: Sushy documentation
|
|
|
|
BuildRequires: python-sphinx
|
|
BuildRequires: python-openstackdocstheme
|
|
|
|
%description -n python-%{sname}-doc
|
|
Documentation for Sushy
|
|
|
|
%endif
|
|
|
|
%prep
|
|
%autosetup -n %{sname}-%{upstream_version} -S git
|
|
|
|
# Let's handle version info ourselves
|
|
sed -i s/@@REDHATVERSION@@/%{version}/ sushy/__init__.py setup.py
|
|
|
|
%build
|
|
%if %{with python2}
|
|
%py2_build
|
|
%endif # with_python2
|
|
%if %{with python3}
|
|
%py3_build
|
|
%endif # with_python3
|
|
|
|
%if %{with docs}
|
|
# generate html docs
|
|
%{__python2} setup.py build_sphinx
|
|
# remove the sphinx-build leftovers
|
|
rm -rf doc/build/html/.{doctrees,buildinfo}
|
|
%endif
|
|
|
|
%check
|
|
%if %{with tests}
|
|
%if %{with python2}
|
|
%{__python2} setup.py test
|
|
%endif # with_python2
|
|
%if %{with python3}
|
|
rm -rf .testrepository
|
|
%{__python3} setup.py test
|
|
%endif # with_python3
|
|
%endif # with tests
|
|
|
|
%install
|
|
%if %{with python2}
|
|
%py2_install
|
|
%endif # with_python2
|
|
%if %{with python3}
|
|
%py3_install
|
|
%endif # with_python3
|
|
|
|
%if %{with python2}
|
|
|
|
%files -n python2-%{sname}
|
|
%license LICENSE
|
|
%{python2_sitelib}/%{sname}
|
|
%{python2_sitelib}/%{sname}-*.egg-info
|
|
%exclude %{python2_sitelib}/%{sname}/tests
|
|
|
|
%if %{with tests}
|
|
%files -n python2-%{sname}-tests
|
|
%license LICENSE
|
|
%{python2_sitelib}/%{sname}/tests
|
|
|
|
%endif # with tests
|
|
|
|
%endif # with_python2
|
|
|
|
%if %{with python3}
|
|
|
|
%files -n python3-%{sname}
|
|
%license LICENSE
|
|
%{python3_sitelib}/%{sname}
|
|
%{python3_sitelib}/%{sname}-*.egg-info
|
|
%exclude %{python3_sitelib}/%{sname}/tests
|
|
|
|
%if %{with tests}
|
|
|
|
%files -n python3-%{sname}-tests
|
|
%license LICENSE
|
|
%{python3_sitelib}/%{sname}/tests
|
|
|
|
%endif # with tests
|
|
|
|
%endif # with_python3
|
|
|
|
%if %{with docs}
|
|
|
|
%files -n python-%{sname}-doc
|
|
%license LICENSE
|
|
%doc doc/build/html README.rst
|
|
|
|
%endif # with docs
|
|
|
|
%changelog
|
|
* Mon Jun 25 2018 Petr Viktorin <pviktori@redhat.com> - 1.3.1-3
|
|
- Remove the pbr dependency
|
|
|
|
* Mon May 14 2018 Pavel Cahyna <pcahyna@redhat.com> - 1.3.1-2
|
|
- Conditionalize python2, tests and docs, update python3 conditional for RHEL > 7
|
|
|
|
* Tue Feb 13 2018 RDO <dev@lists.rdoproject.org> 1.3.1-1
|
|
- Update to 1.3.1
|
|
|