Logoj0ke.net Open Build Service > Projects > internetx > ipmitool > Changes
Sign Up | Log In

Changes of Revision 2

[-] Added ipmitool.spec
x
 
1
@@ -0,0 +1,150 @@
2
+#
3
+# spec file for package ipmitool (Version 1.8.11)
4
+#
5
+# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
6
+# This file and all modifications and additions to the pristine
7
+# package are under the same license as the package itself.
8
+#
9
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
10
+#
11
+
12
+# norootforbuild
13
+# usedforbuild    aaa_base acl attr audit-libs autoconf automake bash binutils bzip2 coreutils cpio cpp cpp42 cracklib cvs diffutils file filesystem fillup findutils gawk gcc gcc42 gdbm gettext gettext-devel glibc glibc-devel glibc-locale grep groff gzip info insserv less libacl libattr libbz2-1 libbz2-devel libdb-4_5 libgcc42 libgomp42 libltdl-3 libmudflap42 libopenssl-devel libopenssl0_9_8 libreadline5 libstdc++42 libtool libuuid1 libvolume_id libxcrypt libzio linux-kernel-headers m4 make man mktemp ncurses ncurses-devel net-tools netcfg openssl-certs pam pam-modules patch perl perl-base permissions popt readline-devel rpm sed sysvinit tar texinfo timezone util-linux zlib zlib-devel
14
+
15
+Name:           ipmitool
16
+BuildRequires:  openssl-devel readline-devel
17
+Url:            http://ipmitool.sourceforge.net/
18
+Summary:        Utility for IPMI Control
19
+Version:        1.8.11
20
+Release:        1 
21
+License:        BSD 3-Clause
22
+Group:          System/Management
23
+Source:         http://heanet.dl.sourceforge.net/sourceforge/%{name}/%{name}_%{version}.orig.tar.gz
24
+Patch1:        ipmitool_%{version}-1.diff.gz
25
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
26
+
27
+%description
28
+This package contains a utility for interfacing with devices that
29
+support the Intelligent Platform Management Interface specification. 
30
+IPMI is an open standard for machine health, inventory, and remote
31
+power control.
32
+
33
+This utility can communicate with IPMI-enabled devices through either a
34
+kernel driver such as OpenIPMI or over the RMCP LAN protocol defined in
35
+the IPMI specification.  IPMIv2 adds support for encrypted LAN
36
+communications and remote Serial-over-LAN functionality.
37
+
38
+It provides commands for reading the Sensor Data Repository (SDR) and
39
+displaying sensor values, displaying the contents of the System Event
40
+Log (SEL), printing Field Replaceable Unit (FRU) information, reading
41
+and setting LAN configuration, and chassis power control.
42
+
43
+
44
+
45
+%debug_package
46
+%prep
47
+%setup
48
+zcat %{P:1} | patch -p1
49
+for patch in `cat debian/patches/00list` ; do
50
+patch -p1 < debian/patches/${patch}
51
+done
52
+
53
+%build
54
+CFLAGS="$RPM_OPT_FLAGS" ./configure \
55
+   --prefix=%{_prefix} \
56
+   --bindir=%{_bindir} \
57
+   --sbindir=%{_sbindir} \
58
+   --datadir=%{_datadir} \
59
+   --includedir=%{_includedir} \
60
+   --libdir=%{_libdir} \
61
+   --mandir=%{_mandir} \
62
+   --sysconfdir=%{_sysconfdir}
63
+make
64
+
65
+%install
66
+make DESTDIR=$RPM_BUILD_ROOT install
67
+rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/ipmitool
68
+
69
+%clean
70
+rm -rf $RPM_BUILD_ROOT
71
+
72
+%files
73
+%defattr(-,root,root)
74
+%doc AUTHORS COPYING README contrib
75
+%{_bindir}/*
76
+%{_sbindir}/*
77
+%dir %{_datadir}/ipmitool
78
+%{_datadir}/ipmitool/oem_ibm_sel_map
79
+%doc %{_mandir}/man1/*
80
+%doc %{_mandir}/man8/*
81
+
82
+%changelog
83
+* Thu Jul 16 2009 Carsten Schoene <cs@linux-administrator.com> - 1.8.11-1
84
+- update to release 1.8.11
85
+
86
+* Wed Mar 23 2008 Carsten Schoene <cs@linux-administrator.com>
87
+- added debian patches (lenny backport)
88
+
89
+* Thu Mar 08 2007 - duwe@suse.de
90
+- add new compile fixes
91
+* Wed Mar 07 2007 - duwe@suse.de
92
+- update to 1.8.9, fixing ipmievd crashing.
93
+  This was requesten in Bug#246456
94
+* Fri Oct 13 2006 - duwe@suse.de
95
+- update to today's CVS state
96
+  * might fix SoL issues (Fate #30911)
97
+* Tue Oct 10 2006 - duwe@suse.de
98
+- update to 1.8.8 mainly various fixes:
99
+  version 1.8.8
100
+  * Fix segfaults in sensor data repository list
101
+  * Fix ipmievd to open interface before daemonizing
102
+  * Fix IPMIv1.5 authtype NONE to ignore supplied password
103
+  * Fix cipher suite display bug in lan print
104
+  * Fix typo in IPMIv2 SOL output when sending break
105
+  * Fix improper LUN handling with Tyan SOL
106
+  * Add LUN support to OpenIPMI interface
107
+  * Add support for Kontron OEM commands
108
+  * Update to Kontron Firmware Update command
109
+  version 1.8.7
110
+  * Remove nuclear clause from license
111
+  * Add Sun OEM command for blades
112
+  * Increase argument size for raw commands in shell/exec
113
+  * Fix handling of LUNs for LAN interfaces
114
+  * Add IPMIv2 SOL loopback test
115
+  * Add support for IBM OEM SEL messages
116
+  * Disable file paranoia checks on read files by default
117
+  * Support IPMIv2 SOL on older Intel boxes
118
+  * Display message and exit if keepalive fails during SOL
119
+  * Add support for setting VLAN id and priority
120
+  * Add support for FreeBSD OpenIPMI-compatible driver
121
+  * Add support for IPMIv2 Firmware Firewall
122
+  * Fix gcc4 compile warnings
123
+  * Make ipmievd generate pidfile
124
+  * Add initscripts for ipmievd
125
+* Mon May 29 2006 - kukuk@suse.de
126
+- Fix type conversion bug in ipmi_pef.c [#173658]
127
+* Fri May 26 2006 - schwab@suse.de
128
+- Add readline-devel to BuildRequires to enable shell command.
129
+- Fix use of channel_info bitfield.
130
+- Fix byte swapping.
131
+* Mon Feb 13 2006 - kukuk@suse.de
132
+- Update to ipmitool 1.8.6 [#134708,#131823]
133
+  - Fix memory corruption when sending encrypted SOL traffic
134
+  - Add keepalive timer to IPMIv2 SOL sessions
135
+  - Raise privilege level after creating IPMIv2 session
136
+  - Add support for settable SOL escape character with -e option
137
+  - Add support for Kg BMC key for IPMIv2 authentication with -k option
138
+  - Add support for Tyan IPMIv1.5 SOL with tsol command
139
+  - Add support for PICMG devices
140
+  - Add support for OEM SEL event parsing
141
+  - Add support for command bridging over lan and lanplus interfaces
142
+  - New 'chassis selftest' command
143
+  - Many bufxies and patches from contributors
144
+* Wed Jan 25 2006 - mls@suse.de
145
+- converted neededforbuild to BuildRequires
146
+* Fri Jan 20 2006 - schwab@suse.de
147
+- Don't strip binaries.
148
+* Mon Sep 19 2005 - kukuk@suse.de
149
+- Fix missing return value
150
+* Thu Aug 04 2005 - kukuk@suse.de
151
+- Initial release (FeatureID #165)
152
[+] Added ipmitool_1.8.11-1.diff.gz ^
Added ipmitool-1.8.11.tar.bz2 ^
[+] Added ipmitool_1.8.11-1.dsc ^
Added ipmitool_1.8.11.orig.tar.gz ^