Update to 1.3.4
This commit is contained in:
parent
1267f9b9d7
commit
3e1f65a968
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,3 +31,4 @@ freeipmi-0.8.8.tar.gz
|
|||||||
/freeipmi-1.3.1.tar.gz
|
/freeipmi-1.3.1.tar.gz
|
||||||
/freeipmi-1.3.2.tar.gz
|
/freeipmi-1.3.2.tar.gz
|
||||||
/freeipmi-1.3.3.tar.gz
|
/freeipmi-1.3.3.tar.gz
|
||||||
|
/freeipmi-1.3.4.tar.gz
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Copyright (c) 2003 FreeIPMI Core Team
|
# Copyright (c) 2003 FreeIPMI Core Team
|
||||||
|
|
||||||
Name: freeipmi
|
Name: freeipmi
|
||||||
Version: 1.3.3
|
Version: 1.3.4
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: IPMI remote console and system management software
|
Summary: IPMI remote console and system management software
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -25,7 +25,7 @@ Platform Management Interface specification.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development package for FreeIPMI
|
Summary: Development package for FreeIPMI
|
||||||
Group: Development/System
|
Group: Development/System
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Requires: OpenIPMI-modalias
|
Requires: OpenIPMI-modalias
|
||||||
%description devel
|
%description devel
|
||||||
Development package for FreeIPMI. This package includes the FreeIPMI
|
Development package for FreeIPMI. This package includes the FreeIPMI
|
||||||
@ -34,21 +34,21 @@ header files and libraries.
|
|||||||
%package bmc-watchdog
|
%package bmc-watchdog
|
||||||
Summary: IPMI BMC watchdog
|
Summary: IPMI BMC watchdog
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description bmc-watchdog
|
%description bmc-watchdog
|
||||||
Provides a watchdog daemon for OS monitoring and recovery.
|
Provides a watchdog daemon for OS monitoring and recovery.
|
||||||
|
|
||||||
%package ipmidetectd
|
%package ipmidetectd
|
||||||
Summary: IPMI node detection monitoring daemon
|
Summary: IPMI node detection monitoring daemon
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description ipmidetectd
|
%description ipmidetectd
|
||||||
Provides a tool and a daemon for IPMI node detection.
|
Provides a tool and a daemon for IPMI node detection.
|
||||||
|
|
||||||
%package ipmiseld
|
%package ipmiseld
|
||||||
Summary: IPMI SEL syslog logging daemon
|
Summary: IPMI SEL syslog logging daemon
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
%description ipmiseld
|
%description ipmiseld
|
||||||
IPMI SEL syslog logging daemon.
|
IPMI SEL syslog logging daemon.
|
||||||
|
|
||||||
@ -66,18 +66,17 @@ export CFLAGS="-D_GNU_SOURCE $RPM_OPT_FLAGS"
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
make install DESTDIR=%{buildroot}
|
||||||
make install DESTDIR="$RPM_BUILD_ROOT"
|
rm -rf %{buildroot}%{_infodir}/dir
|
||||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/dir
|
|
||||||
# kludge to get around rpmlint complaining about 0 length semephore file
|
# kludge to get around rpmlint complaining about 0 length semephore file
|
||||||
echo freeipmi > $RPM_BUILD_ROOT%{_localstatedir}/lib/freeipmi/ipckey
|
echo freeipmi > %{buildroot}%{_localstatedir}/lib/freeipmi/ipckey
|
||||||
# Remove .la files
|
# Remove .la files
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.la
|
rm -rf %{buildroot}%{_libdir}/*.la
|
||||||
# Install systemd units
|
# Install systemd units
|
||||||
install -m 755 -d $RPM_BUILD_ROOT/%{_unitdir}
|
install -m 755 -d %{buildroot}%{_unitdir}
|
||||||
install -m 644 %SOURCE1 %SOURCE2 %SOURCE3 $RPM_BUILD_ROOT/%{_unitdir}/
|
install -m 644 %SOURCE1 %SOURCE2 %SOURCE3 %{buildroot}%{_unitdir}/
|
||||||
# Remove initscripts
|
# Remove initscripts
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_initrddir} $RPM_BUILD_ROOT/%{_sysconfdir}/init.d
|
rm -rf %{buildroot}%{_initrddir} %{buildroot}%{_sysconfdir}/init.d
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/install-info %{_infodir}/freeipmi-faq.info.gz %{_infodir}/dir &>/dev/null || :
|
/sbin/install-info %{_infodir}/freeipmi-faq.info.gz %{_infodir}/dir &>/dev/null || :
|
||||||
@ -346,6 +345,9 @@ fi
|
|||||||
%dir %{_localstatedir}/cache/ipmiseld
|
%dir %{_localstatedir}/cache/ipmiseld
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 17 2013 Christopher Meng <rpm@cicku.me> - 1.3.4-1
|
||||||
|
- Updated to freeipmi-1.3.4
|
||||||
|
|
||||||
* Fri Nov 8 2013 Ales Ledvinka <aledvink@redhat.com> - 1.3.3-1
|
* Fri Nov 8 2013 Ales Ledvinka <aledvink@redhat.com> - 1.3.3-1
|
||||||
- Updated to freeipmi-1.3.3
|
- Updated to freeipmi-1.3.3
|
||||||
- Add support for intelnm get-node-manager-alert-destination and
|
- Add support for intelnm get-node-manager-alert-destination and
|
||||||
|
Loading…
Reference in New Issue
Block a user