2014-07-14 18:54:12 +00:00
|
|
|
%define name confluent_server
|
|
|
|
%define version #VERSION#
|
|
|
|
%define release 1
|
|
|
|
|
|
|
|
Summary: confluent systems management server
|
|
|
|
Name: %{name}
|
|
|
|
Version: %{version}
|
|
|
|
Release: %{release}
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
License: Apache2
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
Prefix: %{_prefix}
|
|
|
|
BuildArch: noarch
|
2016-06-01 13:15:16 +00:00
|
|
|
Requires: python-pyghmi, python-eventlet, python-greenlet, python-crypto >= 2.6.1, confluent_client, pyparsing, python-paramiko, python-dnspython
|
2015-03-25 17:52:59 +00:00
|
|
|
Vendor: Jarrod Johnson <jjohnson2@lenovo.com>
|
2014-07-14 18:54:12 +00:00
|
|
|
Url: http://xcat.sf.net/
|
|
|
|
|
|
|
|
%description
|
|
|
|
Server for console management and systems management aggregation
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
%install
|
2014-11-04 14:16:01 +00:00
|
|
|
python setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES.bare --install-purelib=/opt/confluent/lib/python --install-scripts=/opt/confluent/bin
|
|
|
|
for file in $(grep confluent/__init__.py INSTALLED_FILES.bare); do
|
|
|
|
rm $RPM_BUILD_ROOT/$file
|
|
|
|
done
|
|
|
|
grep -v confluent/__init__.py INSTALLED_FILES.bare > INSTALLED_FILES
|
|
|
|
cat INSTALLED_FILES
|
2014-07-14 18:54:12 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files -f INSTALLED_FILES
|
|
|
|
%defattr(-,root,root)
|