Compare commits

..

5 Commits
master ... f7

Author SHA1 Message Date
Fedora Release Engineering b21734be22 dist-git conversion 2010-07-29 13:22:00 +00:00
Eric Sandeen e535b01fb9 * 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
2008-01-21 19:19:31 +00:00
Eric Sandeen 36ac7b5c2b * Tue Oct 02 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-3
- mkfs.xfs: Fix wiping old AG headers and purge whack buffers

* Mon Oct 01 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-2
- Add alpha to the multilib wrapper (#310411)

* Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-1
- Update to xfsprogs 2.9.4

* Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-3
- Add gawk to buildrequires

* Thu Aug 16 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-2
- Update license tag

* 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
2007-10-23 16:34:25 +00:00
Eric Sandeen 386abe1448 Update to 2.8.21 2007-07-26 19:51:20 +00:00
Bill Nottingham b13a706a98 Initialize branch F-7 for xfsprogs 2007-05-18 11:25:58 +00:00
6 changed files with 174 additions and 213 deletions

40
.gitignore vendored
View File

@ -1,39 +1 @@
xfsprogs-3.1.2.tar.gz xfsprogs_2.9.5-1.tar.gz
/xfsprogs-3.1.3.tar.gz
/xfsprogs-3.1.4.tar.gz
/xfsprogs-3.1.5.tar.gz
/xfsprogs-3.1.6.tar.gz
/xfsprogs-3.1.7.tar.gz
/xfsprogs-3.1.8.tar.gz
/xfsprogs-3.1.9.tar.gz
/xfsprogs-3.1.10.tar.gz
/xfsprogs-3.1.11.tar.gz
/xfsprogs-3.2.0-alpha1.tar.gz
/xfsprogs-3.2.0-alpha2.tar.gz
/xfsprogs-3.2.0-rc2.tar.gz
/xfsprogs-3.2.0-rc3.tar.gz
/xfsprogs-3.2.0.tar.gz
/xfsprogs-3.2.1.tar.gz
/xfsprogs-3.2.2.tar.gz
/xfsprogs-3.2.3.tar.gz
/xfsprogs-3.2.4.tar.gz
/xfsprogs-4.2.0.tar.gz
/xfsprogs-4.3.0.tar.gz
/xfsprogs-4.5.0.tar.gz
/xfsprogs-4.7.0.tar.gz
/xfsprogs-4.8.0.tar.gz
/xfsprogs-4.9.0.tar.xz
/xfsprogs-4.10.0.tar.xz
/xfsprogs-4.11.0.tar.xz
/xfsprogs-4.12.0.tar.xz
/xfsprogs-4.13.1.tar.xz
/xfsprogs-4.14.0.tar.xz
/xfsprogs-4.15.0.tar.xz
/xfsprogs-4.15.1.tar.xz
/xfsprogs-4.16.0.tar.xz
/xfsprogs-4.17.0.tar.xz
/xfsprogs-4.18.0.tar.xz
/xfsprogs-4.19.0.tar.xz
/xfsprogs-4.20.0.tar.xz
/xfsprogs-5.0.0.tar.xz
/xfsprogs-5.1.0.tar.xz

View File

@ -3,19 +3,4 @@
NAME := xfsprogs NAME := xfsprogs
SPECFILE = $(firstword $(wildcard *.spec)) SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common include ../common/Makefile.common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
branch Normal file
View File

@ -0,0 +1 @@
F-7

View File

@ -1 +1 @@
SHA512 (xfsprogs-5.1.0.tar.xz) = ca5959edb299be8574b2ca51e907a418fab796ae92f588075a2aab0c2a3cf8dae49e2b68679c65c361201223e8f8ac29b1e5618eb1e519496c3aca9218620881 d9079d9a8dbc7cc983ed518842ca909f xfsprogs_2.9.5-1.tar.gz

24
xfsprogs-wrapper.h Normal file
View File

@ -0,0 +1,24 @@
/* This file is here to prevent a file conflict on multiarch systems. A
* conflict will occur because platform_defs.h has arch-specific definitions.
*
* DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
#if defined(__i386__)
#include "platform_defs-i386.h"
#elif defined(__ia64__)
#include "platform_defs-ia64.h"
#elif defined(__powerpc64__)
#include "platform_defs-ppc64.h"
#elif defined(__powerpc__)
#include "platform_defs-ppc.h"
#elif defined(__s390x__)
#include "platform_defs-s390x.h"
#elif defined(__s390__)
#include "platform_defs-s390.h"
#elif defined(__x86_64__)
#include "platform_defs-x86_64.h"
#elif defined(__alpha__)
#include "platform_defs-alpha.h"
#else
#error "This xfsprogs-devel package does not work your architecture?"
#endif

View File

@ -1,21 +1,23 @@
Summary: Utilities for managing the XFS filesystem Summary: Utilities for managing the XFS filesystem
Name: xfsprogs Name: xfsprogs
Version: 5.1.0 Version: 2.9.5
Release: 2%{?dist} Release: 1%{?dist}
# 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.
License: GPL+ and LGPLv2+ License: GPL+ and LGPLv2+
URL: https://xfs.wiki.kernel.org Group: System Environment/Base
Source0: http://kernel.org/pub/linux/utils/fs/xfs/xfsprogs/%{name}-%{version}.tar.xz URL: http://oss.sgi.com/projects/xfs/
Requires: util-linux Source0: ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
BuildRequires: gcc Source1: xfsprogs-wrapper.h
BuildRequires: libtool, gettext, libattr-devel, libuuid-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: readline-devel, libblkid-devel >= 2.17-0.1.git5e51568 BuildRequires: autoconf, libtool, gettext, gawk
Buildrequires: lvm2-devel, libicu-devel >= 4.6 BuildRequires: readline-devel
BuildRequires: /usr/include/uuid/uuid.h
Provides: xfs-cmds Provides: xfs-cmds
Obsoletes: xfs-cmds <= %{version} Obsoletes: xfs-cmds <= %{version}
Provides: xfsprogs-qa-devel Conflicts: xfsdump < 2.0.0
Obsoletes: xfsprogs-qa-devel <= %{version}
Conflicts: xfsdump < 3.0.1
Suggests: xfsprogs-xfs_scrub
%description %description
A set of commands to use the XFS filesystem, including mkfs.xfs. A set of commands to use the XFS filesystem, including mkfs.xfs.
@ -27,222 +29,209 @@ variable block sizes, is extent based, and makes extensive use of
Btrees (directories, extents, free space) to aid both performance Btrees (directories, extents, free space) to aid both performance
and scalability. and scalability.
This implementation is on-disk compatible with the IRIX version Refer to the documentation at http://oss.sgi.com/projects/xfs/
of XFS. for complete details. This implementation is on-disk compatible
with the IRIX version of XFS.
%package devel %package devel
Summary: XFS filesystem-specific headers Summary: XFS filesystem-specific static libraries and headers
Requires: xfsprogs = %{version}-%{release}, libuuid-devel Group: Development/Libraries
Requires: xfsprogs = %{version}-%{release}
%description devel %description devel
xfsprogs-devel contains the header files needed to develop XFS xfsprogs-devel contains the libraries and header files needed to
filesystem-specific programs. develop XFS filesystem-specific programs.
You should install xfsprogs-devel if you want to develop XFS You should install xfsprogs-devel if you want to develop XFS
filesystem-specific programs, If you install xfsprogs-devel, you'll filesystem-specific programs, If you install xfsprogs-devel, you'll
also want to install xfsprogs. also want to install xfsprogs.
%package xfs_scrub
Summary: XFS filesystem online scrubbing utilities
Requires: xfsprogs = %{version}-%{release}, python3
%description xfs_scrub
xfs_scrub attempts to check and repair all metadata in a mounted XFS filesystem.
WARNING! This program is EXPERIMENTAL, which means that its behavior and
interface could change at any time!
%prep %prep
%setup -q %setup -q
%build %build
export tagname=CC # xfsprogs abuses libexecdir
export tagname=CC DEBUG=-DNDEBUG
%configure \ %configure \
--enable-readline=yes \ --sbindir=/sbin \
--enable-blkid=yes \ --libdir=/%{_lib} \
--enable-lto=no --libexecdir=%{_libdir} \
--bindir=%{_sbindir}
make %{?_smp_mflags} make %{?_smp_mflags}
%install %install
make DIST_ROOT=$RPM_BUILD_ROOT install install-dev \ rm -rf $RPM_BUILD_ROOT
PKG_ROOT_SBIN_DIR=%{_sbindir} PKG_ROOT_LIB_DIR=%{_libdir} make DIST_ROOT=$RPM_BUILD_ROOT install install-dev
# nuke .la files, etc # nuke .la files, etc
rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.{la,a}} rm -f $RPM_BUILD_ROOT/{%{_lib}/*.{la,a,so},%{_libdir}/*.la}
# 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 # remove non-versioned docs location
rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsprogs/ rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/xfsprogs/
# 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} %find_lang %{name}
%ldconfig_scriptlets %clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f %{name}.lang %files -f %{name}.lang
%doc doc/CHANGES README %defattr(-,root,root)
%{_libdir}/*.so.* %doc doc/CHANGES doc/COPYING doc/CREDITS doc/PORTING README
%dir %{_usr}/%{_lib}/xfsprogs /sbin/fsck.xfs
%{_usr}/%{_lib}/xfsprogs/* /sbin/mkfs.xfs
%{_mandir}/man5/* /sbin/xfs_repair
/%{_lib}/*.so.*
%{_mandir}/man8/* %{_mandir}/man8/*
%{_mandir}/man5/*
%{_sbindir}/* %{_sbindir}/*
%{_unitdir}/*
%exclude %{_sbindir}/xfs_scrub*
%exclude %{_mandir}/man8/xfs_scrub*
%exclude %{_usr}/%{_lib}/xfsprogs/xfs_scrub*
%exclude %{_mandir}/man8/xfs_scrub_all*
%exclude %{_unitdir}/xfs_scrub*
%files xfs_scrub
%{_sbindir}/xfs_scrub*
%{_mandir}/man8/xfs_scrub*
%{_usr}/%{_lib}/xfsprogs/xfs_scrub*
%{_mandir}/man8/xfs_scrub_all*
%{_unitdir}/xfs_scrub*
%files devel %files devel
%{_mandir}/man2/* %defattr(-,root,root)
%{_mandir}/man3/* %{_mandir}/man3/*
%dir %{_includedir}/xfs %{_includedir}/disk
%{_includedir}/xfs/handle.h %{_includedir}/xfs
%{_includedir}/xfs/jdm.h %{_libdir}/*.a
%{_includedir}/xfs/linux.h
%{_includedir}/xfs/xfs.h
%{_includedir}/xfs/xfs_arch.h
%{_includedir}/xfs/xfs_fs.h
%{_includedir}/xfs/xfs_types.h
%{_includedir}/xfs/xfs_format.h
%{_includedir}/xfs/xfs_da_format.h
%{_includedir}/xfs/xfs_log_format.h
%{_includedir}/xfs/xqm.h
%{_libdir}/*.so %{_libdir}/*.so
%changelog %changelog
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-2 * Mon Jan 21 2008 Eric Sandeen <sandeen@redhat.com> 2.9.5-1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - Update to xfsprogs 2.9.5
- Contains more optimal mkfs defaults
- specfile cleanup, & don't restate config defaults
* Fri Jul 19 2019 Eric Sandeen <sandeen@redhat.com> 5.1.0-1 * Tue Oct 23 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-4
- New upstream release - Add arm to multilib header wrapper
* Wed May 08 2019 Eric Sandeen <sandeen@redhat.com> 5.0.0-2 * Tue Oct 02 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-3
- Create new xfs_scrub subpackage (#1666839) - mkfs.xfs: Fix wiping old AG headers and purge whack buffers
* Fri May 03 2019 Eric Sandeen <sandeen@redhat.com> 5.0.0-1 * Mon Oct 01 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-2
- New upstream release - Add alpha to the multilib wrapper (#310411)
* Fri Feb 22 2019 Eric Sandeen <sandeen@redhat.com> 4.20.0-1 * Mon Sep 10 2007 Eric Sandeen <sandeen@redhat.com> 2.9.4-1
- New upstream release - Update to xfsprogs 2.9.4
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.19.0-4 * Fri Aug 24 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-3
- Rebuild for readline 8.0 - Add gawk to buildrequires
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.0-3 * Thu Aug 16 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - Update license tag
* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 4.19.0-2 * Thu Jul 26 2007 Eric Sandeen <sandeen@redhat.com> 2.9.3-1
- Rebuild for ICU 63 - Upgrade to xfsprogs 2.9.2, quota, xfs_repair, and filestreams changes
* Tue Nov 13 2018 Eric Sandeen <sandeen@redhat.com> 4.19.0-1 * Thu Jul 6 2007 Eric Sandeen <sandeen@redhat.com> 2.8.21-1
- New upstream release - Upgrade to xfsprogs 2.8.21, lazy sb counters enabled,
xfs_quota fix (#236746)
* Fri Aug 24 2018 Eric Sandeen <sandeen@redhat.com> 4.18.0-1 * Thu May 31 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-2
- New upstream release - Fix ppc64 build... again
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.17.0-3 * Fri May 25 2007 Eric Sandeen <sandeen@redhat.com> 2.8.20-1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - Upgrade to xfsprogs 2.8.20, several xfs_repair fixes
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 4.17.0-2 * Tue Mar 06 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-3
- Rebuild for ICU 62 - Remove libtermcap-devel from BuildRequires
* Thu Jun 28 2018 Eric Sandeen <sandeen@redhat.com> 4.17.0-1 * Wed Feb 14 2007 Miroslav Lichvar <mlichvar@redhat.com> 2.8.18-2
- New upstream release - Disable readline support for now (#223781)
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 4.16.0-2 * Sun Feb 04 2007 Jarod Wilson <jwilson@redhat.com> 2.8.18-1
- Rebuild for ICU 61.1 - Post-facto changelog addition to note bump to 2.8.18
* Thu Apr 26 2018 Eric Sandeen <sandeen@redhat.com> 4.16.0-1 * Wed Sep 27 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-3
- New upstream release - bump build version to 3 for a new brew build
- Clean up specfile
* Mon Feb 26 2018 Eric Sandeen <sandeen@redhat.com> 4.15.1-1 * Tue Sep 26 2006 Russell Cattelan <cattelan@thebarn.com> 2.8.11-2
- New upstream release - add ppc64 build patch
- Update Polish translation
* Mon Feb 26 2018 Eric Sandeen <sandeen@redhat.com> 4.15.0-2 * Thu Sep 21 2006 Russell Cattelan <cattelan@redhat.com> 2.8.11-1
- BuildRequires: gcc - Upgrade to xfsprogs 2.8.11 Need to pick up important repair fixes
* Sat Feb 24 2018 Eric Sandeen <sandeen@redhat.com> 4.15.0-1 * Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 2.8.4-3
- New upstream release - exclude arch ppc64 for now (#199315)
- Adds new xfs_scrub utility and services
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.0-2 * Mon Jul 17 2006 Jesse Keating <jkeating@redhat.com> - 2.8.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - rebuild
* Mon Nov 27 2017 Eric Sandeen <sandeen@redhat.com> 4.14.0-1 * Tue Jul 04 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.4-1
- New upstream release - Upgrade to 2.8.4 (#196599 #c2)
* Wed Sep 27 2017 Eric Sandeen <sandeen@redhat.com> 4.13.1-1 * Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.8.3-1
- New upstream release - Upgrade to 2.8.3 (#196599)
- Trim ancient changelog - Applied Russell Coker's suggested patch to improve the
performance for SELinux machines significantly (#120622)
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.12.0-4 * Sun Jun 25 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - Fixed multilib conflict of xfs/platform_defs.h (#192755)
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 4.12.0-3 * Sun Mar 12 2006 Robert Scheck <redhat@linuxnetz.de> 2.7.11-1
- Rebuild with binutils fix for ppc64le (#1475636) - Upgrade to 2.7.11 and spec file cleanup (#185234)
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.12.0-2 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - bump again for double-long bug on ppc(64)
* Mon Jul 24 2017 Eric Sandeen <sandeen@redhat.com> 4.12.0-1 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.7.3-1.2
- New upstream release - rebuilt for new gcc4.1 snapshot and glibc changes
* Fri May 05 2017 Eric Sandeen <sandeen@redhat.com> 4.11.0-1 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- New upstream release - rebuilt
* Sun Feb 26 2017 Eric Sandeen <sandeen@redhat.com> 4.10.0-1 * Mon Oct 31 2005 Robert Scheck <redhat@linuxnetz.de> 2.7.3-1
- New upstream release - Upgrade to 2.7.3 and enabled termcap support (#154323)
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.0-3 * Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - fixup building with current rpm
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.9.0-2 * Wed Apr 20 2005 Dave Jones <davej@redhat.com>
- Rebuild for readline 7.x - Disable debug. (#151438)
- Rebuild with gcc4
* Thu Jan 05 2017 Eric Sandeen <sandeen@redhat.com> 4.9.0-1 * Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 2.6.13-3
- New upstream release - Rebuilt for new readline.
* Tue Oct 18 2016 Eric Sandeen <sandeen@redhat.com> 4.8.0-1 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- New upstream release - rebuilt
* Tue Sep 06 2016 Eric Sandeen <sandeen@redhat.com> 4.7.0-2 * Wed May 5 2004 Jeremy Katz <katzj@redhat.com> - 2.6.13-1
- Add libattr-devel build dependency to fix xfs_fsr - update to 2.6.13 per request of upstream
- fixes mount by label of xfs on former raid partition (#122043)
* Sun Sep 04 2016 Eric Sandeen <sandeen@redhat.com> 4.7.0-1 * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
- New upstream release - rebuilt
* Tue Mar 15 2016 Eric Sandeen <sandeen@redhat.com> 4.5.0-1 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- New upstream release - rebuilt
* Thu Mar 10 2016 Eric Sandeen <sandeen@redhat.com> 4.3.0-3 * Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 2.6.0-2
- Fix build w/ new kernels which have [sg]etxattr promotion - add defattr (reported by Matthias)
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.0-2 * Tue Dec 23 2003 Elliot Lee <sopwith@redhat.com> 2.6.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - Fix tyops in dependencies
* Mon Nov 30 2015 Eric Sandeen <sandeen@redhat.com> 4.3.0-1 * Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 2.6.0-1
- New upstream release - build for Fedora Core
- switch to more explicit file lists, nuke .la files
* Wed Sep 09 2015 Eric Sandeen <sandeen@redhat.com> 4.2.0-1 * Tue Dec 16 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.6.0
- New upstream release - Update to 2.6.0.
* Thu Jul 30 2015 Eric Sandeen <sandeen@redhat.com> 3.2.4-1 * Sat Sep 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
- New upstream release - Sync with XFS 1.3.0.
- Addresses CVE-2012-2150 for xfs_metadump - Update to 2.5.6.
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.3-2 * Thu Apr 10 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.3.9-0_2.90at
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - Rebuilt for Red Hat 9.
* Wed Jun 10 2015 Eric Sandeen <sandeen@redhat.com> 3.2.3-1
- New upstream release