|
|
|
@ -14,51 +14,28 @@ BuildRequires: python3-devel
@@ -14,51 +14,28 @@ BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-pbr |
|
|
|
|
BuildRequires: python3-setuptools |
|
|
|
|
BuildRequires: systemd-rpm-macros |
|
|
|
|
# Documentation |
|
|
|
|
BuildRequires: python3-sphinx |
|
|
|
|
# Tests |
|
|
|
|
BuildRequires: python3-stestr |
|
|
|
|
BuildRequires: python3-libvirt |
|
|
|
|
BuildRequires: python3-mock |
|
|
|
|
BuildRequires: python3-pyghmi |
|
|
|
|
BuildRequires: python3-zmq |
|
|
|
|
BuildRequires: python3-oslotest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description |
|
|
|
|
A virtual BMC for controlling virtual machines using IPMI commands. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{srcname} |
|
|
|
|
Summary: A virtual BMC for controlling virtual machines using IPMI commands |
|
|
|
|
#Suggests: python3-%{srcname}-doc |
|
|
|
|
Requires(pre): shadow-utils |
|
|
|
|
%{?python_provide:%python_provide python3-%{srcname}} |
|
|
|
|
|
|
|
|
|
%description -n python3-%{srcname} |
|
|
|
|
A virtual BMC for controlling virtual machines using IPMI commands. |
|
|
|
|
|
|
|
|
|
%package -n python3-%{srcname}-tests |
|
|
|
|
Summary: VirtualBMC tests |
|
|
|
|
Requires: python3-%{srcname} = %{version}-%{release} |
|
|
|
|
|
|
|
|
|
%description -n python3-%{srcname}-tests |
|
|
|
|
Tests for VirtualBMC. |
|
|
|
|
|
|
|
|
|
%package -n python3-%{srcname}-doc |
|
|
|
|
Summary: VirtualBMC documentation |
|
|
|
|
|
|
|
|
|
%description -n python3-%{srcname}-doc |
|
|
|
|
Documentation for VirtualBMC. |
|
|
|
|
|
|
|
|
|
%prep |
|
|
|
|
%autosetup -n %{srcname}-%{version} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build |
|
|
|
|
%{__python3} setup.py build |
|
|
|
|
|
|
|
|
|
# generate html docs |
|
|
|
|
#%{__python3} setup.py build_sphinx -b html |
|
|
|
|
# remove the sphinx-build leftovers |
|
|
|
|
#rm -rf doc/build/html/.{doctrees,buildinfo} |
|
|
|
|
|
|
|
|
|
%install |
|
|
|
|
%{__python3} setup.py install --optimize 2 --root %{buildroot} |
|
|
|
@ -66,8 +43,6 @@ install -D -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/polkit-1/rules.d/60-vbm
@@ -66,8 +43,6 @@ install -D -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/polkit-1/rules.d/60-vbm
|
|
|
|
|
install -D -m 0644 %{SOURCE2} %{buildroot}%{_unitdir}/vbmcd.service |
|
|
|
|
install -d -m 750 %{buildroot}%{_sharedstatedir}/vbmcd |
|
|
|
|
|
|
|
|
|
%check |
|
|
|
|
#PYTHON=%{__python3} stestr run |
|
|
|
|
|
|
|
|
|
%pre -n python3-%{srcname} |
|
|
|
|
getent group vbmcd >/dev/null || groupadd -r vbmcd |
|
|
|
@ -85,6 +60,7 @@ exit 0
@@ -85,6 +60,7 @@ exit 0
|
|
|
|
|
%postun -n python3-%{srcname} |
|
|
|
|
%systemd_postun_with_restart vbmcd.service |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-%{srcname} |
|
|
|
|
%license LICENSE |
|
|
|
|
%{_bindir}/vbmcd |
|
|
|
@ -96,38 +72,4 @@ exit 0
@@ -96,38 +72,4 @@ exit 0
|
|
|
|
|
%{_unitdir}/vbmcd.service |
|
|
|
|
%dir %attr(750, vbmcd, vbmcd) %{_sharedstatedir}/vbmcd |
|
|
|
|
|
|
|
|
|
%files -n python3-%{srcname}-tests |
|
|
|
|
%license LICENSE |
|
|
|
|
%{python3_sitelib}/%{srcname}/tests |
|
|
|
|
|
|
|
|
|
%files -n python3-%{srcname}-doc |
|
|
|
|
%license LICENSE |
|
|
|
|
%doc README.rst HACKING.rst CONTRIBUTING.rst ChangeLog |
|
|
|
|
#%doc doc/build/html |
|
|
|
|
|
|
|
|
|
%changelog |
|
|
|
|
* Mon Jul 15 2019 Juan Orti Alcaine <jortialc@redhat.com> - 1.5.0-5 |
|
|
|
|
- Fix polkit logging |
|
|
|
|
|
|
|
|
|
* Sun Jul 14 2019 Juan Orti Alcaine <jortialc@redhat.com> - 1.5.0-4 |
|
|
|
|
- Fix tests for Fedora 30 |
|
|
|
|
|
|
|
|
|
* Sun Jul 14 2019 Juan Orti Alcaine <jortialc@redhat.com> - 1.5.0-3 |
|
|
|
|
- Include html docs |
|
|
|
|
- Run tests |
|
|
|
|
|
|
|
|
|
* Thu Jul 11 2019 Juan Orti Alcaine <jortialc@redhat.com> - 1.5.0-2 |
|
|
|
|
- Include polkit and service unit |
|
|
|
|
|
|
|
|
|
* Wed Jul 10 2019 Juan Orti Alcaine <jortialc@redhat.com> - 1.5.0-1 |
|
|
|
|
- Build only for Python3 |
|
|
|
|
- Version 1.5.0 |
|
|
|
|
|
|
|
|
|
* Tue Feb 13 2018 Maxim Burgerhout <maxim@redhat.com> - 1.2.0-2 |
|
|
|
|
- First build for Fedora 27 copr |
|
|
|
|
|
|
|
|
|
* Tue Aug 22 2017 Alfredo Moralejo <amoralej@redhat.com> - 1.2.0-1 |
|
|
|
|
- Update to 1.2.0 |
|
|
|
|
|
|
|
|
|
* Tue Nov 15 2016 Lucas Alvares Gomes <lucasagomes@gmail.com> - 0.1.0-1 |
|
|
|
|
- Initial package. |
|
|
|
|