Blame SPECS/OpenIPMI.spec

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