forked from seveas/python-hpilo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-hpilo.spec
More file actions
37 lines (31 loc) · 979 Bytes
/
Copy pathpython-hpilo.spec
File metadata and controls
37 lines (31 loc) · 979 Bytes
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
Summary: Accessing HP iLO interfaces from python
Name: python-hpilo
Version: 3.9
Release: 1%{?dist}
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
License: GPL/APL
Group: Development/Libraries
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
Prefix: %{_prefix}
BuildArch: noarch
Vendor: Dennis Kaarsemaker <dennis@kaarsemaker.net>
Url: http://github.com/seveas/python-hpilo
BuildRequires: python
%description
This module will make it easy for you to access the Integrated Lights Out
management interface of your HP hardware. It supports RILOE II, iLO, iLO 2, iLO
3 and iLO 4. It uses the XML interface or hponcfg to access and change the iLO.
%prep
%setup -n %{name}-%{version}
%build
python setup.py build
%install
python setup.py install -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%doc docs
%doc examples
%doc README.md
%doc CHANGES
%defattr(-,root,root)