mdadm-vl.spec 9.5 KB

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