source: projects/specs/trunk/m/mdadm/mdadm-vl.spec @ 8067

Revision 8067, 9.5 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Summary:     Utilities for Linux md devices (software RAID arrays)
2Summary(ja): Linux の MD デバイス(ソフトウエアRAIDアレイ)用のユーティリティ
3Name:        mdadm
4Version:     2.6.9
5Release:     4%{?_dist_release}
6Source:      http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.bz2
7Source1:     mdmonitor.init
8Source2:     mdmpd-0.4.tgz
9Source3:     mdmpd.init
10Source4:     mdassemble.8
11Patch:       mdadm-1.5.0-email.patch
12Patch1:      mdmpd-0.4-node.patch
13Patch2:      mdadm-2.5.2-s390-build.patch
14Patch3:      mdadm-2.5.2-static.patch
15Patch5:      mdadm-2.2-nodiet.patch
16Patch6:      mdadm-2.5.2-cflags.patch
17Patch7:      mdadm-2.3.1-fswab64.patch
18URL:         http://www.kernel.org/pub/linux/utils/raid/mdadm/
19License:     GPL
20Group:       System Environment/Base
21BuildRoot:   %{_tmppath}/%{name}-%{version}-root
22Obsoletes:   mdctl,raidtools
23Requires:    smtpdaemon
24BuildRequires: glibc-static
25
26Vendor: Project Vine
27Distribution: Vine Linux
28
29%description
30mdadm is used to create, manage, and monitor Linux MD (software RAID)
31devices.  As such, it provides similar functionality to the raidtools
32package.  However, mdadm is a single program, and it can perform
33almost all functions without a configuration file, though a configuration
34file can be used to help with some common tasks.
35
36%prep
37%setup -q -a 2
38%patch -p1 -b .email
39%patch1 -p1 -b .node
40%patch2 -p1 -b .s390
41%patch3 -p1 -b .static
42%patch5 -p1 -b .nodiet
43%patch6 -p1 -b .cflags
44#%patch7 -p1 -b .fswab64
45
46%build
47make CXFLAGS="$RPM_OPT_FLAGS" SYSCONFDIR="%{_sysconfdir}" MDASSEMBLE_AUTO=1 mdadm mdadm.static mdassemble.static
48make CXFLAGS="$RPM_OPT_FLAGS" SYSCONFDIR="%{_sysconfdir}" -C mdmpd mdmpd
49
50%install
51make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} BINDIR=/sbin install
52make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} BINDIR=/sbin -C mdmpd install
53install -D -m755 %{SOURCE1} $RPM_BUILD_ROOT/%{_initrddir}/mdmonitor
54install -D -m755 %{SOURCE3} $RPM_BUILD_ROOT/%{_initrddir}/mdmpd
55install -D -m644 %{SOURCE4} $RPM_BUILD_ROOT/%{_mandir}/man8/mdassemble.8
56
57mkdir -p -m 700 $RPM_BUILD_ROOT/var/run/mdmpd
58mkdir -p -m 700 $RPM_BUILD_ROOT/var/run/mdadm
59
60%clean
61rm -rf $RPM_BUILD_ROOT
62
63%post
64/sbin/chkconfig --add mdmonitor
65/sbin/chkconfig --add mdmpd
66
67%preun
68if [ "$1" = 0 ]; then
69    service mdmonitor stop > /dev/null 2>&1 ||:
70    /sbin/chkconfig --del mdmonitor
71    if [ -e %{_initrddir}/mdmpd ]; then
72        service mdmpd stop > /dev/null 2>&1 ||:
73        /sbin/chkconfig --del mdmpd
74    fi
75fi
76
77%postun
78if [ "$1" -ge "1" ]; then
79    service mdmonitor condrestart > /dev/null 2>&1
80    if [ -e %{_initrddir}/mdmpd ]; then
81        service mdmpd condrestart > /dev/null 2>&1
82    fi
83fi
84
85%files
86%defattr(-,root,root)
87%doc ANNOUNCE-* TODO ChangeLog mdadm.conf-example COPYING misc/*
88/sbin/*
89%{_initrddir}/*
90%{_mandir}/man*/md*
91%attr(0700,root,root) %dir /var/run/mdmpd
92%attr(0700,root,root) %dir /var/run/mdadm
93
94%changelog
95* Sat Dec 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.9-4
96- rebuild with VineSeed environment
97
98* Mon Apr 18 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.9-3
99- added BR: glibc-static
100
101* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 2.6.9-2
102- rebuilt with rpm-4.8.1-3
103
104* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.9-1
105- new upstream release
106
107* Sat Oct 04 2008 Shu KONNO <owa@bg.wakwak.com> 2.5.5-1vl5
108- applied new versioning policy, spec in utf-8
109
110* Wed Oct 25 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.5-0vl1
111- new upstream release
112
113* Wed Aug 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5.3-0vl1
114- initial build for Vine Linux
115
116* Mon Aug  7 2006 Doug Ledford <dledford@redhat.com> - 2.5.3-1
117- Update to 2.5.3 which upstream calls a "bug fix" release
118
119* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.2-1.1
120- rebuild
121
122* Fri Jul  7 2006 Doug Ledford <dledford@redhat.com> - 2.5.2-1
123- Update to 2.5.2
124- Remove auto default patch as upstream now has a preferred default auto method
125
126* Wed Mar  8 2006 Peter Jones <pjones@redhat.com> - 2.3.1-3
127- fix build on ppc64
128
129* Wed Mar  8 2006 Jeremy Katz <katzj@redhat.com> - 2.3.1-2
130- fix build on ppc
131
132* Wed Mar  8 2006 Jeremy Katz <katzj@redhat.com> - 2.3.1-1
133- update to 2.3.1 to fix raid5 (#184284)
134
135* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2-1.fc5.2.1
136- bump again for double-long bug on ppc(64)
137
138* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2-1.fc5.2
139- rebuilt for new gcc4.1 snapshot and glibc changes
140
141* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
142- rebuilt
143
144* Mon Dec 05 2005 Warren Togami <wtogami@redhat.com> 2.2-1
145- 2.2 upgrade (#167897)
146- disable diet because we don't ship it anymore
147  and we don't actually use mdassemble now
148
149* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-4.fc4
150- Make the mdmonitor init script use the pid-file option, major cleanup
151  of the script now possible (#134459)
152
153* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-3.fc4
154- Put back the obsoletes: raidtools that was present in 1.11.0-1.fc4
155
156* Mon May 16 2005 Doug Ledford <dledford@redhat.com> 1.11.0-2.fc4
157- Change the default auto= mode so it need not be on the command line to
158  work with udev, however it is still supported on the command line (#132706)
159- Add a man page (from Luca Berra) for mdassemble
160
161* Wed May 11 2005 Doug Ledford <dledford@redhat.com> - 1.11.0-1.fc4
162- Upgrade to 1.11.0
163
164* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 1.9.0-3.fc4
165- fix mdmonitor initscript (#144717)
166
167* Mon Mar 21 2005 Doug Ledford <dledford@redhat.com> 1.9.0-2
168- Build mdadm.static and mdassemble (static as well) to be used in initrd
169  images
170
171* Wed Mar 09 2005 Doug Ledford <dledford@redhat.com> 1.9.0-1
172- Initial upgrade to 1.9.0 and update of doc files
173- Fix an s390 build error
174
175* Mon Oct 04 2004 Doug Ledford <dledford@redhat.com> 1.6.0-2
176- Remove /etc/mdadm.conf from the file list.  Anaconda will write one out
177  if it's needed.
178
179* Fri Oct 01 2004 Doug Ledford <dledford@redhat.com> 1.6.0-1
180- Update to newer upstream version
181- Make mdmpd work on kernels that don't have the event interface patch
182
183* Fri Jul 30 2004 Dan Walsh <dwalsh@redhat.com> 1.5.0-11
184- Create a directory /var/run/mdadm to contain mdadm.pid
185- This cleans up SELinux problem
186
187* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
188- rebuilt
189
190* Sat May 22 2004 Doug Ledford <dledford@redhat.com> - 1.5.0-9
191- Fix Makefile and build method to satisfy bz #123769
192- Add mdmpd man page, update mdmpd version to 0.3 - bz #117160
193- Make sure mdadm --monitor closes all md device files so that md devices
194  can be stopped while mdadm is still running - bz #119532
195
196* Thu May 20 2004 Jeremy Katz <katzj@redhat.com> - 1.5.0-8
197- remove unneeded patch, can use --run instead
198
199* Wed May 19 2004 Jeremy Katz <katzj@redhat.com> - 1.5.0-7
200- add patch with reallyforce mode on creation to be used by anaconda
201
202* Wed May 12 2004 Doug Ledford <dledford@redhat.com> 2.5.0-6
203- Fix a bug in the %postun scriptlet related to downgrading to a version
204  of mdadm that doesn't include the mdmpd daemon.
205
206* Fri May 07 2004 Doug Ledford <dledford@redhat.com> 1.5.0-5
207- Disable service mdmpd by default to avoid [Failed] messages on
208  current 2.6 kernels.  Possibly re-enable it by default once the
209  2.6 kernels have the md event interface.
210
211* Thu Apr 22 2004 Doug Ledford <dledford@redhat.com> 1.5.0-4
212- Update mdmonitor script to start daemon more cleanly
213- Repackage mdmpd tarball to include gcc-3.4 changes and to make
214  mdmpd properly daemonize at startup instead of forking and leaving
215  the child attached to the terminal.
216
217* Thu Mar  4 2004 Bill Nottingham <notting@redhat.com> 1.5.0-3
218- ship /var/run/mpmpd (#117497)
219
220* Thu Feb 26 2004 Doug Ledford <dledford@redhat.com> 1.5.0-2
221- Add a default MAILADDR line to the mdadm.conf file installed by default
222  (Bugzilla #92447)
223- Make it build with gcc-3.4
224
225* Mon Feb 23 2004 Doug Ledford <dledford@redhat.com> 1.5.0-1
226- Update to 1.5.0 (from Matthew J. Galgoci <mgalgoci@redhat.com>)
227
228* Sun Nov 16 2003 Doug Ledford <dledford@redhat.com> 1.4.0-1
229- fix problem with recovery thread sleeping in mdmpd
230
231* Fri Nov 14 2003 Doug Ledford <dledford@redhat.com>
232- sync upstream
233- add mdmpd package into mdadm package
234
235* Wed Sep 10 2003 Michael K. Johnson <johnsonm@redhat.com> 1.3.0-1
236- sync upstream
237
238* Tue Mar 11 2003 Michael K. Johnson <johnsonm@redhat.com> 1.1.0-1
239- sync upstream
240
241* Tue Jan 28 2003 Michael K. Johnson <johnsonm@redhat.com> 1.0.1-1
242- update for rebuild
243
244* Wed Dec 25 2002 Tim Powers <timp@redhat.com> 1.0.0-8
245- fix references to %%install in the changelog so that it will build
246
247* Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 1.0.0-7
248- Rebuild
249
250* Fri Jul 12 2002 Michael K. Johnson <johnsonm@redhat.com>
251- Changed RPM Group to System Environment/Base
252
253* Wed May 15 2002 Michael K. Johnson <johnsonm@redhat.com>
254- minor cleanups to the text, conditionalize rm -rf
255- added mdmonitor init script
256
257* Fri May 10 2002  <neilb@cse.unsw.edu.au>
258- update to 1.0.0
259- Set CXFLAGS instead of CFLAGS
260
261* Sat Apr  6 2002  <neilb@cse.unsw.edu.au>
262- change %%install to use "make install"
263
264* Fri Mar 15 2002  <gleblanc@localhost.localdomain>
265- beautification
266- made mdadm.conf non-replaceable config
267- renamed Copyright to License in the header
268- added missing license file
269- used macros for file paths
270
271* Fri Mar 15 2002 Luca Berra <bluca@comedia.it>
272- Added Obsoletes: mdctl
273- missingok for configfile
274
275* Tue Mar 12 2002 NeilBrown <neilb@cse.unsw.edu.au>
276- Add md.4 and mdadm.conf.5 man pages
277
278* Fri Mar 08 2002               Chris Siebenmann <cks@cquest.utoronto.ca>
279- builds properly as non-root.
280
281* Fri Mar 08 2002 Derek Vadala <derek@cynicism.com>
282- updated for 0.7, fixed /usr/share/doc and added manpage
283
284* Tue Aug 07 2001 Danilo Godec <danci@agenda.si>
285- initial RPM build
Note: See TracBrowser for help on using the repository browser.