2006-09-27 18:51:33 +00:00
|
|
|
Summary: Utilities for managing the XFS filesystem
|
2004-09-09 14:44:50 +00:00
|
|
|
Name: xfsprogs
|
2007-02-04 04:55:43 +00:00
|
|
|
Version: 2.8.18
|
2007-02-14 17:50:51 +00:00
|
|
|
Release: 2%{?dist}
|
2004-09-09 14:44:50 +00:00
|
|
|
License: GPL
|
|
|
|
Group: System Environment/Base
|
|
|
|
URL: http://oss.sgi.com/projects/xfs/
|
2006-07-05 13:26:08 +00:00
|
|
|
Source0: ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
|
|
|
|
Source1: xfsprogs-wrapper.h
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-09-09 14:44:50 +00:00
|
|
|
BuildRequires: autoconf, libtool, gettext
|
|
|
|
BuildRequires: readline-devel, libtermcap-devel
|
|
|
|
BuildRequires: /usr/include/uuid/uuid.h
|
2005-11-06 08:40:27 +00:00
|
|
|
Provides: xfs-cmds
|
2004-09-09 14:44:50 +00:00
|
|
|
Obsoletes: xfs-cmds <= %{version}
|
|
|
|
Conflicts: xfsdump < 2.0.0
|
|
|
|
|
|
|
|
%description
|
|
|
|
A set of commands to use the XFS filesystem, including mkfs.xfs.
|
|
|
|
|
|
|
|
XFS is a high performance journaling filesystem which originated
|
|
|
|
on the SGI IRIX platform. It is completely multi-threaded, can
|
|
|
|
support large files and large filesystems, extended attributes,
|
|
|
|
variable block sizes, is extent based, and makes extensive use of
|
|
|
|
Btrees (directories, extents, free space) to aid both performance
|
|
|
|
and scalability.
|
|
|
|
|
|
|
|
Refer to the documentation at http://oss.sgi.com/projects/xfs/
|
|
|
|
for complete details. This implementation is on-disk compatible
|
|
|
|
with the IRIX version of XFS.
|
|
|
|
|
|
|
|
%package devel
|
2006-09-27 18:51:33 +00:00
|
|
|
Summary: XFS filesystem-specific static libraries and headers
|
2004-09-09 14:44:50 +00:00
|
|
|
Group: Development/Libraries
|
2006-04-02 14:23:34 +00:00
|
|
|
Requires: xfsprogs = %{version}-%{release}
|
2004-09-09 14:44:50 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
xfsprogs-devel contains the libraries and header files needed to
|
|
|
|
develop XFS filesystem-specific programs.
|
|
|
|
|
|
|
|
You should install xfsprogs-devel if you want to develop XFS
|
|
|
|
filesystem-specific programs, If you install xfsprogs-devel, you'll
|
|
|
|
also want to install xfsprogs.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2006-09-27 18:51:33 +00:00
|
|
|
#
|
2004-09-09 14:44:50 +00:00
|
|
|
%build
|
2006-09-27 18:51:33 +00:00
|
|
|
# xfsprogs does not ship ./configure
|
2006-07-05 13:26:08 +00:00
|
|
|
autoconf
|
2006-09-27 18:51:33 +00:00
|
|
|
#
|
2004-09-09 14:44:50 +00:00
|
|
|
# xfsprogs abuses libexecdir
|
2005-11-06 08:40:27 +00:00
|
|
|
export tagname=CC DEBUG=-DNDEBUG
|
2006-09-27 18:51:33 +00:00
|
|
|
%configure \
|
|
|
|
--sbindir=/sbin \
|
|
|
|
--libdir=/%{_lib} \
|
|
|
|
--libexecdir=%{_libdir} \
|
|
|
|
--bindir=%{_sbindir} \
|
|
|
|
--enable-shared=yes \
|
|
|
|
--enable-gettext=yes \
|
|
|
|
--enable-shared-uuid=yes
|
2006-04-02 14:23:34 +00:00
|
|
|
make %{?_smp_mflags}
|
2006-09-27 18:51:33 +00:00
|
|
|
#
|
2004-09-09 14:44:50 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2006-04-02 14:23:34 +00:00
|
|
|
make DIST_ROOT=$RPM_BUILD_ROOT install install-dev
|
2006-09-27 18:51:33 +00:00
|
|
|
#
|
2004-09-09 14:44:50 +00:00
|
|
|
# nuke .la files, etc
|
2006-04-02 14:23:34 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.la}
|
2004-09-09 14:44:50 +00:00
|
|
|
# fix up symlink to be correct
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/libhandle.so
|
|
|
|
ln -s ../../%{_lib}/libhandle.so.1 $RPM_BUILD_ROOT/%{_libdir}/libhandle.so
|
|
|
|
# remove non-versioned docs location
|
|
|
|
rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsprogs/
|
|
|
|
|
2006-07-05 13:26:08 +00:00
|
|
|
# ugly hack to allow parallel install of 32-bit and 64-bit -devel packages:
|
|
|
|
mv -f $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h \
|
|
|
|
$RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs-%{_arch}.h
|
|
|
|
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h
|
|
|
|
|
|
|
|
%find_lang %{name}
|
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2006-07-05 13:26:08 +00:00
|
|
|
%files -f %{name}.lang
|
2004-09-09 14:44:50 +00:00
|
|
|
%defattr(-,root,root)
|
2005-11-06 08:40:27 +00:00
|
|
|
%doc doc/CHANGES doc/COPYING doc/CREDITS doc/PORTING README
|
2004-09-09 14:44:50 +00:00
|
|
|
/sbin/fsck.xfs
|
|
|
|
/sbin/mkfs.xfs
|
|
|
|
/sbin/xfs_repair
|
|
|
|
/%{_lib}/*.so.*
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
%{_mandir}/man5/*
|
2005-11-06 08:40:27 +00:00
|
|
|
%{_sbindir}/*
|
2004-09-09 14:44:50 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_includedir}/disk
|
|
|
|
%{_includedir}/xfs
|
|
|
|
%{_libdir}/*.a
|
|
|
|
%{_libdir}/*.so
|
|
|
|
|
|
|
|
%changelog
|
2007-02-14 17:50:51 +00:00
|
|
|
* Wed Feb 14 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-2
|
|
|
|
- Disable readline support for now (#223781)
|
|
|
|
|
2007-02-04 20:06:29 +00:00
|
|
|
* Sun Feb 04 2007 Jarod Wilson <jwilson@redhat.com> 2.8.18-1
|
|
|
|
- Post-facto changelog addition to note bump to 2.8.18
|
|
|
|
|
2006-09-27 19:37:16 +00:00
|
|
|
* Wed Sep 27 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-3
|
|
|
|
- bump build version to 3 for a new brew build
|
|
|
|
|
2006-09-27 18:51:33 +00:00
|
|
|
* Tue Sep 26 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-2
|
|
|
|
- add ppc64 build patch
|
|
|
|
|
|
|
|
* Thu Sep 21 2006 Russell Cattelan <cattelan@redhat.com> 2.8.11-1
|
|
|
|
- Upgrade to xfsprogs 2.8.11 Need to pick up important repair fixes
|
|
|
|
|
2006-07-18 20:46:30 +00:00
|
|
|
* Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 2.8.4-3
|
|
|
|
- exclude arch ppc64 for now (#199315)
|
|
|
|
|
2006-07-18 00:18:54 +00:00
|
|
|
* Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.8.4-2
|
2006-07-12 08:53:42 +00:00
|
|
|
- rebuild
|
|
|
|
|
2006-07-05 13:26:08 +00:00
|
|
|
* Tue Jul 04 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.4-1
|
|
|
|
- Upgrade to 2.8.4 (#196599 #c2)
|
|
|
|
|
|
|
|
* Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.3-1
|
|
|
|
- Upgrade to 2.8.3 (#196599)
|
|
|
|
- Applied Russell Coker's suggested patch to improve the
|
|
|
|
performance for SELinux machines significantly (#120622)
|
|
|
|
|
|
|
|
* Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-2
|
|
|
|
- Fixed multilib conflict of xfs/platform_defs.h (#192755)
|
|
|
|
|
2006-04-02 14:23:34 +00:00
|
|
|
* Sun Mar 12 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-1
|
|
|
|
- Upgrade to 2.7.11 and spec file cleanup (#185234)
|
|
|
|
|
2006-02-11 06:11:47 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 14:19:27 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:43:53 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-06 08:40:27 +00:00
|
|
|
* Mon Oct 31 2005 Robert Scheck <redhat@linuxnetz.de> 2.7.3-1
|
|
|
|
- Upgrade to 2.7.3 and enabled termcap support (#154323)
|
|
|
|
|
2005-09-28 20:02:10 +00:00
|
|
|
* Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- fixup building with current rpm
|
|
|
|
|
2005-04-20 08:20:34 +00:00
|
|
|
* Wed Apr 20 2005 Dave Jones <davej@redhat.com>
|
|
|
|
- Disable debug. (#151438)
|
2005-04-20 08:31:03 +00:00
|
|
|
- Rebuild with gcc4
|
2005-04-20 08:20:34 +00:00
|
|
|
|
2005-01-12 17:42:17 +00:00
|
|
|
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 2.6.13-3
|
|
|
|
- Rebuilt for new readline.
|
|
|
|
|
2004-09-09 14:45:56 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 14:45:48 +00:00
|
|
|
* Wed May 5 2004 Jeremy Katz <katzj@redhat.com> - 2.6.13-1
|
|
|
|
- update to 2.6.13 per request of upstream
|
|
|
|
- fixes mount by label of xfs on former raid partition (#122043)
|
|
|
|
|
2004-09-09 14:45:08 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
* Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 2.6.0-2
|
|
|
|
- add defattr (reported by Matthias)
|
|
|
|
|
|
|
|
* Tue Dec 23 2003 Elliot Lee <sopwith@redhat.com> 2.6.0-3
|
|
|
|
- Fix tyops in dependencies
|
|
|
|
|
|
|
|
* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 2.6.0-1
|
|
|
|
- build for Fedora Core
|
|
|
|
- switch to more explicit file lists, nuke .la files
|
|
|
|
|
|
|
|
* Tue Dec 16 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.6.0
|
|
|
|
- Update to 2.6.0.
|
|
|
|
|
|
|
|
* Sat Sep 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
|
- Sync with XFS 1.3.0.
|
|
|
|
- Update to 2.5.6.
|
|
|
|
|
|
|
|
* Thu Apr 10 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.3.9-0_2.90at
|
|
|
|
- Rebuilt for Red Hat 9.
|