|
|
564d46 |
Summary: Utilities for managing the XFS filesystem
|
|
|
564d46 |
Name: xfsprogs
|
|
|
564d46 |
Version: 3.2.0
|
|
|
0690ef |
Release: 0.10.alpha2%{?dist}
|
|
|
564d46 |
# Licensing based on generic "GNU GENERAL PUBLIC LICENSE"
|
|
|
564d46 |
# in source, with no mention of version.
|
|
|
564d46 |
# doc/COPYING file specifies what is GPL and what is LGPL
|
|
|
564d46 |
# but no mention of versions in the source.
|
|
|
564d46 |
License: GPL+ and LGPLv2+
|
|
|
564d46 |
Group: System Environment/Base
|
|
|
564d46 |
URL: http://oss.sgi.com/projects/xfs/
|
|
|
0690ef |
Source0: ftp://oss.sgi.com/projects/xfs/cmd_tars/%{name}-%{version}-alpha2.tar.gz
|
|
|
564d46 |
Source1: xfsprogs-wrapper.h
|
|
|
564d46 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
564d46 |
BuildRequires: libtool, gettext, libuuid-devel
|
|
|
564d46 |
BuildRequires: readline-devel, libblkid-devel >= 2.17-0.1.git5e51568
|
|
|
564d46 |
Provides: xfs-cmds
|
|
|
564d46 |
Obsoletes: xfs-cmds <= %{version}
|
|
|
564d46 |
Conflicts: xfsdump < 3.0.1
|
|
|
564d46 |
|
|
|
0690ef |
# Bring xfsprogs up to fd799f7 in the upstream repo
|
|
|
0690ef |
Patch0: xfsprogs-diff-since-alpha2.patch
|
|
|
0690ef |
# 2 small patches on list not yet committed
|
|
|
0690ef |
Patch1: xfsprogs-3.2.0-repair-zero-sb.patch
|
|
|
0690ef |
Patch2: xfsprogs-3.2.0-xfs_db-quiet.patch
|
|
|
0690ef |
Patch3: xfsprogs-3.2.0-prefetch-fix.patch
|
|
|
564d46 |
|
|
|
564d46 |
%description
|
|
|
564d46 |
A set of commands to use the XFS filesystem, including mkfs.xfs.
|
|
|
564d46 |
|
|
|
564d46 |
XFS is a high performance journaling filesystem which originated
|
|
|
564d46 |
on the SGI IRIX platform. It is completely multi-threaded, can
|
|
|
564d46 |
support large files and large filesystems, extended attributes,
|
|
|
564d46 |
variable block sizes, is extent based, and makes extensive use of
|
|
|
564d46 |
Btrees (directories, extents, free space) to aid both performance
|
|
|
564d46 |
and scalability.
|
|
|
564d46 |
|
|
|
564d46 |
Refer to the documentation at http://oss.sgi.com/projects/xfs/
|
|
|
564d46 |
for complete details. This implementation is on-disk compatible
|
|
|
564d46 |
with the IRIX version of XFS.
|
|
|
564d46 |
|
|
|
564d46 |
%package devel
|
|
|
564d46 |
Summary: XFS filesystem-specific headers
|
|
|
564d46 |
Group: Development/Libraries
|
|
|
564d46 |
Requires: xfsprogs = %{version}-%{release}, libuuid-devel
|
|
|
564d46 |
|
|
|
564d46 |
%description devel
|
|
|
564d46 |
xfsprogs-devel contains the header files needed to develop XFS
|
|
|
564d46 |
filesystem-specific programs.
|
|
|
564d46 |
|
|
|
564d46 |
You should install xfsprogs-devel if you want to develop XFS
|
|
|
564d46 |
filesystem-specific programs, If you install xfsprogs-devel, you'll
|
|
|
564d46 |
also want to install xfsprogs.
|
|
|
564d46 |
|
|
|
564d46 |
%package qa-devel
|
|
|
564d46 |
Summary: XFS QA filesystem-specific headers
|
|
|
564d46 |
Group: Development/Libraries
|
|
|
564d46 |
Requires: xfsprogs = %{version}-%{release}
|
|
|
564d46 |
Requires: xfsprogs-devel = %{version}-%{release}
|
|
|
564d46 |
|
|
|
564d46 |
%description qa-devel
|
|
|
564d46 |
xfsprogs-qa-devel contains headers needed to build the xfstests
|
|
|
564d46 |
QA suite.
|
|
|
564d46 |
|
|
|
564d46 |
You should install xfsprogs-qa-devel only if you are interested
|
|
|
564d46 |
in building or running the xfstests QA suite.
|
|
|
564d46 |
|
|
|
564d46 |
%prep
|
|
|
0690ef |
%setup -q -n xfsprogs-3.2.0-alpha2
|
|
|
564d46 |
|
|
|
564d46 |
%patch0 -p1
|
|
|
564d46 |
%patch1 -p1
|
|
|
564d46 |
%patch2 -p1
|
|
|
564d46 |
%patch3 -p1
|
|
|
564d46 |
|
|
|
564d46 |
%build
|
|
|
564d46 |
export tagname=CC
|
|
|
564d46 |
%configure \
|
|
|
564d46 |
--enable-readline=yes \
|
|
|
564d46 |
--enable-blkid=yes
|
|
|
564d46 |
|
|
|
564d46 |
# Kill rpaths
|
|
|
564d46 |
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
564d46 |
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
564d46 |
|
|
|
564d46 |
make V=1 %{?_smp_mflags}
|
|
|
564d46 |
|
|
|
564d46 |
%install
|
|
|
564d46 |
rm -rf $RPM_BUILD_ROOT
|
|
|
564d46 |
make V=1 DIST_ROOT=$RPM_BUILD_ROOT install install-dev install-qa \
|
|
|
564d46 |
PKG_ROOT_SBIN_DIR=%{_sbindir} PKG_ROOT_LIB_DIR=%{_libdir}
|
|
|
564d46 |
|
|
|
564d46 |
# nuke .la files, etc
|
|
|
564d46 |
rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.{la,a}}
|
|
|
564d46 |
chmod 0755 $RPM_BUILD_ROOT/%{_libdir}/libhandle.so.*.*.*
|
|
|
564d46 |
|
|
|
564d46 |
# remove non-versioned docs location
|
|
|
564d46 |
rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsprogs/
|
|
|
564d46 |
|
|
|
0690ef |
# xfs_check is deprecated; nuke it from orbit for RHEL7
|
|
|
0690ef |
rm -f $RPM_BUILD_ROOT/%{_sbindir}/xfs_check
|
|
|
0690ef |
rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/xfs_check*
|
|
|
0690ef |
|
|
|
564d46 |
# ugly hack to allow parallel install of 32-bit and 64-bit -devel packages:
|
|
|
564d46 |
%define multilib_arches %{ix86} x86_64 ppc ppc64 s390 s390x %{sparc}
|
|
|
564d46 |
|
|
|
564d46 |
%ifarch %{multilib_arches}
|
|
|
564d46 |
mv -f $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h \
|
|
|
564d46 |
$RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs-%{_arch}.h
|
|
|
564d46 |
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/xfs/platform_defs.h
|
|
|
564d46 |
%endif
|
|
|
564d46 |
|
|
|
564d46 |
%find_lang %{name}
|
|
|
564d46 |
|
|
|
564d46 |
%clean
|
|
|
564d46 |
rm -rf $RPM_BUILD_ROOT
|
|
|
564d46 |
|
|
|
564d46 |
%post -p /sbin/ldconfig
|
|
|
564d46 |
|
|
|
564d46 |
%postun -p /sbin/ldconfig
|
|
|
564d46 |
|
|
|
564d46 |
%files -f %{name}.lang
|
|
|
564d46 |
%defattr(-,root,root)
|
|
|
564d46 |
%doc doc/CHANGES doc/COPYING doc/CREDITS README
|
|
|
564d46 |
%{_libdir}/*.so.*
|
|
|
564d46 |
%{_mandir}/man8/*
|
|
|
564d46 |
%{_mandir}/man5/*
|
|
|
564d46 |
%{_sbindir}/*
|
|
|
564d46 |
|
|
|
564d46 |
%files devel
|
|
|
564d46 |
%defattr(-,root,root)
|
|
|
564d46 |
%{_mandir}/man3/*
|
|
|
564d46 |
%dir %{_includedir}/xfs
|
|
|
564d46 |
%{_includedir}/xfs/handle.h
|
|
|
564d46 |
%{_includedir}/xfs/jdm.h
|
|
|
564d46 |
%{_includedir}/xfs/linux.h
|
|
|
564d46 |
%ifarch %{multilib_arches}
|
|
|
564d46 |
%{_includedir}/xfs/platform_defs-%{_arch}.h
|
|
|
564d46 |
%endif
|
|
|
564d46 |
%{_includedir}/xfs/platform_defs.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_fs.h
|
|
|
0690ef |
%{_includedir}/xfs/xfs_types.h
|
|
|
564d46 |
%{_includedir}/xfs/xqm.h
|
|
|
564d46 |
%{_libdir}/*.so
|
|
|
564d46 |
|
|
|
564d46 |
%files qa-devel
|
|
|
564d46 |
%defattr(-,root,root)
|
|
|
564d46 |
%{_includedir}/xfs/atomic.h
|
|
|
564d46 |
%{_includedir}/xfs/bitops.h
|
|
|
564d46 |
%{_includedir}/xfs/cache.h
|
|
|
564d46 |
%{_includedir}/xfs/hlist.h
|
|
|
564d46 |
%{_includedir}/xfs/kmem.h
|
|
|
564d46 |
%{_includedir}/xfs/libxfs.h
|
|
|
564d46 |
%{_includedir}/xfs/libxlog.h
|
|
|
564d46 |
%{_includedir}/xfs/list.h
|
|
|
564d46 |
%{_includedir}/xfs/parent.h
|
|
|
564d46 |
%{_includedir}/xfs/radix-tree.h
|
|
|
564d46 |
%{_includedir}/xfs/swab.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_ag.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_alloc.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_alloc_btree.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_arch.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_attr_leaf.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_attr_sf.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_bit.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_bmap.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_bmap_btree.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_btree.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_btree_trace.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_cksum.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_da_btree.h
|
|
|
0690ef |
%{_includedir}/xfs/xfs_da_format.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_dinode.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_dir2.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_format.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_ialloc.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_ialloc_btree.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_inode_buf.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_inode_fork.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_inum.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_log_format.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_log_recover.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_metadump.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_quota_defs.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_sb.h
|
|
|
0690ef |
%{_includedir}/xfs/xfs_shared.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_trace.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_trans_resv.h
|
|
|
564d46 |
%{_includedir}/xfs/xfs_trans_space.h
|
|
|
564d46 |
|
|
|
564d46 |
%changelog
|
|
|
0690ef |
* Tue Mar 11 2014 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.10.alpha2
|
|
|
0690ef |
- Fix bug in xfs_repair's inode prefetch (#1083820)
|
|
|
0690ef |
|
|
|
0690ef |
* Tue Mar 11 2014 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.9.alpha2
|
|
|
0690ef |
- Sync up with upstream's latest CRC enhancements (#1074037)
|
|
|
0690ef |
|
|
|
0690ef |
* Fri Feb 28 2014 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.8.alpha2
|
|
|
0690ef |
- mkfs.xfs fix default log size for small filesystems (#1034003)
|
|
|
0690ef |
- xfs_copy: partial fixups for CRC filesystems (#1043570)
|
|
|
0690ef |
- xfs_logprint: Don't error out after split items lose context (#1043591)
|
|
|
0690ef |
|
|
|
0690ef |
* Tue Feb 24 2014 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.7.alpha2
|
|
|
0690ef |
- xfs_metadump: Really add xfs_metadump -F option (#1040921)
|
|
|
0690ef |
- xfs_check: Remove xfs_check manpage, xfs_check is deprecated (#1029458)
|
|
|
0690ef |
|
|
|
0690ef |
* Mon Feb 24 2014 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.6.alpha2
|
|
|
0690ef |
- xfs_metadump: Require -F if proper SB magic is not found (#1040921)
|
|
|
0690ef |
- xfs_repair: fix bad block pointer found in large directories (#1034157)
|
|
|
0690ef |
- libxfs: Don't mark single-map blockmaps as discontiguous (#1033480)
|
|
|
0690ef |
- libxfs: Clear stale buffer errors on write (1033480)
|
|
|
0690ef |
|
|
|
0690ef |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.2.0-0.5.alpha2
|
|
|
0690ef |
- Mass rebuild 2014-01-24
|
|
|
0690ef |
|
|
|
0690ef |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.2.0-0.4.alpha2
|
|
|
0690ef |
- Mass rebuild 2013-12-27
|
|
|
0690ef |
|
|
|
0690ef |
* Mon Nov 25 2013 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.3.alpha2
|
|
|
0690ef |
- New upstream alpha release (#1034445)
|
|
|
0690ef |
- Remove xfs_check reference from fsck.xfs output (#1029455)
|
|
|
0690ef |
- Fix xfs_fsr on some files with selinux attributes (#1034013)
|
|
|
0690ef |
|
|
|
0690ef |
* Fri Nov 15 2013 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.2.alpha1
|
|
|
0690ef |
- Move xfs_types.h from xfsprogs-qa-devel to xfsprogs-devel (#1024048)
|
|
|
0690ef |
- Remove deprecated xfs_check from package (#1029458)
|
|
|
0690ef |
|
|
|
564d46 |
* Thu Sep 26 2013 Eric Sandeen <sandeen@redhat.com> 3.2.0-0.1.alpha1
|
|
|
564d46 |
- New upstream alpha release with preliminary CRC support (#1015632)
|
|
|
564d46 |
- Additional patches beyon 3.2.0-alpha1:
|
|
|
564d46 |
- Fix big endian build
|
|
|
564d46 |
- Handle symlinks in xfs_quota arguments (#1013668)
|
|
|
564d46 |
- Don't report non-regular files as xfsctl-capable (#1012412)
|
|
|
564d46 |
- Fix log recovery on 4k filesystems
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Aug 15 2013 Eric Sandeen <sandeen@redhat.com> 3.1.11-3
|
|
|
564d46 |
- mkfs.xfs: fix protofile name create block reservation (#918473)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jul 22 2013 Eric Sandeen <sandeen@redhat.com> 3.1.11-2
|
|
|
564d46 |
- Update xfs_metadump manpage re: frozen filesystems (#953442)
|
|
|
564d46 |
|
|
|
564d46 |
* Wed May 08 2013 Eric Sandeen <sandeen@redhat.com> 3.1.11-1
|
|
|
564d46 |
- New upstream release.
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.10-2
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Dec 13 2012 Eric Sandeen <sandeen@redhat.com> 3.1.10-1
|
|
|
564d46 |
- New upstream release, with non-broken tarball.
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Dec 12 2012 Eric Sandeen <sandeen@redhat.com> 3.1.9-1
|
|
|
564d46 |
- New upstream release.
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-5
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Mar 30 2012 Eric Sandeen <sandeen@redhat.com> 3.1.8-4
|
|
|
564d46 |
- Rebuild against new RPM (RHBZ#808250)
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Mar 28 2012 Eric Sandeen <sandeen@redhat.com> 3.1.8-3
|
|
|
564d46 |
- Move files out of /lib64 to /usr/lib64
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Mar 28 2012 Eric Sandeen <sandeen@redhat.com> 3.1.8-2
|
|
|
564d46 |
- Move files out of /sbin to /usr/sbin
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Mar 23 2012 Eric Sandeen <sandeen@redhat.com> 3.1.8-1
|
|
|
564d46 |
- New upstream release.
|
|
|
564d46 |
|
|
|
564d46 |
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-2
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Nov 18 2011 Eric Sandeen <sandeen@redhat.com> 3.1.7-1
|
|
|
564d46 |
- New upstream release.
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Oct 17 2011 Eric Sandeen <sandeen@redhat.com> 3.1.6-2
|
|
|
564d46 |
- Remove mistaken "test" in release string
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Oct 14 2011 Eric Sandeen <sandeen@redhat.com> 3.1.6-1.test
|
|
|
564d46 |
- New upstream release. Drop -DNDEBUG build flag.
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Mar 31 2011 Eric Sandeen <sandeen@redhat.com> 3.1.5-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.4-2
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Nov 18 2010 Eric Sandeen <sandeen@redhat.com> 3.1.4-1
|
|
|
564d46 |
- New upstream release; disable DEBUG for now to build
|
|
|
564d46 |
|
|
|
564d46 |
* Sat Aug 28 2010 Eric Sandeen <sandeen@redhat.com> 3.1.3-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Fri May 07 2010 Eric Sandeen <sandeen@redhat.com> 3.1.2-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Apr 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-7
|
|
|
564d46 |
- make devel pkg require libuuid-devel (#576296)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Mar 15 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-6
|
|
|
564d46 |
- Fix missing locking for btree manipulation in xfs_repair
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-5
|
|
|
564d46 |
- --enable-static=no doesn't work; just nuke static libs
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-4
|
|
|
564d46 |
- Fix up -devel package descriptions
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 12 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-3
|
|
|
564d46 |
- Drop static libs (#556102)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Feb 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-2
|
|
|
564d46 |
- Fix mkfs of target with nothing blkid can recognize (#561870)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Feb 01 2010 Eric Sandeen <sandeen@redhat.com> 3.1.1-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
- Fix fd validity test for device-less mkfs invocation
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Jan 17 2010 Eric Sandeen <sandeen@redhat.com> 3.1.0-2
|
|
|
564d46 |
- Post-release mkfs fixes (#555847)
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Jan 13 2010 Eric Sandeen <sandeen@redhat.com> 3.1.0-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
- Minor fixups for new glibc headers
|
|
|
564d46 |
- Fixes default mkfs.xfs on 4k sector device (#539553)
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Dec 08 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-5
|
|
|
564d46 |
- And finally, BuildRequire libblkid-devel
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Dec 07 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-4
|
|
|
564d46 |
- Actually patch & run configure script w/ blkid bits...
|
|
|
564d46 |
- Kill rpath in xfs_fsr
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Nov 20 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-3
|
|
|
564d46 |
- Fix up build issues w.r.t. off64_t
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Nov 10 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-2
|
|
|
564d46 |
- Add trim/discard & libblkid support
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Sep 01 2009 Eric Sandeen <sandeen@redhat.com> 3.0.3-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-10
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-9
|
|
|
564d46 |
- Fix block overflows in xfs_repair and xfs_metadump
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-8
|
|
|
564d46 |
- Fix up build-requires after e2fsprogs splitup
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Jun 18 2009 Dennis Gilmore <dennis@ausil.us> 3.0.1-7
|
|
|
564d46 |
- update sparc multilib handling
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-6
|
|
|
564d46 |
- Make lazy superblock counters the default
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-5
|
|
|
564d46 |
- Add fallocate command to config script & fix for 32-bit
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jun 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-4
|
|
|
564d46 |
- Add fallocate command to xfs_io
|
|
|
564d46 |
|
|
|
564d46 |
* Fri May 15 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-3
|
|
|
564d46 |
- Fix and re-enable readline
|
|
|
564d46 |
|
|
|
564d46 |
* Tue May 05 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-2
|
|
|
564d46 |
- Conflict with xfsdump < 3.0.1 since files moved between them
|
|
|
564d46 |
|
|
|
564d46 |
* Tue May 05 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Sat Apr 18 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-4
|
|
|
564d46 |
- Fix build for non-multilib arches, oops.
|
|
|
564d46 |
|
|
|
564d46 |
* Sat Apr 18 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-3
|
|
|
564d46 |
- Create new xfsprogs-qa-devel subpackage
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-2
|
|
|
564d46 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Feb 04 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-1
|
|
|
564d46 |
- New upstream release
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Jan 08 2009 Eric Sandeen <sandeen@redhat.com> 2.10.2-3
|
|
|
564d46 |
- Fix perms of libhandle.so in specfile, not makefile
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Jan 07 2009 Eric Sandeen <sandeen@redhat.com> 2.10.2-2
|
|
|
564d46 |
- Fix perms of libhandle.so so that it's properly stripped
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Dec 07 2008 Eric Sandeen <sandeen@redhat.com> 2.10.2-1
|
|
|
564d46 |
- New upstream release, bugfix only.
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Nov 26 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-4
|
|
|
564d46 |
- Add protection from borken sys_ustat
|
|
|
564d46 |
- Add final upstream versions of gfs2 & parallel build patches
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Nov 12 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-2
|
|
|
564d46 |
- Recognize gfs/gfs2 in libdisk
|
|
|
564d46 |
- Enable parallel builds
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Sep 05 2008 Eric Sandeen <sandeen@redhat.com> 2.10.1-1
|
|
|
564d46 |
- Update to xfsprogs 2.10.1
|
|
|
564d46 |
- Add ASCII case-insensitive support to xfsprogs.
|
|
|
564d46 |
- xfs_repair fixes
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Jun 04 2008 Dennis Gilmore <dennis@ausil.us> 2.9.8-3
|
|
|
564d46 |
- sparc32 is built using the sparcv9 variant
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Jun 04 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-2
|
|
|
564d46 |
- Tidy up multilib hack for non-multilib arches & add sparc (#448452)
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Apr 23 2008 Eric Sandeen <sandeen@redhat.com> 2.9.8-1
|
|
|
564d46 |
- Update to xfsprogs 2.9.8
|
|
|
564d46 |
- Add support for sb_features2 in wrong location
|
|
|
564d46 |
- Add -c option to xfs_admin to turn lazy-counters on/off
|
|
|
564d46 |
- Added support for mdp in libdisk/mkfs.xfs
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Mar 02 2008 Eric Sandeen <sandeen@redhat.com> 2.9.7-1
|
|
|
564d46 |
- Update to xfsprogs 2.9.7
|
|
|
564d46 |
- Lazy sb counters back off by default; other misc fixes
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Feb 06 2008 Eric Sandeen <sandeen@redhat.com> 2.9.6-1
|
|
|
564d46 |
- Update to xfsprogs 2.9.6 - fixes mkfs sizing problem.
|
|
|
564d46 |
- Trim down BuildRequires to what's actually required now
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jan 21 2008 Eric Sandeen <sandeen@redhat.com> 2.9.5-1
|
|
|
564d46 |
- Update to xfsprogs 2.9.5
|
|
|
564d46 |
- Contains more optimal mkfs defaults
|
|
|
564d46 |
- specfile cleanup, & don't restate config defaults
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Oct 23 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-4
|
|
|
564d46 |
- Add arm to multilib header wrapper
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Oct 02 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-3
|
|
|
564d46 |
- mkfs.xfs: Fix wiping old AG headers and purge whack buffers
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Oct 01 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-2
|
|
|
564d46 |
- Add alpha to the multilib wrapper (#310411)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-1
|
|
|
564d46 |
- Update to xfsprogs 2.9.4
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-3
|
|
|
564d46 |
- Add gawk to buildrequires
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Aug 16 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-2
|
|
|
564d46 |
- Update license tag
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Jul 26 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-1
|
|
|
564d46 |
- Upgrade to xfsprogs 2.9.2, quota, xfs_repair, and filestreams changes
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Jul 6 2007 Eric Sandeen <sandeen@redhat.com> 2.8.21-1
|
|
|
564d46 |
- Upgrade to xfsprogs 2.8.21, lazy sb counters enabled,
|
|
|
564d46 |
xfs_quota fix (#236746)
|
|
|
564d46 |
|
|
|
564d46 |
* Thu May 31 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-2
|
|
|
564d46 |
- Fix ppc64 build... again
|
|
|
564d46 |
|
|
|
564d46 |
* Fri May 25 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-1
|
|
|
564d46 |
- Upgrade to xfsprogs 2.8.20, several xfs_repair fixes
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Mar 06 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-3
|
|
|
564d46 |
- Remove libtermcap-devel from BuildRequires
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Feb 14 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-2
|
|
|
564d46 |
- Disable readline support for now (#223781)
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Feb 04 2007 Jarod Wilson <jwilson@redhat.com> 2.8.18-1
|
|
|
564d46 |
- Post-facto changelog addition to note bump to 2.8.18
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Sep 27 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-3
|
|
|
564d46 |
- bump build version to 3 for a new brew build
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Sep 26 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-2
|
|
|
564d46 |
- add ppc64 build patch
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Sep 21 2006 Russell Cattelan <cattelan@redhat.com> 2.8.11-1
|
|
|
564d46 |
- Upgrade to xfsprogs 2.8.11 Need to pick up important repair fixes
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 2.8.4-3
|
|
|
564d46 |
- exclude arch ppc64 for now (#199315)
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.8.4-2
|
|
|
564d46 |
- rebuild
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Jul 04 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.4-1
|
|
|
564d46 |
- Upgrade to 2.8.4 (#196599 #c2)
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.3-1
|
|
|
564d46 |
- Upgrade to 2.8.3 (#196599)
|
|
|
564d46 |
- Applied Russell Coker's suggested patch to improve the
|
|
|
564d46 |
performance for SELinux machines significantly (#120622)
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-2
|
|
|
564d46 |
- Fixed multilib conflict of xfs/platform_defs.h (#192755)
|
|
|
564d46 |
|
|
|
564d46 |
* Sun Mar 12 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-1
|
|
|
564d46 |
- Upgrade to 2.7.11 and spec file cleanup (#185234)
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2.1
|
|
|
564d46 |
- bump again for double-long bug on ppc(64)
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2
|
|
|
564d46 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
564d46 |
- rebuilt
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Oct 31 2005 Robert Scheck <redhat@linuxnetz.de> 2.7.3-1
|
|
|
564d46 |
- Upgrade to 2.7.3 and enabled termcap support (#154323)
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
|
|
|
564d46 |
- fixup building with current rpm
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Apr 20 2005 Dave Jones <davej@redhat.com>
|
|
|
564d46 |
- Disable debug. (#151438)
|
|
|
564d46 |
- Rebuild with gcc4
|
|
|
564d46 |
|
|
|
564d46 |
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 2.6.13-3
|
|
|
564d46 |
- Rebuilt for new readline.
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
564d46 |
- rebuilt
|
|
|
564d46 |
|
|
|
564d46 |
* Wed May 5 2004 Jeremy Katz <katzj@redhat.com> - 2.6.13-1
|
|
|
564d46 |
- update to 2.6.13 per request of upstream
|
|
|
564d46 |
- fixes mount by label of xfs on former raid partition (#122043)
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
564d46 |
- rebuilt
|
|
|
564d46 |
|
|
|
564d46 |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
564d46 |
- rebuilt
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 2.6.0-2
|
|
|
564d46 |
- add defattr (reported by Matthias)
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Dec 23 2003 Elliot Lee <sopwith@redhat.com> 2.6.0-3
|
|
|
564d46 |
- Fix tyops in dependencies
|
|
|
564d46 |
|
|
|
564d46 |
* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 2.6.0-1
|
|
|
564d46 |
- build for Fedora Core
|
|
|
564d46 |
- switch to more explicit file lists, nuke .la files
|
|
|
564d46 |
|
|
|
564d46 |
* Tue Dec 16 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.6.0
|
|
|
564d46 |
- Update to 2.6.0.
|
|
|
564d46 |
|
|
|
564d46 |
* Sat Sep 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
|
|
|
564d46 |
- Sync with XFS 1.3.0.
|
|
|
564d46 |
- Update to 2.5.6.
|
|
|
564d46 |
|
|
|
564d46 |
* Thu Apr 10 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.3.9-0_2.90at
|
|
|
564d46 |
- Rebuilt for Red Hat 9.
|