Browse Source

filesystem tools.

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@8735 ec354946-7b23-47d6-9f5a-488ba84defc7
tomop 9 years ago
parent
commit
39a95ae950
4 changed files with 276 additions and 97 deletions
  1. 36 31
      a/acl/acl-vl.spec
  2. 35 57
      a/attr/attr-vl.spec
  3. 186 0
      x/xfsdump/xfsdump-vl.spec
  4. 19 9
      x/xfsprogs/xfsprogs-vl.spec

+ 36 - 31
a/acl/acl-vl.spec

@@ -1,6 +1,6 @@
 Name: acl
 Summary: Access control list utilities
-Version: 2.2.49
+Version: 2.2.52
 Release: 1%{?_dist_release}
 
 Group: System Environment/Base
@@ -8,19 +8,18 @@ License: GPLv2+
 URL: http://oss.sgi.com/projects/xfs/
 
 Source: http://download.savannah.gnu.org/releases-noredirect/acl/acl-%{version}.src.tar.gz
-Patch1: acl-2.2.39-build.patch
-# bz #488674
-Patch2: acl-2.2.49-setfacl-walk.patch
-# bz #467936
-Patch3: acl-2.2.49-bz467936.patch
+
+# fix a typo in setfacl(1) man page (#675451)
+Patch1: 0001-acl-2.2.49-bz675451.patch
+
 # prepare the test-suite for SELinux and arbitrary umask
-Patch4: acl-2.2.49-tests.patch
-# bz #576550
-Patch5: acl-2.2.49-setfacl-restore.patch
-# fix typos in setfacl(1) man page (#675451)
-Patch6: acl-2.2.49-bz675451.patch
-# add function acl_extended_file_nofollow() (#692982)
-Patch7: acl-2.2.49-bz692982.patch
+Patch3: 0003-acl-2.2.52-tests.patch
+
+# Install the libraries to the appropriate directory
+Patch4: 0004-acl-2.2.52-libdir.patch
+
+# fix SIGSEGV of getfacl -e on overly long group name
+Patch5: 0005-acl-2.2.52-getfacl-segv.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildRequires: gawk
@@ -60,12 +59,9 @@ defined in POSIX 1003.1e draft standard 17.
 %prep
 %setup -q
 %patch1 -p1
-%patch2 -p1
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
-%patch7 -p1
 
 %build
 touch .census
@@ -74,21 +70,24 @@ touch .census
 make %{?_smp_mflags} LIBTOOL="libtool --tag=CC"
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make install DESTDIR=$RPM_BUILD_ROOT
-make install-dev DESTDIR=$RPM_BUILD_ROOT
-make install-lib DESTDIR=$RPM_BUILD_ROOT
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+make install-dev DESTDIR=%{buildroot}
+make install-lib DESTDIR=%{buildroot}
+
+mv -f %{buildroot}%{_datadir}/doc/acl ./doc-nover
 
 # get rid of libacl.a and libacl.la
-rm -f $RPM_BUILD_ROOT/%{_lib}/libacl.a
-rm -f $RPM_BUILD_ROOT/%{_lib}/libacl.la
-rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.a
-rm -f $RPM_BUILD_ROOT%{_libdir}/libacl.la
+rm -f %{buildroot}/%{_lib}/libacl.a
+rm -f %{buildroot}/%{_lib}/libacl.la
+rm -f %{buildroot}%{_libdir}/libacl.a
+rm -f %{buildroot}%{_libdir}/libacl.la
 
 # fix links to shared libs and permissions
-rm -f $RPM_BUILD_ROOT/%{_libdir}/libacl.so
-ln -sf ../../%{_lib}/libacl.so $RPM_BUILD_ROOT/%{_libdir}/libacl.so
-chmod 0755 $RPM_BUILD_ROOT/%{_lib}/libacl.so.*.*.*
+rm -f %{buildroot}%{_libdir}/libacl.so
+mkdir -p %{buildroot}%{_libdir}
+ln -sf ../../%{_lib}/libacl.so %{buildroot}%{_libdir}/libacl.so
+chmod 0755 %{buildroot}/%{_lib}/libacl.so.*.*.*
 
 %find_lang %{name}
 
@@ -104,18 +103,20 @@ else
 fi
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
-%post -n libacl -p /sbin/ldconfig
+%post -n libacl
+/sbin/ldconfig
 
-%postun -n libacl -p /sbin/ldconfig
+%postun -n libacl
+/sbin/ldconfig
 
 %files -f %{name}.lang
 %defattr(-,root,root)
+%doc doc-nover/*
 %{_bindir}/chacl
 %{_bindir}/getfacl
 %{_bindir}/setfacl
-%{_datadir}/doc/acl-%{version}
 %{_mandir}/man1/chacl.1*
 %{_mandir}/man1/getfacl.1*
 %{_mandir}/man1/setfacl.1*
@@ -134,6 +135,10 @@ rm -rf $RPM_BUILD_ROOT
 /%{_lib}/libacl.so.*
 
 %changelog
+* Fri Jul  4 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.2.52-1
+- new upstream release.
+- replaced patches to the newest rawhide's.
+
 * Sat Apr 09 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.49-1
 - updated to 2.2.49
 - added Patch2-7 from Fedora

+ 35 - 57
a/attr/attr-vl.spec

@@ -2,7 +2,7 @@
 
 Summary: Utilities for managing filesystem extended attributes
 Name: attr
-Version: 2.4.44
+Version: 2.4.47
 Release: 1%{?_dist_release}
 
 License: GPLv2+
@@ -11,35 +11,11 @@ Group: System Environment/Base
 
 Source: http://download.savannah.gnu.org/releases-noredirect/attr/attr-%{version}.src.tar.gz
 
-# a file available in the upstream git repo, but not in the release
-Source2: sort-getfattr-output
-
-# make it ready for rpmbuild
-Patch1: attr-2.4.32-build.patch
-
-# bz #485473
-Patch2: attr-2.4.43-leak.patch
-
-# prepare the test-suite for SELinux
-Patch3: attr-2.4.44-tests.patch
-
 # silence compile-time warnings
-Patch4: attr-2.4.44-warnings.patch
-
-# setfattr.1: document supported encodings of values (#587516)
-Patch5: attr-2.4.44-bz587516.patch
-
-# getfattr: encode NULs properly with --encoding=text (#650539)
-Patch6: attr-2.4.44-bz650539.patch
-
-# getfattr: return non-zero exit code on failure (#660619)
-Patch7: attr-2.4.44-bz660619.patch
+Patch1: 0001-attr-2.4.47-warnings.patch
 
-# walk_tree: do not follow symlink to directory with -h (#660613)
-Patch8: attr-2.4.44-bz660613.patch
-
-# fix typos in attr(1) man page (#669095)
-Patch9: attr-2.4.44-bz669095.patch
+# install /etc/xattr.conf
+Patch2: 0002-attr-2.4.47-xattr-conf.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildRequires: gettext
@@ -119,20 +95,8 @@ you'll also want to install attr.
 
 %prep
 %setup -q
-%setup -q
 %patch1 -p1
 %patch2 -p1
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
-%patch6 -p1
-%patch7 -p1
-%patch8 -p1
-%patch9 -p1
-
-# test-suite helper script
-install -m0755 %{SOURCE2} test/
-
 
 %build
 # attr abuses libexecdir
@@ -140,21 +104,25 @@ install -m0755 %{SOURCE2} test/
 make %{?_smp_mflags} LIBTOOL="libtool --tag=CC"
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make install DESTDIR=$RPM_BUILD_ROOT
-make install-dev DESTDIR=$RPM_BUILD_ROOT
-make install-lib DESTDIR=$RPM_BUILD_ROOT
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+make install-dev DESTDIR=%{buildroot}
+make install-lib DESTDIR=%{buildroot}
 
 # get rid of libattr.a and libattr.la
-rm -f $RPM_BUILD_ROOT/%{_lib}/libattr.a
-rm -f $RPM_BUILD_ROOT/%{_lib}/libattr.la
-rm -f $RPM_BUILD_ROOT%{_libdir}/libattr.a
-rm -f $RPM_BUILD_ROOT%{_libdir}/libattr.la
+rm -f %{buildroot}/%{_lib}/libattr.a
+rm -f %{buildroot}/%{_lib}/libattr.la
+rm -f %{buildroot}%{_libdir}/libattr.a
+rm -f %{buildroot}%{_libdir}/libattr.la
 
 # fix links to shared libs and permissions
-rm -f $RPM_BUILD_ROOT/%{_libdir}/libattr.so
-ln -sf ../../%{_lib}/libattr.so $RPM_BUILD_ROOT/%{_libdir}/libattr.so
-chmod 0755 $RPM_BUILD_ROOT/%{_lib}/libattr.so.*.*.*
+rm -f %{buildroot}%{_libdir}/libattr.so
+mkdir -p %{buildroot}%{_libdir}
+ln -sf ../../%{_lib}/libattr.so %{buildroot}%{_libdir}/libattr.so
+chmod 0755 %{buildroot}/%{_lib}/libattr.so.*.*.*
+
+# remove documents without version
+rm -rf %{buildroot}%{_datadir}/doc/attr
 
 %find_lang %{name}
 
@@ -172,15 +140,19 @@ else
 fi
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
-%post -n libattr -p /sbin/ldconfig
+%post -n libattr
+/sbin/ldconfig
 
-%postun -n libattr -p /sbin/ldconfig
+%postun -n libattr
+/sbin/ldconfig
 
-%post -n compat32-libattr -p /sbin/ldconfig
+%post -n compat32-libattr
+/sbin/ldconfig
 
-%postun -n compat32-libattr -p /sbin/ldconfig
+%postun -n compat32-libattr
+/sbin/ldconfig
 
 %files -f %{name}.lang
 %defattr(-,root,root)
@@ -203,6 +175,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n libattr
 /%{_lib}/libattr.so.*
+%config(noreplace) %{_sysconfdir}/xattr.conf
 
 # compat32
 %if %{build_compat32}
@@ -213,9 +186,14 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n compat32-libattr
 /%{_lib}/libattr.so.*
+%config(noreplace) %{_sysconfdir}/xattr.conf
 %endif
 
 %changelog
+* Fri Jul  4 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.47-1
+- new upstream release.
+- replaced patches to the newest rawhide's.
+
 * Sat Apr  9 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.44-1
 - new upstream release
 - remove static library from devel package
@@ -242,7 +220,7 @@ rm -rf $RPM_BUILD_ROOT
 * Mon Jun 30 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.4.41-2
 - initial build for Vine Linux
 
-* Tue Feb 13 2008 Zdenek Prikryl <zprikryl@redhat.com> 2.4.41-1
+* Wed Feb 13 2008 Zdenek Prikryl <zprikryl@redhat.com> 2.4.41-1
 - New version 2.4.41
 - Removed useless attr-2.0.8-docperms.patch
 

+ 186 - 0
x/xfsdump/xfsdump-vl.spec

@@ -0,0 +1,186 @@
+Summary: Administrative utilities for the XFS filesystem
+Name: xfsdump
+Version: 3.1.3
+Release: 6%{?_dist_release}
+# Licensing based on generic "GNU GENERAL PUBLIC LICENSE"
+# in source, with no mention of version.
+License: GPL+
+Group: System Environment/Base
+URL: http://oss.sgi.com/projects/xfs/
+Source0: ftp://oss.sgi.com/projects/xfs/cmd_tars/%{name}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: libtool, gettext, gawk
+BuildRequires: xfsprogs-devel, libuuid-devel, libattr-devel ncurses-devel
+Requires: xfsprogs >= 2.6.30, attr >= 2.0.0
+
+Patch0:		xfsdump-getdents-ifdef-hell.patch
+Patch1:		xfsdump-ancient-getdents-code.patch
+
+Vendor: Project Vine
+Distribution: Vine Linux
+Packager: tomop
+
+%description
+The xfsdump package contains xfsdump, xfsrestore and a number of
+other utilities for administering XFS filesystems.
+
+xfsdump examines files in a filesystem, determines which need to be
+backed up, and copies those files to a specified disk, tape or other
+storage medium.	 It uses XFS-specific directives for optimizing the
+dump of an XFS filesystem, and also knows how to backup XFS extended
+attributes.  Backups created with xfsdump are "endian safe" and can
+thus be transfered between Linux machines of different architectures
+and also between IRIX machines.
+
+xfsrestore performs the inverse function of xfsdump; it can restore a
+full backup of a filesystem.  Subsequent incremental backups can then
+be layered on top of the full backup.  Single files and directory
+subtrees may be restored from full or partial backups.
+
+%prep
+%setup -q
+
+%patch0 -p1
+%patch1 -p1
+
+%build
+%configure
+
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make DIST_ROOT=$RPM_BUILD_ROOT install
+# remove non-versioned docs location
+rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsdump/
+
+# Bit of a hack to move files from /sbin to /usr/sbin
+(cd $RPM_BUILD_ROOT/%{_sbindir}; rm xfsdump xfsrestore)
+#(cd $RPM_BUILD_ROOT/%{_sbindir}; mv ../../sbin/xfsdump .)
+#(cd $RPM_BUILD_ROOT/%{_sbindir}; mv ../../sbin/xfsrestore .)
+
+# Create inventory dir (otherwise created @ runtime)
+mkdir -p $RPM_BUILD_ROOT/%{_sharedstatedir}/xfsdump/inventory
+
+%find_lang %{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{name}.lang
+%defattr(-,root,root)
+%doc README doc/COPYING doc/CHANGES doc/README.xfsdump doc/xfsdump_ts.txt
+%{_mandir}/man8/*
+/sbin/*
+%{_sbindir}*
+%{_sharedstatedir}/xfsdump/inventory
+
+%changelog
+* Fri Jul  4 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1.3-6
+- initial build for Vine Linux.
+
+* Mon Jun 16 2014 Eric Sandeen <sandeen@redhat.com> 3.1.3-5
+- Fix aarch64 build (#926800)
+
+* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Mon Jan 20 2014 Eric Sandeen <sandeen@redhat.com> 3.1.3-3
+- Add /var/lib/xfsdump/inventory to file list (was created runtime)
+
+* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
+* Wed May 08 2013 Eric Sandeen <sandeen@redhat.com> 3.1.3-1
+- New upstream release
+
+* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Thu Dec 13 2012 Eric Sandeen <sandeen@redhat.com> 3.1.2-1
+- New upstream release, with non-broken tarball
+
+* Thu Dec 13 2012 Eric Sandeen <sandeen@redhat.com> 3.1.1-1
+- New upstream release
+
+* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Wed Mar 28 2012 Eric Sandeen <sandeen@redhat.com> 3.1.0-2
+- Move files out of /sbin to /usr/sbin
+
+* Fri Mar 23 2012 Eric Sandeen <sandeen@redhat.com> 3.1.0-1
+- New upstream release
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.6-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Mon Oct 17 2011 Eric Sandeen <sandeen@redhat.com> 3.0.6-1
+- New upstream release
+
+* Thu Mar 31 2011 Eric Sandeen <sandeen@redhat.com> 3.0.5-1
+- New upstream release
+
+* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Jan 13 2010 Eric Sandeen <sandeen@redhat.com> 3.0.4-1
+- New upstream release
+
+* Mon Nov 30 2009 Dennis Gregorovic <dgregor@redhat.com> - 3.0.1-3.1
+- Rebuilt for RHEL 6
+
+* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Tue Jun 30 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-2
+- Fix up build-requires after e2fsprogs splitup
+
+* Tue May 05 2009 Eric Sandeen <sandeen@redhat.com> 3.0.1-1
+- New upstream release
+
+* 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
+
+* Wed Feb 04 2009 Eric Sandeen <sandeen@redhat.com> 3.0.0-1
+- New upstream release
+
+* Wed Nov 12 2008 Eric Sandeen <sandeen@redhat.com> 2.2.48-2
+- Enable parallel builds
+
+* Sun Feb 10 2008 Eric Sandeen <sandeen@redhat.com> - 2.2.48-1
+- Update to xfsdump version 2.2.48
+- First build with gcc-4.3
+
+* Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> - 2.2.46-1
+- Update to xfsdump version 2.2.46
+- Dropped O_CREAT patch, now upstream
+
+* Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> - 2.2.45-3
+- Update license tag
+- Fix up O_CREAT opens with no mode
+- Add gawk to buildrequires
+
+* Tue Jun 19 2007 Eric Sandeen <sandeen@redhat.com> - 2.2.45-2
+- Remove readline-devel & libtermcap-devel BuildRequires
+
+* Thu May 31 2007 Eric Sandeen <sandeen@redhat.com> - 2.2.45-1
+- Update to xfsdump 2.2.45
+
+* Thu Aug 31 2006 Russell Cattelan <cattelan@thebarn.com> - 2.2.42-2
+- Remove Distribution: tag
+
+* Wed Aug 23 2006 Russell Cattelan <cattelan@thebarn.com> - 2.2.42-1
+- update to version 2.2.42 
+
+* Tue Aug 22 2006 Russell Cattelan <cattelan@thebarn.com> - 2.2.38-3
+- Fix the /usr/sbin sym links to relative links
+- Add the Distribution tag
+- Add ncurses-devel to buildrequires
+
+* Wed Aug 16 2006 Russell Cattelan <cattelan@thebarn.com> - 2.2.38-2
+- install removes the makefile installed version of the docs
+	package the docs based in the version specfic directory
+ 
+* Wed Aug  9 2006 Russell Cattelan <cattelan@thebarn.com> - 2.2.38-1
+- Add xfsdump to Fedora

+ 19 - 9
x/xfsprogs/xfsprogs-vl.spec

@@ -1,7 +1,7 @@
 Summary:	Utilities for managing the XFS filesystem
 Summary(ja):	XFSファイルシステムを管理するためのユーティリティ
 Name:		xfsprogs
-Version:	3.1.10
+Version:	3.2.0
 Release:        1%{?_dist_release}
 # Licensing based on generic "GNU GENERAL PUBLIC LICENSE"
 # in source, with no mention of version.
@@ -14,8 +14,9 @@ Source0:	ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}-%{version}.tar
 Source1:	xfsprogs-wrapper.h
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
 BuildRequires:	libtool, gettext
-BuildRequires:	e2fsprogs-devel
 BuildRequires:	libuuid-devel
+BuildRequires:  readline-devel
+BuildRequires:  libblkid-devel
 
 %description
 A set of commands to use the XFS filesystem, including mkfs.xfs.
@@ -52,19 +53,27 @@ also want to install xfsprogs.
 # xfsprogs abuses libexecdir
 export tagname=CC DEBUG=-DNDEBUG
 
-%configure 
+%configure \
+        --enable-readline=yes   \
+        --enable-blkid=yes
 
-make %{?_smp_mflags}
+# 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
+
+make V=1 %{?_smp_mflags}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-make DIST_ROOT=$RPM_BUILD_ROOT install install-dev install-qa
+make V=1 DIST_ROOT=$RPM_BUILD_ROOT install install-dev install-qa
 
 # nuke .la files, etc
 rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.{la,a}}
+
 # 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/
 
@@ -89,9 +98,7 @@ rm -rf $RPM_BUILD_ROOT
 %files -f %{name}.lang
 %defattr(-,root,root)
 %doc doc/CHANGES doc/COPYING doc/CREDITS README
-/sbin/fsck.xfs
-/sbin/mkfs.xfs
-/sbin/xfs_repair
+/sbin/*
 /%{_lib}/*.so.*
 %{_mandir}/man8/*
 %{_mandir}/man5/*
@@ -104,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/*.so
 
 %changelog
+* Fri Jul  4 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2.0-1
+- new upstream release.
+
 * Thu Dec 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.10-1
 - new upstream release
 
@@ -162,7 +172,7 @@ rm -rf $RPM_BUILD_ROOT
 * Thu Jul 26 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-1
 - Upgrade to xfsprogs 2.9.2, quota, xfs_repair, and filestreams changes
 
-* Thu Jul  6 2007 Eric Sandeen <sandeen@redhat.com> 2.8.21-1
+* Fri 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)