mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-08-04 16:36:58 +00:00
2bfd004058
The perl-xCAT component specs BuildRequire perl-Pod-Html and (in
xCAT-client) perl-generators, neither of which exists on openSUSE/SLES,
so rpmbuild aborts at dependency resolution before the build can start.
perl-generators is a RHEL/Fedora-only helper that emits perl dependency
metadata; SUSE's rpm generates those itself. Pod::Html ships inside the
core perl package on SUSE, with no separate perl-Pod-Html subpackage to
require. Guard both BuildRequires with %if !0%{?suse_version} so the SUSE
build resolves while EL/Fedora builds are unchanged.
Signed-off-by: Daniel Hilst <392820+dhilst@users.noreply.github.com>
(cherry picked from commit 4b24558835)
63 lines
1.6 KiB
RPMSpec
63 lines
1.6 KiB
RPMSpec
Summary: xCAT integration with confluent systems management server
|
|
Name: xCAT-confluent
|
|
Version: %{?version:%{version}}%{!?version:%(cat Version)}
|
|
Release: %{?release:%{release}}%{!?release:%(cat Release)}
|
|
Epoch: 4
|
|
License: EPL
|
|
Group: Applications/System
|
|
Source: xCAT-confluent-%{version}.tar.gz
|
|
Packager: IBM Corp.
|
|
Vendor: IBM Corp.
|
|
Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
|
|
Prefix: /opt/xcat
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
%ifos linux
|
|
BuildArch: noarch
|
|
%endif
|
|
Requires: confluent_server
|
|
|
|
Provides: xCAT-confluent = %{epoch}:%{version}
|
|
# Pod::Html ships inside the core perl package on SUSE; there is no perl-Pod-Html
|
|
%if !0%{?suse_version}
|
|
BuildRequires: perl-Pod-Html
|
|
%endif
|
|
|
|
%description
|
|
xCAT confluent provides the necessary integration pieces to utilize the confluent
|
|
system management server
|
|
|
|
%prep
|
|
|
|
%setup -q -n xCAT-confluent
|
|
|
|
%build
|
|
# Convert pods to man pages and html pages
|
|
#./xpod2man
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
# Uncomment the following line if we ship bin files
|
|
# mkdir -p $RPM_BUILD_ROOT/%{prefix}/bin
|
|
# cp -d bin/* $RPM_BUILD_ROOT/%{prefix}/bin/
|
|
# chmod 755 $RPM_BUILD_ROOT/%{prefix}/bin/*
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/opt/confluent
|
|
cp -dr confluent/* $RPM_BUILD_ROOT/opt/confluent/
|
|
|
|
#cp share/man/man1/* $RPM_BUILD_ROOT/%{prefix}/share/man/man1
|
|
#chmod 444 $RPM_BUILD_ROOT/%{prefix}/share/man/man1/*
|
|
#cp share/doc/man1/* $RPM_BUILD_ROOT/%{prefix}/share/doc/man1
|
|
#chmod 644 $RPM_BUILD_ROOT/%{prefix}/share/doc/man1/*
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
# Uncomment the following line if we ship bin files
|
|
# %{prefix}
|
|
/opt/confluent
|
|
|
|
%post
|