Accepting request 621121 from systemsmanagement
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/621121 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/freeipmi?expand=0&rev=37
This commit is contained in:
commit
13c454e8c0
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b46c9432e8649b87d4646bbf4da32f7e9039796fc256f4b229c94c3ac7d0bde5
|
||||
size 3321187
|
Binary file not shown.
3
freeipmi-1.6.2.tar.gz
Normal file
3
freeipmi-1.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31513324591bf8d79d7cdeb39ecfac45e0ea7f6a5905a625a4a906fb8270124a
|
||||
size 3399236
|
BIN
freeipmi-1.6.2.tar.gz.sig
Normal file
BIN
freeipmi-1.6.2.tar.gz.sig
Normal file
Binary file not shown.
@ -1,3 +1,49 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri May 4 05:58:46 UTC 2018 - kkaempf@suse.com
|
||||
|
||||
- Update to 1.6.2
|
||||
o Fix error in bridging where bridged requests were sent to the
|
||||
wrong LUN.
|
||||
o Fix command parsing bugs in legacy ipmi-config scripts
|
||||
(i.e. bmc-config, ipmi-pef-config, etc.)
|
||||
o Do not output full path of daemons in syslog, output only the
|
||||
daemon name (i.e. output "ipmidetected" instead of
|
||||
"/usr/sbin/ipmidetectd").
|
||||
o Update channel range from 0-7 to 0-11, per errata IPMI update.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 3 10:11:46 UTC 2018 - kkaempf@suse.com
|
||||
|
||||
- Update to 1.6.1
|
||||
o Add IPv6 hostname support to FreeIPMI, all of FreeIPMI can now take
|
||||
IPv6 addresses as inputs to "host" parameters, options, or inputs.
|
||||
o Support significant portions of IPMI IPv6 configuration in
|
||||
libfreeipmi.
|
||||
o Add --no-session option in ipmi-raw.
|
||||
o Add SDR cache options to ipmi-config.
|
||||
o Legacy -f short option for --flush-cache and -Q short option for
|
||||
quiet-cache. Backwards compatible for tools that supported it
|
||||
before.
|
||||
o In ipmi-oem, support Gigabyte get-bmc-services and
|
||||
set-bmc-services.
|
||||
o Various performance improvements:
|
||||
- Remove excessive calls to secure_memset to clear memory.
|
||||
- Remove excessive memsets and clears of data.
|
||||
- Remove unnecessary "double input checks".
|
||||
- Remove expensive input checks in libfreeipmi fiid library.
|
||||
Fallout from this may include FIID_ERR_FIELD_NOT_FOUND
|
||||
errors in different fiid functions.
|
||||
- Remove unnecessary input checks in libfreeipmi fiid library.
|
||||
- Add recent 'lookups' of fields in fiid library to internal
|
||||
cache.
|
||||
o Various minor fixes/improvements
|
||||
- Update libfreeipmi core API to use poll() instead of select(), to
|
||||
avoid issues with applications with a high number of threads.
|
||||
|
||||
- As a side point, while IPv6 networking support has been added, IPv6
|
||||
configuration in ipmi-config & bmc-config is not supported in this
|
||||
release.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 23 13:37:11 UTC 2017 - rbrown@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package freeipmi
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2003-2008 FreeIPMI Core Team
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -43,14 +43,14 @@
|
||||
%{!?_initddir: %global _initddir %{_sysconfdir}/init.d}
|
||||
|
||||
Name: freeipmi
|
||||
Version: 1.5.7
|
||||
Version: 1.6.2
|
||||
Release: %{release}
|
||||
Url: http://www.gnu.org/software/freeipmi/
|
||||
Source0: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz
|
||||
Source4: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz.sig
|
||||
Source5: %{name}.keyring
|
||||
Summary: FreeIPMI
|
||||
License: GPL-3.0+
|
||||
License: GPL-3.0-or-later
|
||||
Group: System/Management
|
||||
BuildRequires: automake
|
||||
BuildRequires: libgcrypt-devel
|
||||
@ -226,8 +226,14 @@ mkdir -p %{buildroot}/%{_sysconfdir}/rc.d/init.d
|
||||
make install DESTDIR=%{buildroot}
|
||||
%endif
|
||||
|
||||
mkdir -p %{buildroot}%{_datadir}/doc/packages/freeipmi-bmc-watchdog
|
||||
mv %{buildroot}%{_datadir}/doc/packages/freeipmi/*bmc-watchdog* %{buildroot}%{_datadir}/doc/packages/freeipmi-bmc-watchdog
|
||||
|
||||
# Silent build check warning
|
||||
rm -f %{buildroot}%{_datadir}/doc/packages/freeipmi/INSTALL
|
||||
rm -rf %{buildroot}%{_datadir}/doc/packages/freeipmi/contrib
|
||||
rm -rf %{buildroot}%{_datadir}/doc/packages/freeipmi/freeipmi-design.txt
|
||||
rm -rf %{buildroot}%{_datadir}/doc/packages/freeipmi/freeipmi-testing.txt
|
||||
|
||||
%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 0%{?fedora} || 0%{?rhel}
|
||||
# remove /etc/init.d -> /etc/rc.d/init.d
|
||||
@ -375,6 +381,9 @@ fi
|
||||
# doc INSTALL
|
||||
%doc NEWS
|
||||
%doc README
|
||||
%doc README.argp
|
||||
%doc README.build
|
||||
%doc README.openipmi
|
||||
%doc TODO
|
||||
%doc %{_infodir}/*
|
||||
%doc COPYING.ipmiping
|
||||
@ -385,6 +394,9 @@ fi
|
||||
%doc COPYING.ipmidetect
|
||||
%doc COPYING.ipmi-fru
|
||||
%doc COPYING.ZRESEARCH
|
||||
%doc COPYING.ipmi-dcmi
|
||||
%doc COPYING.ipmiseld
|
||||
%doc COPYING.sunbmc
|
||||
%doc DISCLAIMER.ipmiping
|
||||
%doc DISCLAIMER.ipmipower
|
||||
%doc DISCLAIMER.ipmiconsole
|
||||
@ -399,12 +411,14 @@ fi
|
||||
%doc DISCLAIMER.pstdout.UC
|
||||
%doc DISCLAIMER.ipmidetect.UC
|
||||
%doc DISCLAIMER.ipmi-fru.UC
|
||||
%doc DISCLAIMER.ipmi-dcmi
|
||||
%doc DISCLAIMER.ipmiseld
|
||||
%doc doc/freeipmi-coding.txt
|
||||
%doc doc/freeipmi-hostrange.txt
|
||||
%doc doc/freeipmi-libraries.txt
|
||||
%doc doc/freeipmi-bugs-issues-and-workarounds.txt
|
||||
#%dir %{_docdir}
|
||||
%{_docdir}/%{name}
|
||||
%doc freeipmi-oem-documentation-requirements.txt
|
||||
|
||||
%if 0%{?fedora_version} == 20
|
||||
%{docpath}
|
||||
%endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user