mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-25 19:10:10 +00:00
00a33b05b7
a confluent_xcat RPM. This holds the related pieces that xCAT requires to use confluent and allows confluent to be standalone install. The confluent_xcat rpm has a dependency on confluent_server. The structure of confluent_xcat directory follows the other directories under the confluent project. (_server,_client,_common)
42 lines
1.1 KiB
Cheetah
42 lines
1.1 KiB
Cheetah
%define name confluent_xcat
|
|
%define version #VERSION#
|
|
%define release 1
|
|
|
|
Summary: xCAT integration with 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
|
|
Requires: confluent_server
|
|
Vendor: Victor Hu <vhu@us.ibm.com>
|
|
Url: http://xcat.sf.net/
|
|
|
|
%description
|
|
xCAT integration with confluent system management server
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES.bare --install-purelib=/opt/xcat/lib/python --install-scripts=/opt/xcat/bin
|
|
for file in $(grep xcat/__init__.py INSTALLED_FILES.bare); do
|
|
rm $RPM_BUILD_ROOT/$file
|
|
done
|
|
grep -v xcat/__init__.py INSTALLED_FILES.bare > INSTALLED_FILES
|
|
cat INSTALLED_FILES
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|