026520
%global _hardened_build 1
026520
026520
Summary: IPMI (Intelligent Platform Management Interface) library and tools
026520
Name: OpenIPMI
026520
a1b228
Version:    2.0.32
a1b228
Release:    3%{?dist}
026520
License:    LGPLv2+ and GPLv2+ or BSD
026520
URL:        http://sourceforge.net/projects/openipmi/
026520
Source:     http://downloads.sourceforge.net/openipmi/%{name}-%{version}.tar.gz
026520
Source1:    openipmi.sysconf
026520
Source2:    openipmi-helper
026520
Source3:    ipmi.service
026520
Patch1:     0001-man.patch
a1b228
Patch2:     include-config-h-cmdlang.patch
026520
026520
BuildRequires: make
026520
BuildRequires:    gdbm-devel swig glib2-devel net-snmp-devel ncurses-devel
026520
BuildRequires:    openssl-devel python3-devel perl-devel perl-generators
026520
BuildRequires:    pkgconfig
026520
BuildRequires:    readline-devel
026520
BuildRequires:    automake
026520
BuildRequires:    autoconf
026520
BuildRequires:    libtool
026520
%{?systemd_requires}
026520
BuildRequires:    systemd
026520
026520
Requires:         %{name}-libs%{?_isa} = %{version}-%{release}
026520
026520
# Prevent bogus provides of private libs from perl
026520
%global __provides_exclude_from %{?__provides_exclude_from:%{__provides_exclude_from}|}^%{perl_vendorarch}/auto/.*\\.so$
026520
026520
%description
026520
The Open IPMI project aims to develop an open code base to allow access to
026520
platform information using Intelligent Platform Management Interface (IPMI).
026520
This package contains the tools of the OpenIPMI project.
026520
026520
%package libs
026520
Summary: The OpenIPMI runtime libraries
026520
026520
%description libs
026520
The OpenIPMI-libs package contains the runtime libraries for shared binaries
026520
and applications.
026520
026520
%package perl
026520
Summary:  IPMI Perl language bindings
026520
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
026520
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
026520
026520
%description perl
026520
The OpenIPMI-perl package contains the Perl language bindings for OpenIPMI.
026520
026520
%package -n python3-openipmi
026520
%{?python_provide:%python_provide python3-openipmi}
026520
%{?python_provide:%python_provide python3-OpenIPMI}
026520
# Remove before F30
026520
Provides:  %{name}-python = %{version}-%{release}
026520
Provides:  %{name}-python%{?_isa} = %{version}-%{release}
026520
Obsoletes: %{name}-python2 < %{version}-%{release}
026520
Summary:   IPMI Python language bindings
026520
Requires:  %{name}-libs%{?_isa} = %{version}-%{release}
026520
026520
%description -n python3-openipmi
026520
The OpenIPMI-python package contains the Python language bindings for OpenIPMI.
026520
026520
%package devel
026520
Summary:  The development environment for the OpenIPMI project
026520
Requires: pkgconfig
026520
Requires: %{name}%{?_isa} = %{version}-%{release}
026520
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
a1b228
Requires: %{name}-lanserv%{?_isa} = %{version}-%{release}
026520
026520
%description devel
026520
The OpenIPMI-devel package contains the development libraries and header files
026520
of the OpenIPMI project.
026520
026520
%package lanserv
026520
Summary:  Emulates an IPMI network listener
026520
Requires: %{name}%{?_isa} = %{version}-%{release}
a1b228
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
026520
026520
%description lanserv
026520
This package contains a network IPMI listener.
026520
026520
026520
%prep
026520
%autosetup -p1
026520
026520
%build
026520
026520
%configure \
026520
    CFLAGS="-fPIC %{optflags} -z now -fno-strict-aliasing" \
026520
    LDFLAGS="%{__global_ldflags} -Wl,--as-needed" \
026520
    --disable-dependency-tracking \
026520
    --disable-static \
026520
    --with-pythoninstall=%{python3_sitearch} \
026520
    --with-python=%{__python3} \
026520
    --with-tcl=no \
026520
    --with-tkinter=no
026520
026520
# https://fedoraproject.org/wiki/Packaging:Guidelines?rd=Packaging/Guidelines#Beware_of_Rpath
026520
# get rid of rpath still present in OpenIPMI-perl package
026520
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
026520
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
026520
026520
make   # not %%{?_smp_mflags} safe
026520
026520
%install
026520
make install DESTDIR=%{buildroot}
026520
026520
install -d %{buildroot}{%{_sysconfdir}/sysconfig,%{_unitdir},%{_libexecdir}}
026520
install -m 644 %SOURCE1 %{buildroot}%{_sysconfdir}/sysconfig/ipmi
026520
install -m 755 %SOURCE2 %{buildroot}%{_libexecdir}/openipmi-helper
026520
install -m 644 %SOURCE3 %{buildroot}%{_unitdir}/ipmi.service
026520
install -d %{buildroot}%{_sysconfdir}/modprobe.d
026520
026520
rm %{buildroot}/%{_mandir}/man1/openipmigui.1 %{buildroot}%{_libdir}/*.la
026520
026520
# add missing documentation 
026520
echo ".so man1/openipmicmd.1" > %{buildroot}%{_mandir}/man1/ipmicmd.1
026520
026520
echo ".so man1/openipmish.1" > %{buildroot}%{_mandir}/man1/ipmish.1
026520
026520
%post
026520
%systemd_post ipmi.service
026520
026520
%preun
026520
%systemd_preun ipmi.service
026520
026520
%postun
026520
%systemd_postun_with_restart ipmi.service
026520
026520
%ldconfig_scriptlets libs
026520
%ldconfig_scriptlets lanserv
026520
026520
### A sysv => systemd migration contains all of the same scriptlets as a
026520
### systemd package.  These are additional scriptlets
026520
026520
%triggerun -- OpenIPMI < 2.0.18-14
026520
# Save the current service runlevel info
026520
# User must manually run systemd-sysv-convert --apply httpd
026520
# to migrate them to systemd targets
026520
/usr/bin/systemd-sysv-convert --save ipmi >/dev/null 2>&1 ||:
026520
/bin/systemctl --no-reload enable ipmi.service >/dev/null 2>&1 ||:
026520
# Run these because the SysV package being removed won't do them
026520
/sbin/chkconfig --del ipmi >/dev/null 2>&1 || :
026520
/bin/systemctl try-restart ipmi.service >/dev/null 2>&1 || :
026520
026520
%files
026520
%license COPYING COPYING.BSD COPYING.LIB
026520
%doc CONFIGURING_FOR_LAN FAQ README README.Force README.MotorolaMXP
026520
%config(noreplace) %{_sysconfdir}/sysconfig/ipmi
026520
%{_libexecdir}/openipmi-helper
026520
%{_bindir}/ipmicmd
026520
%{_bindir}/ipmish
026520
%{_bindir}/ipmi_ui
026520
%{_bindir}/openipmicmd
026520
%{_bindir}/openipmish
026520
%{_bindir}/rmcp_ping
026520
%{_bindir}/solterm
026520
%{_bindir}/openipmi_eventd
026520
%{_unitdir}/ipmi.service
026520
%{_mandir}/man1/ipmi_ui*
026520
%{_mandir}/man1/openipmicmd*
026520
%{_mandir}/man1/openipmish*
026520
%{_mandir}/man1/rmcp_ping*
026520
%{_mandir}/man1/solterm*
026520
%{_mandir}/man1/ipmish*
026520
%{_mandir}/man1/ipmicmd*
026520
%{_mandir}/man1/openipmi_eventd*
026520
%{_mandir}/man7/ipmi_cmdlang*
026520
%{_mandir}/man7/openipmi_conparms*
026520
026520
%files perl
026520
%attr(644,root,root) %{perl_vendorarch}/OpenIPMI.pm
026520
%{perl_vendorarch}/auto/OpenIPMI
026520
026520
%files -n python3-openipmi
026520
%{python3_sitearch}/*OpenIPMI*
026520
%{python3_sitearch}/__pycache__/OpenIPMI.*.pyc
026520
026520
%files libs
026520
%{_libdir}/libOpenIPMI*.so.*
026520
026520
%files devel
026520
%{_includedir}/OpenIPMI
026520
%{_libdir}/*.so
026520
%{_libdir}/pkgconfig/*.pc
026520
026520
%files lanserv
026520
%config(noreplace) %{_sysconfdir}/ipmi/ipmisim1.emu
026520
%config(noreplace) %{_sysconfdir}/ipmi/lan.conf
026520
%dir %{_sysconfdir}/ipmi
026520
%{_bindir}/ipmilan
026520
%{_bindir}/ipmi_sim
026520
%{_bindir}/sdrcomp
026520
%{_libdir}/libIPMIlanserv.so.*
026520
%{_mandir}/man8/ipmilan.8*
026520
%{_mandir}/man1/ipmi_sim.1*
026520
%{_mandir}/man5/ipmi_lan.5*
026520
%{_mandir}/man5/ipmi_sim_cmd.5*
026520
026520
%changelog
a1b228
* Fri Jan 28 2022 Pavel Cahyna <pcahyna@redhat.com> - 2.0.32-3
a1b228
- Add a patch to resolve one more issue found by rpmdiff/rpminspect:
a1b228
  fix getaddrinfo detection to avoid using gethostbyname.
a1b228
a1b228
* Wed Jan 26 2022 Pavel Cahyna <pcahyna@redhat.com> - 2.0.32-2
a1b228
- Resolve issues found by rpmdiff
a1b228
  - add explicit Requires: on subpackages to avoid the need to test
a1b228
    interoperability between the various combinations of old and new
a1b228
    subpackages
a1b228
a1b228
* Sun Jan 23 2022 Igor Raits <igor.raits@gmail.com> - 2.0.32-1
a1b228
- Update to 2.0.32 (rhbz#1990072)
a1b228
026520
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.31-5
026520
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
026520
  Related: rhbz#1991688
026520
026520
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.31-4
026520
- Rebuilt for RHEL 9 BETA for openssl 3.0
026520
  Related: rhbz#1971065
026520
026520
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.31-3
026520
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
026520
026520
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.31-2
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
026520
026520
* Mon Jan 25 2021 Josef Ridky <jridky@redhat.com> - 2.0.31-1
026520
- New upstream release 2.0.31 (#1905768)
026520
026520
* Thu Sep 17 2020 Josef Řídký <jridky@redhat.com> - 2.0.29-1
026520
- New upstream release 2.0.29 (#1846675)
026520
026520
* Thu Aug 27 2020 Josef Řídký <jridky@redhat.com> - 2.0.28-7
026520
- Rebuilt for new net-snmp release
026520
026520
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.28-6
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
026520
026520
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.28-5
026520
- Perl 5.32 rebuild
026520
026520
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.0.28-4
026520
- Rebuilt for Python 3.9
026520
026520
* Mon Feb 03 2020 Vaclav Dolezal <vdolezal@redhat.com> - 2.0.28-3
026520
- Cleanup of openipmi-helper script; removed no-udev branch (#1579773)
026520
026520
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.28-2
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
026520
026520
* Mon Dec 16 2019 Vaclav Dolezal <vdolezal@redhat.com> - 2.0.28-1
026520
- New upstream release 2.0.28
026520
026520
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.27-5
026520
- Rebuilt for Python 3.8.0rc1 (#1748018)
026520
026520
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.27-4
026520
- Rebuilt for Python 3.8
026520
026520
* Thu Aug 01 2019 Vaclav Dolezal <vdolezal@redhat.com> - 2.0.27-3
026520
- Prevent bogus Provides of libOpenIPMI.so.0 by OpenIPMI-perl (#1734407)
026520
026520
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.27-2
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
026520
026520
* Wed Jun 26 2019 Vaclav Dolezal <vdolezal@redhat.com> - 2.0.27-1
026520
- New upstream release 2.0.27
026520
026520
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.25-10
026520
- Perl 5.30 rebuild
026520
026520
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-9
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
026520
026520
* Wed Sep 05 2018 Josef Ridky <jridky@redhat.com> - 2.0.25-8
026520
- Fix man page self referencing error (#1612159)
026520
026520
* Tue Jul 24 2018 Adam Williamson <awilliam@redhat.com> - 2.0.25-7
026520
- Rebuild for new net-snmp
026520
026520
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.25-6
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
026520
026520
* Tue Jul 03 2018 Petr Pisar <ppisar@redhat.com> - 2.0.25-5
026520
- Perl 5.28 rebuild
026520
026520
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.25-4
026520
- Perl 5.28 rebuild
026520
026520
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.25-3
026520
- Rebuilt for Python 3.7
026520
026520
* Wed Apr 18 2018 Josef Ridky <jridky@redhat.com> - 2.0.25-2
026520
- Python3 update
026520
026520
* Tue Apr 17 2018 Josef Ridky <jridky@redhat.com> - 2.0.25-1
026520
- New upstream release 2.0.25 (#1568194)
026520
- Replace Python2 with Python3
026520
- Drop OpenIPMI-python2 and set it as Obsolete
026520
- Introduce new OpenIPMI-python3 package
026520
026520
* Tue Mar 06 2018 Josef Ridky <jridky@redhat.com> - 2.0.24-5
026520
- use ldconfig macros
026520
 
026520
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.24-4
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
026520
026520
* Mon Jan 22 2018 Josef Ridky <jridky@redhat.com> -2.0.14-3
026520
- remove old systemd dependencies
026520
026520
* Mon Jan 22 2018 Josef Ridky <jridky@redhat.com> -2.0.14-2
026520
- restore removed requirements
026520
026520
* Thu Jan 18 2018 Tomasz Kłoczko <kloczek@fedoraproject.org> - 2.0.24-1
026520
- remove pkgconfig from devel Requires
026520
- remove libedit Requires (it is autogenerated as SONAME dependency)
026520
- remove main package dependecy fron devell Requires (only libs is needed
026520
- add use %%{?_isa} macro in Requires
026520
026520
* Wed Jan 17 2018 Josef Ridky <jridky@redhat.com> - 2.0.24-1
026520
- New upstream release 2.0.24
026520
- spec update (based on Tomasz Kłoczko's pull request)
026520
- reduce the number of SONAME dependencies by use -Wl,--as-needed in LDFLAGS
026520
- change COPYING COPYING.BSD COPYING.LIB files as %%license
026520
- add %%{_sysconfdir}/ipmi directory to lanserv %%files list
026520
- execute /sbin/ldconfig in %%post and %%postun section for lanserv sub-packages
026520
- remove desktop-file-utils and GUI related packages from BuildRequires
026520
- use roff links instead symlinks to gzipped man pages
026520
- use %%autosetup in %%prep
026520
- remove Group tags
026520
026520
* Thu Oct 19 2017 Josef Ridky <jridky@redhat.com> - 2.0.23-6
026520
- Rebuilt for python2 package
026520
026520
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.0.23-5
026520
- Add Provides for the old name without %%_isa
026520
026520
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.0.23-4
026520
- Python 2 binary package renamed to python2-openipmi
026520
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
026520
026520
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.23-3
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
026520
026520
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.23-2
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
026520
026520
* Thu Jun 15 2017 Josef Ridky <jridky@redhat.com> - 2.0.23-1
026520
- New upstream release 2.0.23 (#1461606)
026520
026520
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.22-6
026520
- Perl 5.26 rebuild
026520
026520
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.22-5
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
026520
026520
* Mon Oct 17 2016 Josef Ridky <jridky@redhat.com> - 2.0.22-4
026520
- Add support for openssl-1.1.0 library (#1383995)
026520
026520
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.22-3
026520
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
026520
026520
* Fri Jul 15 2016 Boris Ranto <branto@redhat.com> - 0:2.0.22-2
026520
- Rebuild for glibc hack
026520
026520
* Thu Jun 02 2016 Boris Ranto <branto@redhat.com> - 0:2.0.22-1
026520
- New version (0:2.0.22-1)
026520
- Apply 'OpenIPMI-2.0.18-pthread-pkgconfig.patch'
026520
- Apply './OpenIPMI-2.0.19-man.patch'
026520
- Apply 'OpenIPMI-2.0.21-nobundle.patch'
026520
026520
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.21-13
026520
- Perl 5.24 rebuild
026520
026520
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.21-12
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
026520
026520
* Wed Dec 09 2015 Boris Ranto <branto@redhat.com> - 2.0.21-11
026520
- Avoid warning on update/removal (#1256798)
026520
026520
* Tue Nov 24 2015 Boris Ranto <branto@redhat.com> - 2.0.21-10
026520
- Remove duplicities in filelists
026520
026520
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.21-9
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
026520
026520
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.21-8
026520
- Perl 5.22 rebuild
026520
026520
* Wed Apr 22 2015 Ales Ledvinka <aledvink@redhat.com> - 2.0.21-7
026520
- Remove modalias subpackage.
026520
026520
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.21-6
026520
- Perl 5.20 rebuild
026520
026520
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.21-5
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
026520
026520
* Tue Aug 12 2014 Ledvinka Ales <aledvink@redhat.com> - 2.0.21-4
026520
- Use system libedit instead of the old one bundled with source.
026520
026520
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.21-3
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
026520
026520
* Tue May 13 2014 Jaromir Capik <jcapik@redhat.com> - 2.0.21-2
026520
- Fixing FTBFS due to unpackaged files (#1075696)
026520
026520
* Wed Jan 29 2014 Ledvinka Ales <aledvink@redhat.com> - 2.0.21-1
026520
- Update to new upstream (fixed case 2nd) release.
026520
026520
* Tue Jan 14 2014 Ledvinka Ales <aledvink@redhat.com> - 2.0.19-11
026520
- Probe modules on installation. Do not wait until reboot.
026520
026520
* Wed Nov 13 2013 Ledvinka Ales <aledvink@redhat.com> - 2.0.19-10
026520
- Correct aliases matching module strings.
026520
026520
* Tue Nov 05 2013 Fedora Release Engineering <aledvink@redhat.com> - 2.0.19-9
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
026520
026520
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.19-8
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
026520
026520
* Fri Jul 19 2013 Ledvinka Ales <aledvink@redhat.com> - 2.0.19-7
026520
- Hint compilation to avoid strict aliasing and prevent type-punned pointer issues.
026520
- Fix rPath regression for OpenIPMI-perl library.
026520
026520
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.0.19-6
026520
- Perl 5.18 rebuild
026520
026520
* Tue Jun  4 2013 Ledvinka Ales <aledvink@redhat.com> - 2.0.19-5
026520
- Support aarch64 by replicating release toolchain.
026520
- Configuration subpackage with kernel probed wildcard module aliases.
026520
  as workaround for bz#961878 and fesco#1110
026520
- Man pages symlinks same as bin symlinks.
026520
- ipmi_ui command help argument.
026520
- ipmilan missing options.
026520
- Fixed build requirements.
026520
026520
* Thu Apr 25 2013 Ledvinka Ales <aledvink@redhat.com> - 2.0.19-4
026520
- rpmdiff fixes
026520
026520
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.19-3
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
026520
026520
* Mon Aug 27 2012 Jan Safranek <jsafrane@redhat.com> - 2.0.19-2
026520
- Updated RPM scriptlets with latest systemd-rpm macros (#850246)
026520
- Fixed fedora-review tool complaints
026520
026520
* Wed Aug  8 2012 Jan Safranek <jsafrane@redhat.com> - 2.0.19-1
026520
- Update to 2.0.19
026520
026520
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.18-16
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
026520
026520
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 2.0.18-15
026520
- Perl 5.16 rebuild
026520
026520
* Mon May  7 2012 Jan Safranek <jsafrane@redhat.com> - 2.0.18-14
026520
- Added ipmi systemd unit
026520
026520
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.18-13
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
026520
026520
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 2.0.18-12
026520
- Perl mass rebuild
026520
026520
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 2.0.18-11
026520
- Perl mass rebuild
026520
026520
* Fri Jul  8 2011 Jan Safranek <jsafrane@redhat.com> - 2.0.18-10
026520
- Rebuilt for new Net-SNMP
026520
026520
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.0.18-9
026520
- Perl mass rebuild
026520
026520
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.0.18-8
026520
- Perl 5.14 mass rebuild
026520
026520
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.18-7
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
026520
026520
* Mon Nov  1 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.18-6
026520
- Removed the openipmigui tool, it does not work with TCL without thread
026520
  support (#646184)
026520
026520
* Tue Oct 26 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.18-5
026520
- Rebuilt for new Net-SNMP
026520
026520
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.18-4
026520
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
026520
026520
* Thu Jul  8 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.18-3
026520
- added lincense files to OpenIPMI-libs subpackage as requested by
026520
  Fedora Licensing Guidelines
026520
026520
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.0.18-2
026520
- Mass rebuild with perl-5.12.0
026520
026520
* Wed May  5 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.18-1
026520
- updated to OpenIPMI-2.0.18
026520
- fixed OpenIPMIpthread pkgconfig file (#468067)
026520
026520
* Mon May  3 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.17-1
026520
- updated to OpenIPMI-2.0.17
026520
026520
* Thu Mar 18 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.16-12
026520
- implemented mandatory 'force-reload' command in ipmi service
026520
026520
* Thu Mar 11 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.16-11
026520
- rebuild against new gdbm
026520
026520
* Wed Mar  3 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.16-10
026520
- add README.initscript describing /etc/init.d/ipmi initscript exit codes
026520
  (#562151)
026520
026520
* Mon Feb 22 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.16-9
026520
- fix package License: field, there *are* sources with BSD header
026520
- distribute README files and COPYING in package
026520
026520
* Tue Jan  5 2010 Jan Safranek <jsafrane@redhat.com> - 2.0.16-8
026520
- fix package License: field, there is no source with BSD header
026520
026520
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 2.0.16-7
026520
- rebuild against perl 5.10.1
026520
026520
* Tue Dec  1 2009 Jan Safranek <jsafrane@redhat.com> - 2.0.16-6
026520
- fix package compilation to remove rpmlint errors
026520
026520
* Wed Sep 30 2009 Jan Safranek <jsafrane@redhat.com> - 2.0.16-5
026520
- rebuilt with new net-snmp
026520
026520
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.16-4
026520
- rebuilt with new openssl
026520
026520
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.16-3
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
026520
026520
* Wed Apr 15 2009 Jan Safranek <jsafrane@redhat.com> - 2.0.16-2
026520
- fix compilation flags, debuginfo package is correctly generated now
026520
026520
* Thu Mar 19 2009 Jan Safranek <jsafrane@redhat.com> - 2.0.16-1
026520
- new upstream release
026520
026520
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.14-11
026520
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
026520
026520
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.14-10
026520
- rebuild with new openssl
026520
026520
* Thu Dec 11 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-9
026520
- fix linking without rpath, prelink won't screw up the libraries
026520
  anymore (#475265)
026520
026520
* Wed Dec 10 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-8
026520
- shorter probe interval is used in init script, making the service startup
026520
  quicker in most situations (#475101)
026520
026520
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.14-7
026520
- Rebuild for Python 2.6
026520
026520
* Thu Oct 30 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-6
026520
- removed static libraries from the -devel subpackage
026520
- fixed openipmigui.desktop file
026520
026520
* Thu Oct 23 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-5
026520
- fixed typos in the descriptions
026520
- added .desktop file for openipmigui tool
026520
026520
* Mon Oct 20 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-4
026520
- fixed description of the package
026520
026520
* Thu Oct 16 2008 Jan Safranek <jsafrane@redhat.com> - 2.0.14-3
026520
- split ipmitool to separate package
026520
- added 'reload' functionality to init script
026520
- added seraparate -gui subpackage
026520
026520
* Wed Jul 30 2008 Phil Knirsch <pknirsch@redhat.com> - 2.0.14-2
026520
- Fixed rpath problem in libOpenIPMIposix.so.0.0.1
026520
026520
* Tue Jul 29 2008 Phil Knirsch <pknirsch@redhat.com> - 2.0.14-1
026520
- Fixed several specfile problems (#453751)
026520
- Update to OpenIPMI-2.0.14
026520
026520
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.13-2
026520
- Autorebuild for GCC 4.3
026520
026520
* Wed Dec 05 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.13-1
026520
- Updated to OpenIPMI-2.0.13
026520
- Rebuild due to new openssl
026520
026520
* Wed Oct 10 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.11-3
026520
- Added missing perl-devel buildrequires
026520
026520
* Mon Sep 24 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.11-2
026520
- Added missing popt-devel buildrequires
026520
026520
* Fri Aug 17 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.11-2
026520
- Fix rebuild problems due to glibc change
026520
- License review and fixes
026520
026520
* Tue Apr 24 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.11-1
026520
- Update to OpenIPMI-2.0.11
026520
026520
* Tue Feb 27 2007 Phil Knirsch <pknirsch@redhat.com> - 2.0.6-8
026520
- Update for ipmitool-1.8.9
026520
026520
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.0.6-7
026520
- rebuild for python 2.5
026520
026520
* Tue Nov 28 2006 Phil Knirsch <pknirsch@redhat.com> - 2.0.6-6.fc7
026520
- Update due to new net-snmp-5.4
026520
- Some specfile updates
026520
026520
* Tue Jul 18 2006 Phil Knirsch <pknirsch@redhat.com> - 2.0.6-5
026520
- Fixed check for udev in initscript (#197956)
026520
026520
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.0.6-4.1
026520
- rebuild
026520
026520
* Fri Jun 16 2006 Bill Nottingham <notting@redhat.com> 2.0.6-4
026520
- don't include <linux/compiler.h>
026520
026520
* Fri Jun 16 2006 Jon Masters <jcm@redhat.com> 2.0.6-3
026520
- Fix a build requires (needs glibc-kernheaders)
026520
026520
* Thu Jun 15 2006 Jesse Keating <jkeating@redhat.com> 2.0.6-2
026520
- Bump for new glib2
026520
026520
* Tue May 16 2006 Phil Knirsch <pknirsch@redhat.com> 2.0.6-1
026520
- Fixed bug with type conversion in ipmitool (#191091)
026520
- Added python bindings 
026520
- Split off perl and python bindings in separate subpackages
026520
- Dropped obsolete patches
026520
- Added missing buildprereq on readline-devel
026520
- Made it install the python bindings properly on 64bit archs
026520
026520
* Mon May 15 2006 Phil Knirsch <pknirsch@redhat.com>
026520
- Updated ipmitool to 1.8.8
026520
- Updated OpenIPMI to 2.0.6
026520
026520
* Fri Feb 17 2006 Phil Knirsch <pknirsch@redhat.com> 1.4.14-19
026520
- Added missing PreReq for chkconfig
026520
026520
* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 1.4.14-18.2.1
026520
- rebump for build order issues during double-long bump
026520
026520
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.4.14-18.2
026520
- bump again for double-long bug on ppc(64)
026520
026520
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.4.14-18.1
026520
- rebuilt for new gcc4.1 snapshot and glibc changes
026520
026520
* Mon Feb 06 2006 Phil Knirsch <pknirsch@redhat.com> 1.4.14-18
026520
- Updated ipmitool to latest upstream version.
026520
- Removed 3 patches for already fixed bugs in latest ipmitool.
026520
- Adapted warning message fix for ipmitool for latest version.
026520
026520
* Tue Jan 24 2006 Phil Knirsch <pknirsch@redhat.com> 1.4.14-17
026520
- Fixed some minor things in initscripts.
026520
026520
* Mon Jan 09 2006 Phil Knirsch <pknirsch@redhat.com> 1.4.14-16
026520
- Included FRU fix for displaying FRUs with ipmitool
026520
- Included patch for new option to specify a BMC password for IPMI 2.0 sessions
026520
026520
* Tue Jan 03 2006 Radek Vokal <rvokal@redhat.com> 1.4.14-15
026520
- Rebuilt against new libnetsnmp
026520
026520
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
026520
- rebuilt
026520
026520
* Wed Nov 23 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-14
026520
- Some more initscript and sysconfig updates from Dell.
026520
026520
* Wed Nov 09 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-13
026520
- Rebuilt to link against latest openssl libs.
026520
- Fixed ipmitool not setting session privilege level (#172312)
026520
026520
* Wed Nov 02 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-11
026520
- Rebuild to link against new net-snmp libs.
026520
026520
* Tue Oct 11 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-10
026520
- Updated initscript to fix missing redhat-lsb bug (#169901)
026520
026520
* Thu Sep 08 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-9
026520
- Another update to latest initscripts from Dell
026520
- Fixed some missing return statements for non-void functions (#164138)
026520
026520
* Thu Sep 01 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-8
026520
- Updated initscript to latest version from Dell
026520
026520
* Fri Aug 12 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-7
026520
- Fixed the unwanted output of failed module loading of the initscript. Behaves
026520
  now like all our other initscripts (#165476)
026520
026520
* Fri Aug 05 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-6
026520
- Fixed build problem on 64bit machines
026520
026520
* Fri Jul 15 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-5
026520
- Fixed missing change to not autostart in the initscript
026520
026520
* Wed Jul 06 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-4
026520
- Made the initscript a replacing configfile
026520
026520
* Mon Jul 04 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-3
026520
- Updated versions of the initscripts and sysconf files
026520
- Fixed typo in preun script and changelog
026520
026520
* Mon Jun 27 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.14-2
026520
- Updated to OpenIPMI-1.4.14
026520
- Split the main package into normal and libs package for multilib support
026520
- Added ipmitool-1.8.2 to OpenIPMI and put it in tools package
026520
- Added sysconf and initscript (#158270)
026520
- Fixed oob subscripts (#149142)
026520
026520
* Wed Mar 30 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.11-5
026520
- Correctly put libs in the proper packages
026520
026520
* Thu Mar 17 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.11-4
026520
- gcc4 rebuild fixes
026520
- Added missing gdbm-devel buildprereq
026520
026520
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 1.4.11-3
026520
- bump release and rebuild with gcc 4
026520
026520
* Tue Feb 08 2005 Karsten Hopp <karsten@redhat.de> 1.4.11-2 
026520
- update
026520
026520
* Tue Oct 26 2004 Phil Knirsch <pknirsch@redhat.com>
026520
- Initial version