xfsprogs-vl.spec 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. Summary: Utilities for managing the XFS filesystem
  2. Summary(ja): XFSファイルシステムを管理するためのユーティリティ
  3. Name: xfsprogs
  4. Version: 3.1.10
  5. Release: 1%{?_dist_release}
  6. # Licensing based on generic "GNU GENERAL PUBLIC LICENSE"
  7. # in source, with no mention of version.
  8. # doc/COPYING file specifies what is GPL and what is LGPL
  9. # but no mention of versions in the source.
  10. License: GPL+ and LGPLv2+
  11. Group: System Environment/Base
  12. URL: http://oss.sgi.com/projects/xfs/
  13. Source0: ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}-%{version}.tar.gz
  14. Source1: xfsprogs-wrapper.h
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  16. BuildRequires: libtool, gettext
  17. BuildRequires: e2fsprogs-devel
  18. BuildRequires: libuuid-devel
  19. %description
  20. A set of commands to use the XFS filesystem, including mkfs.xfs.
  21. XFS is a high performance journaling filesystem which originated
  22. on the SGI IRIX platform. It is completely multi-threaded, can
  23. support large files and large filesystems, extended attributes,
  24. variable block sizes, is extent based, and makes extensive use of
  25. Btrees (directories, extents, free space) to aid both performance
  26. and scalability.
  27. Refer to the documentation at http://oss.sgi.com/projects/xfs/
  28. for complete details. This implementation is on-disk compatible
  29. with the IRIX version of XFS.
  30. %package devel
  31. Summary: XFS filesystem-specific static libraries and headers
  32. Summary(ja): XFS filesystem-specific static libraries and headers
  33. Group: Development/Libraries
  34. Requires: xfsprogs = %{version}-%{release}
  35. %description devel
  36. xfsprogs-devel contains the libraries and header files needed to
  37. develop XFS filesystem-specific programs.
  38. You should install xfsprogs-devel if you want to develop XFS
  39. filesystem-specific programs, If you install xfsprogs-devel, you'll
  40. also want to install xfsprogs.
  41. %prep
  42. %setup -q
  43. %build
  44. # xfsprogs abuses libexecdir
  45. export tagname=CC DEBUG=-DNDEBUG
  46. %configure
  47. make %{?_smp_mflags}
  48. %install
  49. rm -rf $RPM_BUILD_ROOT
  50. make DIST_ROOT=$RPM_BUILD_ROOT install install-dev install-qa
  51. # nuke .la files, etc
  52. rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.{la,a}}
  53. # fix up symlink to be correct
  54. rm -f $RPM_BUILD_ROOT/%{_libdir}/libhandle.so
  55. ln -s ../../%{_lib}/libhandle.so.1 $RPM_BUILD_ROOT/%{_libdir}/libhandle.so
  56. # remove non-versioned docs location
  57. rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsprogs/
  58. # ugly hack to allow parallel install of 32-bit and 64-bit -devel packages:
  59. %define multilib_arches %{ix86} x86_64 ppc ppc64 s390 s390x sparcv9 sparc64
  60. %ifarch %{multilib_arches}
  61. mv -f $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h \
  62. $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs-%{_arch}.h
  63. install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h
  64. %endif
  65. %find_lang %{name}
  66. %clean
  67. rm -rf $RPM_BUILD_ROOT
  68. %post -p /sbin/ldconfig
  69. %postun -p /sbin/ldconfig
  70. %files -f %{name}.lang
  71. %defattr(-,root,root)
  72. %doc doc/CHANGES doc/COPYING doc/CREDITS README
  73. /sbin/fsck.xfs
  74. /sbin/mkfs.xfs
  75. /sbin/xfs_repair
  76. /%{_lib}/*.so.*
  77. %{_mandir}/man8/*
  78. %{_mandir}/man5/*
  79. %{_sbindir}/*
  80. %files devel
  81. %defattr(-,root,root)
  82. %{_mandir}/man3/*
  83. %{_includedir}/xfs
  84. %{_libdir}/*.so
  85. %changelog
  86. * Thu Dec 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.10-1
  87. - new upstream release
  88. * Sat Dec 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
  89. - new upstream release
  90. - add BuildRequires: libuuid-devel
  91. - remove all configure options
  92. - fix %%install and %%files
  93. * Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-1
  94. - initial build for Vine Linux
  95. * Wed Apr 23 2008 Dennis Gilmore <dennis@ausil.us> 2.9.8-3
  96. - sparc32 is built using the sparcv9 variant
  97. * Wed Apr 23 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-2
  98. - Tidy up multilib hack for non-multilib arches & add sparc (#448452)
  99. * Wed Apr 23 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-1
  100. - Update to xfsprogs 2.9.8
  101. - Add support for sb_features2 in wrong location
  102. - Add -c option to xfs_admin to turn lazy-counters on/off
  103. - Added support for mdp in libdisk/mkfs.xfs
  104. * Sun Mar 02 2008 Eric Sandeen <sandeen@redhat.com> 2.9.7-1
  105. - Update to xfsprogs 2.9.7
  106. - Lazy sb counters back off by default; other misc fixes
  107. * Wed Feb 06 2008 Eric Sandeen <sandeen@redhat.com> 2.9.6-1
  108. - Update to xfsprogs 2.9.6 - fixes mkfs sizing problem.
  109. - Trim down BuildRequires to what's actually required now
  110. * Mon Jan 21 2008 Eric Sandeen <sandeen@redhat.com> 2.9.5-1
  111. - Update to xfsprogs 2.9.5
  112. - Contains more optimal mkfs defaults
  113. - specfile cleanup, & don't restate config defaults
  114. * Tue Oct 23 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-4
  115. - Add arm to multilib header wrapper
  116. * Tue Oct 02 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-3
  117. - mkfs.xfs: Fix wiping old AG headers and purge whack buffers
  118. * Mon Oct 01 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-2
  119. - Add alpha to the multilib wrapper (#310411)
  120. * Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-1
  121. - Update to xfsprogs 2.9.4
  122. * Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-3
  123. - Add gawk to buildrequires
  124. * Thu Aug 16 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-2
  125. - Update license tag
  126. * Thu Jul 26 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-1
  127. - Upgrade to xfsprogs 2.9.2, quota, xfs_repair, and filestreams changes
  128. * Thu Jul 6 2007 Eric Sandeen <sandeen@redhat.com> 2.8.21-1
  129. - Upgrade to xfsprogs 2.8.21, lazy sb counters enabled,
  130. xfs_quota fix (#236746)
  131. * Thu May 31 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-2
  132. - Fix ppc64 build... again
  133. * Fri May 25 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-1
  134. - Upgrade to xfsprogs 2.8.20, several xfs_repair fixes
  135. * Tue Mar 06 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-3
  136. - Remove libtermcap-devel from BuildRequires
  137. * Wed Feb 14 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-2
  138. - Disable readline support for now (#223781)
  139. * Sun Feb 04 2007 Jarod Wilson <jwilson@redhat.com> 2.8.18-1
  140. - Post-facto changelog addition to note bump to 2.8.18
  141. * Wed Sep 27 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-3
  142. - bump build version to 3 for a new brew build
  143. * Tue Sep 26 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-2
  144. - add ppc64 build patch
  145. * Thu Sep 21 2006 Russell Cattelan <cattelan@redhat.com> 2.8.11-1
  146. - Upgrade to xfsprogs 2.8.11 Need to pick up important repair fixes
  147. * Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 2.8.4-3
  148. - exclude arch ppc64 for now (#199315)
  149. * Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.8.4-2
  150. - rebuild
  151. * Tue Jul 04 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.4-1
  152. - Upgrade to 2.8.4 (#196599 #c2)
  153. * Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.3-1
  154. - Upgrade to 2.8.3 (#196599)
  155. - Applied Russell Coker's suggested patch to improve the
  156. performance for SELinux machines significantly (#120622)
  157. * Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-2
  158. - Fixed multilib conflict of xfs/platform_defs.h (#192755)
  159. * Sun Mar 12 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-1
  160. - Upgrade to 2.7.11 and spec file cleanup (#185234)
  161. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2.1
  162. - bump again for double-long bug on ppc(64)
  163. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2
  164. - rebuilt for new gcc4.1 snapshot and glibc changes
  165. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  166. - rebuilt
  167. * Mon Oct 31 2005 Robert Scheck <redhat@linuxnetz.de> 2.7.3-1
  168. - Upgrade to 2.7.3 and enabled termcap support (#154323)
  169. * Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
  170. - fixup building with current rpm
  171. * Wed Apr 20 2005 Dave Jones <davej@redhat.com>
  172. - Disable debug. (#151438)
  173. - Rebuild with gcc4
  174. * Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 2.6.13-3
  175. - Rebuilt for new readline.
  176. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  177. - rebuilt
  178. * Wed May 5 2004 Jeremy Katz <katzj@redhat.com> - 2.6.13-1
  179. - update to 2.6.13 per request of upstream
  180. - fixes mount by label of xfs on former raid partition (#122043)
  181. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  182. - rebuilt
  183. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  184. - rebuilt
  185. * Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 2.6.0-2
  186. - add defattr (reported by Matthias)
  187. * Tue Dec 23 2003 Elliot Lee <sopwith@redhat.com> 2.6.0-3
  188. - Fix tyops in dependencies
  189. * Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 2.6.0-1
  190. - build for Fedora Core
  191. - switch to more explicit file lists, nuke .la files
  192. * Tue Dec 16 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.6.0
  193. - Update to 2.6.0.
  194. * Sat Sep 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
  195. - Sync with XFS 1.3.0.
  196. - Update to 2.5.6.
  197. * Thu Apr 10 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.3.9-0_2.90at
  198. - Rebuilt for Red Hat 9.