2008-01-21 15:27:24 +00:00
|
|
|
Summary: Utilities for managing the XFS filesystem
|
|
|
|
Name: xfsprogs
|
2010-11-18 20:54:20 +00:00
|
|
|
Version: 3.1.4
|
2011-02-08 05:05:07 +00:00
|
|
|
Release: 2%{?dist}
|
2007-08-16 19:00:32 +00:00
|
|
|
# Licensing based on generic "GNU GENERAL PUBLIC LICENSE"
|
|
|
|
# in source, with no mention of version.
|
|
|
|
# doc/COPYING file specifies what is GPL and what is LGPL
|
|
|
|
# but no mention of versions in the source.
|
2008-01-21 15:27:24 +00:00
|
|
|
License: GPL+ and LGPLv2+
|
|
|
|
Group: System Environment/Base
|
|
|
|
URL: http://oss.sgi.com/projects/xfs/
|
2009-02-05 01:26:30 +00:00
|
|
|
Source0: ftp://oss.sgi.com/projects/xfs/cmd_tars/%{name}-%{version}.tar.gz
|
2008-01-21 15:27:24 +00:00
|
|
|
Source1: xfsprogs-wrapper.h
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2009-12-08 17:01:04 +00:00
|
|
|
BuildRequires: libtool, gettext, libuuid-devel
|
|
|
|
BuildRequires: readline-devel, libblkid-devel >= 2.17-0.1.git5e51568
|
2008-01-21 15:27:24 +00:00
|
|
|
Provides: xfs-cmds
|
|
|
|
Obsoletes: xfs-cmds <= %{version}
|
2009-05-05 18:48:00 +00:00
|
|
|
Conflicts: xfsdump < 3.0.1
|
2007-10-02 14:40:47 +00:00
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%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
|
2010-02-12 23:29:29 +00:00
|
|
|
Summary: XFS filesystem-specific headers
|
2004-09-09 14:44:50 +00:00
|
|
|
Group: Development/Libraries
|
2010-04-01 18:37:44 +00:00
|
|
|
Requires: xfsprogs = %{version}-%{release}, libuuid-devel
|
2004-09-09 14:44:50 +00:00
|
|
|
|
|
|
|
%description devel
|
2010-02-12 23:29:29 +00:00
|
|
|
xfsprogs-devel contains the header files needed to develop XFS
|
|
|
|
filesystem-specific programs.
|
2004-09-09 14:44:50 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2009-04-18 12:18:24 +00:00
|
|
|
%package qa-devel
|
2010-02-12 23:29:29 +00:00
|
|
|
Summary: XFS QA filesystem-specific headers
|
2009-04-18 12:18:24 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: xfsprogs = %{version}-%{release}
|
|
|
|
Requires: xfsprogs-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description qa-devel
|
2010-02-12 23:29:29 +00:00
|
|
|
xfsprogs-qa-devel contains headers needed to build the xfstests
|
|
|
|
QA suite.
|
2009-04-18 12:18:24 +00:00
|
|
|
|
|
|
|
You should install xfsprogs-qa-devel only if you are interested
|
|
|
|
in building or running the xfstests QA suite.
|
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2007-07-26 22:09:27 +00:00
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%build
|
2010-12-06 17:15:48 +00:00
|
|
|
export tagname=CC DEBUG=-DNDEBUG
|
2006-09-27 18:51:33 +00:00
|
|
|
%configure \
|
2009-12-07 23:17:57 +00:00
|
|
|
--enable-readline=yes \
|
2010-02-13 03:08:01 +00:00
|
|
|
--enable-blkid=yes
|
2009-12-07 23:17:57 +00:00
|
|
|
|
|
|
|
# Kill rpaths
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
2008-01-21 15:27:24 +00:00
|
|
|
|
2010-02-05 21:08:35 +00:00
|
|
|
make V=1 %{?_smp_mflags}
|
2008-01-21 15:27:24 +00:00
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2010-02-13 03:08:01 +00:00
|
|
|
make V=1 DIST_ROOT=$RPM_BUILD_ROOT install install-dev install-qa
|
2008-01-21 15:27:24 +00:00
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
# nuke .la files, etc
|
2010-02-13 03:08:01 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.{la,a}}
|
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
|
2009-01-08 15:37:43 +00:00
|
|
|
chmod 0755 $RPM_BUILD_ROOT/%{_lib}/libhandle.so.*.*.*
|
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
# 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:
|
2009-06-18 15:51:34 +00:00
|
|
|
%define multilib_arches %{ix86} x86_64 ppc ppc64 s390 s390x %{sparc}
|
2008-06-04 17:38:01 +00:00
|
|
|
|
|
|
|
%ifarch %{multilib_arches}
|
2006-07-05 13:26:08 +00:00
|
|
|
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
|
2008-06-04 17:38:01 +00:00
|
|
|
%endif
|
2006-07-05 13:26:08 +00:00
|
|
|
|
|
|
|
%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)
|
2010-01-13 21:21:08 +00:00
|
|
|
%doc doc/CHANGES doc/COPYING doc/CREDITS 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/*
|
2009-04-18 12:18:24 +00:00
|
|
|
%dir %{_includedir}/xfs
|
|
|
|
%{_includedir}/xfs/handle.h
|
|
|
|
%{_includedir}/xfs/jdm.h
|
|
|
|
%{_includedir}/xfs/linux.h
|
2009-04-18 20:19:03 +00:00
|
|
|
%ifarch %{multilib_arches}
|
2009-04-18 12:18:24 +00:00
|
|
|
%{_includedir}/xfs/platform_defs-%{_arch}.h
|
2009-04-18 20:19:03 +00:00
|
|
|
%endif
|
2009-04-18 12:18:24 +00:00
|
|
|
%{_includedir}/xfs/platform_defs.h
|
|
|
|
%{_includedir}/xfs/xfs.h
|
|
|
|
%{_includedir}/xfs/xfs_fs.h
|
|
|
|
%{_includedir}/xfs/xqm.h
|
2004-09-09 14:44:50 +00:00
|
|
|
%{_libdir}/*.so
|
|
|
|
|
2009-04-18 12:18:24 +00:00
|
|
|
%files qa-devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_includedir}/xfs/bitops.h
|
|
|
|
%{_includedir}/xfs/cache.h
|
|
|
|
%{_includedir}/xfs/kmem.h
|
|
|
|
%{_includedir}/xfs/libxfs.h
|
|
|
|
%{_includedir}/xfs/libxlog.h
|
|
|
|
%{_includedir}/xfs/list.h
|
|
|
|
%{_includedir}/xfs/parent.h
|
|
|
|
%{_includedir}/xfs/swab.h
|
|
|
|
%{_includedir}/xfs/xfs_ag.h
|
|
|
|
%{_includedir}/xfs/xfs_alloc.h
|
|
|
|
%{_includedir}/xfs/xfs_alloc_btree.h
|
|
|
|
%{_includedir}/xfs/xfs_arch.h
|
|
|
|
%{_includedir}/xfs/xfs_attr_leaf.h
|
|
|
|
%{_includedir}/xfs/xfs_attr_sf.h
|
|
|
|
%{_includedir}/xfs/xfs_bit.h
|
|
|
|
%{_includedir}/xfs/xfs_bmap.h
|
|
|
|
%{_includedir}/xfs/xfs_bmap_btree.h
|
|
|
|
%{_includedir}/xfs/xfs_btree.h
|
|
|
|
%{_includedir}/xfs/xfs_btree_trace.h
|
|
|
|
%{_includedir}/xfs/xfs_buf_item.h
|
|
|
|
%{_includedir}/xfs/xfs_da_btree.h
|
|
|
|
%{_includedir}/xfs/xfs_dfrag.h
|
|
|
|
%{_includedir}/xfs/xfs_dinode.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2_block.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2_data.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2_leaf.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2_node.h
|
|
|
|
%{_includedir}/xfs/xfs_dir2_sf.h
|
|
|
|
%{_includedir}/xfs/xfs_dir_leaf.h
|
|
|
|
%{_includedir}/xfs/xfs_dir_sf.h
|
|
|
|
%{_includedir}/xfs/xfs_extfree_item.h
|
|
|
|
%{_includedir}/xfs/xfs_ialloc.h
|
|
|
|
%{_includedir}/xfs/xfs_ialloc_btree.h
|
|
|
|
%{_includedir}/xfs/xfs_imap.h
|
|
|
|
%{_includedir}/xfs/xfs_inode.h
|
|
|
|
%{_includedir}/xfs/xfs_inode_item.h
|
|
|
|
%{_includedir}/xfs/xfs_inum.h
|
|
|
|
%{_includedir}/xfs/xfs_log.h
|
|
|
|
%{_includedir}/xfs/xfs_log_priv.h
|
|
|
|
%{_includedir}/xfs/xfs_log_recover.h
|
|
|
|
%{_includedir}/xfs/xfs_metadump.h
|
|
|
|
%{_includedir}/xfs/xfs_mount.h
|
|
|
|
%{_includedir}/xfs/xfs_quota.h
|
|
|
|
%{_includedir}/xfs/xfs_rtalloc.h
|
|
|
|
%{_includedir}/xfs/xfs_sb.h
|
|
|
|
%{_includedir}/xfs/xfs_trans.h
|
|
|
|
%{_includedir}/xfs/xfs_trans_space.h
|
|
|
|
%{_includedir}/xfs/xfs_types.h
|
|
|
|
|
2004-09-09 14:44:50 +00:00
|
|
|
%changelog
|
2011-02-08 05:05:07 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-18 20:54:20 +00:00
|
|
|
* Thu Nov 18 2010 Eric Sandeen <sandeen@redhat.com> 3.1.4-1
|
2010-12-06 17:15:48 +00:00
|
|
|
- New upstream release; disable DEBUG for now to build
|
2010-11-18 20:54:20 +00:00
|
|
|
|
2010-08-28 14:28:49 +00:00
|
|
|
* Sat Aug 28 2010 Eric Sandeen <sandeen@redhat.com> 3.1.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-05-07 22:09:56 +00:00
|
|
|
* Fri May 07 2010 Eric Sandeen <sandeen@redhat.com> 3.1.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-04-01 18:37:44 +00:00
|
|
|
* Thu Apr 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-7
|
|
|
|
- make devel pkg require libuuid-devel (#576296)
|
|
|
|
|
2010-03-15 22:19:25 +00:00
|
|
|
* Mon Mar 15 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-6
|
|
|
|
- Fix missing locking for btree manipulation in xfs_repair
|
|
|
|
|
2010-02-13 03:08:01 +00:00
|
|
|
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-5
|
|
|
|
- --enable-static=no doesn't work; just nuke static libs
|
|
|
|
|
2010-02-12 23:29:29 +00:00
|
|
|
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-4
|
|
|
|
- Fix up -devel package descriptions
|
|
|
|
|
2010-02-12 23:04:40 +00:00
|
|
|
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-3
|
|
|
|
- Drop static libs (#556102)
|
|
|
|
|
2010-02-05 20:25:06 +00:00
|
|
|
* Mon Feb 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-2
|
|
|
|
- Fix mkfs of target with nothing blkid can recognize (#561870)
|
|
|
|
|
2010-02-01 18:09:40 +00:00
|
|
|
* Mon Feb 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-1
|
|
|
|
- New upstream release
|
|
|
|
- Fix fd validity test for device-less mkfs invocation
|
|
|
|
|
|
|
|
* Sun Jan 17 2010 Eric Sandeen <sandeen@redhat.com> 3.1.0-2
|
2010-01-17 17:46:30 +00:00
|
|
|
- Post-release mkfs fixes (#555847)
|
|
|
|
|
2010-01-13 21:21:08 +00:00
|
|
|
* Wed Jan 13 2010 Eric Sandeen <sandeen@redhat.com> 3.1.0-1
|
|
|
|
- New upstream release
|
2010-01-17 18:01:37 +00:00
|
|
|
- Minor fixups for new glibc headers
|
2010-01-17 17:46:30 +00:00
|
|
|
- Fixes default mkfs.xfs on 4k sector device (#539553)
|
2010-01-13 21:21:08 +00:00
|
|
|
|
2009-12-08 17:01:04 +00:00
|
|
|
* Tue Dec 08 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-5
|
|
|
|
- And finally, BuildRequire libblkid-devel
|
|
|
|
|
2009-12-07 23:17:57 +00:00
|
|
|
* Mon Dec 07 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-4
|
|
|
|
- Actually patch & run configure script w/ blkid bits...
|
|
|
|
- Kill rpath in xfs_fsr
|
|
|
|
|
2009-11-20 21:28:45 +00:00
|
|
|
* Fri Nov 20 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-3
|
|
|
|
- Fix up build issues w.r.t. off64_t
|
|
|
|
|
2009-11-10 23:45:50 +00:00
|
|
|
* Tue Nov 10 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-2
|
|
|
|
- Add trim/discard & libblkid support
|
|
|
|
|
2009-09-01 16:26:35 +00:00
|
|
|
* Tue Sep 01 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-07-27 08:01:28 +00:00
|
|
|
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-09 16:22:40 +00:00
|
|
|
* Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-9
|
|
|
|
- Fix block overflows in xfs_repair and xfs_metadump
|
|
|
|
|
2009-06-30 16:22:11 +00:00
|
|
|
* Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-8
|
|
|
|
- Fix up build-requires after e2fsprogs splitup
|
|
|
|
|
2009-06-18 15:51:34 +00:00
|
|
|
* Thu Jun 18 2009 Dennis Gilmore <dennis@ausil.us> 3.0.1-7
|
|
|
|
- update sparc multilib handling
|
|
|
|
|
2009-06-16 15:59:31 +00:00
|
|
|
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-6
|
|
|
|
- Make lazy superblock counters the default
|
|
|
|
|
2009-06-15 19:41:38 +00:00
|
|
|
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-5
|
|
|
|
- Add fallocate command to config script & fix for 32-bit
|
|
|
|
|
2009-06-15 16:50:39 +00:00
|
|
|
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-4
|
|
|
|
- Add fallocate command to xfs_io
|
|
|
|
|
2009-05-16 01:48:32 +00:00
|
|
|
* Fri May 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-3
|
|
|
|
- Fix and re-enable readline
|
|
|
|
|
2009-05-05 18:48:00 +00:00
|
|
|
* Tue May 05 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-2
|
|
|
|
- Conflict with xfsdump < 3.0.1 since files moved between them
|
|
|
|
|
2009-05-05 18:24:26 +00:00
|
|
|
* Tue May 05 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-04-18 20:19:03 +00:00
|
|
|
* Sat Apr 18 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-4
|
|
|
|
- Fix build for non-multilib arches, oops.
|
|
|
|
|
2009-04-18 12:18:24 +00:00
|
|
|
* Sat Apr 18 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-3
|
|
|
|
- Create new xfsprogs-qa-devel subpackage
|
|
|
|
|
2009-02-26 09:27:59 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-05 01:26:30 +00:00
|
|
|
* Wed Feb 04 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-01-08 15:37:43 +00:00
|
|
|
* Thu Jan 08 2009 Eric Sandeen <sandeen@redhat.com> 2.10.2-3
|
|
|
|
- Fix perms of libhandle.so in specfile, not makefile
|
|
|
|
|
2009-01-07 22:53:10 +00:00
|
|
|
* Wed Jan 07 2009 Eric Sandeen <sandeen@redhat.com> 2.10.2-2
|
|
|
|
- Fix perms of libhandle.so so that it's properly stripped
|
|
|
|
|
2008-12-08 04:30:03 +00:00
|
|
|
* Sun Dec 07 2008 Eric Sandeen <sandeen@redhat.com> 2.10.2-1
|
|
|
|
- New upstream release, bugfix only.
|
|
|
|
|
2008-11-26 22:10:28 +00:00
|
|
|
* Wed Nov 26 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-4
|
2008-11-26 21:39:38 +00:00
|
|
|
- Add protection from borken sys_ustat
|
|
|
|
- Add final upstream versions of gfs2 & parallel build patches
|
|
|
|
|
2008-11-12 16:57:10 +00:00
|
|
|
* Wed Nov 12 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-2
|
|
|
|
- Recognize gfs/gfs2 in libdisk
|
|
|
|
- Enable parallel builds
|
|
|
|
|
2008-09-05 20:01:35 +00:00
|
|
|
* Fri Sep 05 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-1
|
|
|
|
- Update to xfsprogs 2.10.1
|
|
|
|
- Add ASCII case-insensitive support to xfsprogs.
|
|
|
|
- xfs_repair fixes
|
|
|
|
|
2008-06-04 17:56:27 +00:00
|
|
|
* Wed Jun 04 2008 Dennis Gilmore <dennis@ausil.us> 2.9.8-3
|
2008-06-04 17:43:55 +00:00
|
|
|
- sparc32 is built using the sparcv9 variant
|
|
|
|
|
2008-06-04 17:56:27 +00:00
|
|
|
* Wed Jun 04 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-2
|
2008-06-04 17:38:01 +00:00
|
|
|
- Tidy up multilib hack for non-multilib arches & add sparc (#448452)
|
|
|
|
|
2008-04-23 16:38:21 +00:00
|
|
|
* Wed Apr 23 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-1
|
|
|
|
- Update to xfsprogs 2.9.8
|
|
|
|
- Add support for sb_features2 in wrong location
|
|
|
|
- Add -c option to xfs_admin to turn lazy-counters on/off
|
|
|
|
- Added support for mdp in libdisk/mkfs.xfs
|
|
|
|
|
2008-03-03 04:30:10 +00:00
|
|
|
* Sun Mar 02 2008 Eric Sandeen <sandeen@redhat.com> 2.9.7-1
|
|
|
|
- Update to xfsprogs 2.9.7
|
|
|
|
- Lazy sb counters back off by default; other misc fixes
|
|
|
|
|
2008-02-07 05:47:46 +00:00
|
|
|
* Wed Feb 06 2008 Eric Sandeen <sandeen@redhat.com> 2.9.6-1
|
|
|
|
- Update to xfsprogs 2.9.6 - fixes mkfs sizing problem.
|
|
|
|
- Trim down BuildRequires to what's actually required now
|
|
|
|
|
2008-01-21 15:27:24 +00:00
|
|
|
* Mon Jan 21 2008 Eric Sandeen <sandeen@redhat.com> 2.9.5-1
|
|
|
|
- Update to xfsprogs 2.9.5
|
|
|
|
- Contains more optimal mkfs defaults
|
|
|
|
- specfile cleanup, & don't restate config defaults
|
|
|
|
|
2007-10-24 02:12:28 +00:00
|
|
|
* Tue Oct 23 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-4
|
|
|
|
- Add arm to multilib header wrapper
|
|
|
|
|
2007-10-02 14:40:47 +00:00
|
|
|
* Tue Oct 02 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-3
|
|
|
|
- mkfs.xfs: Fix wiping old AG headers and purge whack buffers
|
|
|
|
|
2007-10-01 23:09:10 +00:00
|
|
|
* Mon Oct 01 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-2
|
|
|
|
- Add alpha to the multilib wrapper (#310411)
|
|
|
|
|
2007-09-11 03:05:36 +00:00
|
|
|
* Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-1
|
|
|
|
- Update to xfsprogs 2.9.4
|
|
|
|
|
2007-08-25 00:09:46 +00:00
|
|
|
* Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-3
|
|
|
|
- Add gawk to buildrequires
|
|
|
|
|
2007-08-16 19:00:32 +00:00
|
|
|
* Thu Aug 16 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-2
|
|
|
|
- Update license tag
|
|
|
|
|
2007-07-26 22:09:27 +00:00
|
|
|
* Thu Jul 26 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-1
|
2007-10-01 23:09:10 +00:00
|
|
|
- Upgrade to xfsprogs 2.9.2, quota, xfs_repair, and filestreams changes
|
2007-07-26 22:09:27 +00:00
|
|
|
|
2007-07-05 18:49:15 +00:00
|
|
|
* Thu Jul 6 2007 Eric Sandeen <sandeen@redhat.com> 2.8.21-1
|
|
|
|
- Upgrade to xfsprogs 2.8.21, lazy sb counters enabled,
|
|
|
|
xfs_quota fix (#236746)
|
|
|
|
|
2007-06-01 01:25:29 +00:00
|
|
|
* Thu May 31 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-2
|
|
|
|
- Fix ppc64 build... again
|
|
|
|
|
2007-06-01 00:13:46 +00:00
|
|
|
* Fri May 25 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-1
|
|
|
|
- Upgrade to xfsprogs 2.8.20, several xfs_repair fixes
|
|
|
|
|
2007-03-06 18:19:28 +00:00
|
|
|
* Tue Mar 06 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-3
|
|
|
|
- Remove libtermcap-devel from BuildRequires
|
|
|
|
|
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.
|