Blame SPECS/dump.spec

0399d2
%define PREVER b46
0399d2
%define DUMP_VERSION 0.4%{PREVER}
0399d2
0399d2
Summary:       Programs for backing up and restoring ext2/ext3/ext4 filesystems
0399d2
Name:          dump
0399d2
Epoch:         1
0399d2
Version:       0.4
0399d2
Release:       0.36.%{PREVER}%{?dist}
0399d2
License:       BSD
0399d2
Group:         Applications/Archiving
0399d2
URL:           http://dump.sourceforge.net/
0399d2
Source:        http://downloads.sourceforge.net/dump/dump-%{DUMP_VERSION}.tar.gz
0399d2
BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
0399d2
BuildRequires: e2fsprogs-devel >= 1.18, readline-devel >= 4.2
0399d2
BuildRequires: zlib-devel, bzip2-devel, automake
0399d2
BuildRequires: device-mapper-devel, libselinux-devel
0399d2
BuildRequires: lzo-minilzo
0399d2
BuildRequires: lzo-devel, libtool
0399d2
# This Requires is now mandatory because we need to ensure the "disk"
0399d2
# group is created before installation (#60461)
0399d2
Requires:      setup
0399d2
Requires:      rmt
0399d2
Obsoletes:     dump-static
0399d2
Provides:      dump-static
0399d2
0399d2
Patch0:        dump-buildfix.patch
0399d2
Patch1:        dump-remove-lzo.patch
0399d2
0399d2
%description
0399d2
The dump package contains both dump and restore. Dump examines files
0399d2
in a filesystem, determines which ones need to be backed up, and
0399d2
copies those files to a specified disk, tape, or other storage medium.
0399d2
The restore command performs the inverse function of dump; it can
0399d2
restore a full backup of a filesystem. Subsequent incremental backups
0399d2
can then be layered on top of the full backup. Single files and
0399d2
directory subtrees may also be restored from full or partial backups.
0399d2
0399d2
Install dump if you need a system for both backing up filesystems and
0399d2
restoring filesystems after backups.
0399d2
0399d2
%prep
0399d2
%setup -q -n dump-%{DUMP_VERSION}
0399d2
0399d2
%patch0 -p1 -b .buildfix
0399d2
%patch1 -p1 -b .remove-lzo
0399d2
0399d2
for i in MAINTAINERS COPYING ChangeLog; do
0399d2
    iconv -f iso-8859-1 -t utf-8  $i -o $i.new
0399d2
    touch -r $i $i.new
0399d2
    mv $i.new $i
0399d2
done
0399d2
0399d2
%build
0399d2
autoreconf -fiv
0399d2
0399d2
export CFLAGS="$RPM_OPT_FLAGS -Wall -Wpointer-arith -Wstrict-prototypes \
0399d2
-Wmissing-prototypes -Wno-char-subscripts -fno-strict-aliasing"
0399d2
0399d2
# XXX --enable-kerberos needs krcmd
0399d2
%configure --disable-static \
0399d2
    --enable-transselinux \
0399d2
    --enable-largefile \
0399d2
    --disable-rmt \
0399d2
    --enable-qfa \
0399d2
    --enable-readline \
0399d2
    --with-binmode=0755 \
0399d2
    --with-manowner=root \
0399d2
    --with-mangrp=root \
0399d2
    --with-manmode=0644
0399d2
0399d2
make %{?_smp_mflags}
0399d2
0399d2
%install
0399d2
rm -rf %{buildroot}
0399d2
mkdir -p %{buildroot}%{_sbindir}
0399d2
mkdir -p %{buildroot}%{_mandir}/man8
0399d2
0399d2
%makeinstall INSTALL="install -p" \
0399d2
    SBINDIR=%{buildroot}%{_sbindir} \
0399d2
    BINDIR=%{buildroot}%{_sbindir} \
0399d2
    MANDIR=%{buildroot}%{_mandir}/man8 \
0399d2
    BINOWNER=$(id -un) \
0399d2
    BINGRP=$(id -gn) \
0399d2
    MANOWNER=$(id -un) \
0399d2
    MANGRP=$(id -gn)
0399d2
0399d2
pushd %{buildroot}
0399d2
    ln -sf dump .%{_sbindir}/rdump
0399d2
    ln -sf restore .%{_sbindir}/rrestore
0399d2
    mkdir -p .%{_sysconfdir}
0399d2
    > .%{_sysconfdir}/dumpdates
0399d2
popd
0399d2
0399d2
%clean
0399d2
rm -rf %{buildroot}
0399d2
0399d2
%files
0399d2
%defattr(-,root,root)
0399d2
%doc AUTHORS COPYING INSTALL KNOWNBUGS MAINTAINERS NEWS README REPORTING-BUGS TODO
0399d2
%doc dump.lsm
0399d2
%attr(0664,root,disk) %config(noreplace) %{_sysconfdir}/dumpdates
0399d2
%{_sbindir}/dump
0399d2
%{_sbindir}/rdump
0399d2
%{_sbindir}/restore
0399d2
%{_sbindir}/rrestore
0399d2
%{_mandir}/man8/dump.8*
0399d2
%{_mandir}/man8/rdump.8*
0399d2
%{_mandir}/man8/restore.8*
0399d2
%{_mandir}/man8/rrestore.8*
0399d2
0399d2
%changelog
0399d2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.4-0.36.b46
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0399d2
0399d2
* Thu Nov 09 2017 Troy Dawson <tdawson@redhat.com> - 1:0.4-0.35.b46
0399d2
- Fix VERSION / version issue causing FTBFS on F27+
0399d2
0399d2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.4-0.34.b46
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0399d2
0399d2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.4-0.33.b46
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0399d2
0399d2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.4-0.32.b46
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0399d2
0399d2
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1:0.4-0.31.b46
0399d2
- Rebuild for readline 7.x
0399d2
0399d2
* Thu Sep 15 2016 Josef Ridky <jridky@redhat.com> - 1:0.4-0.30.b46
0399d2
- New upstream release 0.4b46 (#1376411)
0399d2
0399d2
* Thu Aug 11 2016 Josef Ridky <jridky@redhat.com> - 1:0.4-0.29.b45
0399d2
- Fix issue with ignoring -Q flag (#1366133)
0399d2
- Fix issue with SIGSEGV alert (#1365124)
0399d2
0399d2
* Sat Jul 30 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1:0.4-0.28.b45
0399d2
- Restore higher Release so upgrade path works for pre-release
0399d2
0399d2
* Fri Jul 29 2016 Josef Ridky <jridky@redhat.com> - 1:0.4-0.1.b45
0399d2
- New upstream release 0.4b45 (#1361495)
0399d2
- Fix issue with bad UUID error message (#1048548)
0399d2
- Spec file has been updated
0399d2
0399d2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.4-0.27.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0399d2
0399d2
* Fri Sep 25 2015 Petr Hracek <phracek@redhat.com> - 1:0.4-0.26.b44
0399d2
- Fix hang restoring incrementals which remove directories (#972370)
0399d2
- Thanks to Jason Tibbitts
0399d2
0399d2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.25.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0399d2
0399d2
* Wed Dec 17 2014 Petr Hracek <phracek@redhat.com> - 1:0.4-0.24.b44
0399d2
- Do not ship lzo in dump package (#1132282)
0399d2
0399d2
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.23.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0399d2
0399d2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.22.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0399d2
0399d2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.21.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0399d2
0399d2
* Tue Jun 04 2013 Petr Hracek <phracek@redhat.com> - 1:0.4-0.20.b44
0399d2
- Move rmt into star package (#968995)
0399d2
- Remove dependency to star (#968995)
0399d2
0399d2
* Wed Apr 17 2013 Petr Hracek <phracek@redhat.com> - 1:0.4-0.19.b44
0399d2
- Support aarch64 (#925282)
0399d2
0399d2
* Tue Mar 05 2013 Adam Tkac <atkac redhat com> - 1:0.4-0.18.b44
0399d2
- build with -fno-strict-aliasing
0399d2
0399d2
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.17.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0399d2
0399d2
* Wed Jan 23 2013 Adam Tkac <atkac redhat com> 1:0.4-0.16.b44
0399d2
- remove hardcoded _sbindir path
0399d2
0399d2
* Thu Jan 17 2013 Adam Tkac <atkac redhat com> 1:0.4-0.15.b44
0399d2
- apply the patch for #664616
0399d2
0399d2
* Thu Jan 17 2013 Adam Tkac <atkac redhat com> 1:0.4-0.14.b44
0399d2
- minor manpage fixes (#664616)
0399d2
0399d2
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.13.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0399d2
0399d2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.12.b44
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0399d2
0399d2
* Tue Jun 14 2011 Adam Tkac <atkac redhat com> 0.4-0.11.b44
0399d2
- update to 0.4b44
0399d2
- patches merged
0399d2
  - dump-rh507948.patch
0399d2
  - dump-0.4b42-ext4.patch
0399d2
0399d2
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.10.b43
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0399d2
0399d2
* Thu Dec 2 2010 Jan Görig <jgorig redhat com> 0.4-0.9.b42
0399d2
- fix dump -w does not work on ext4 fielsystems (#658890)
0399d2
0399d2
* Mon Jul 12 2010 Adam Tkac <atkac redhat com> 0.4-0.8.b43
0399d2
- move COPYRIGHT to the rmt package
0399d2
0399d2
* Fri Jun 11 2010 Adam Tkac <atkac redhat com> 0.4-0.7.b43
0399d2
- update to 0.4b43
0399d2
- patches merged
0399d2
  - dump-rh568457.patch
0399d2
  - dump-rh576525.patch
0399d2
0399d2
* Mon Apr 26 2010 Adam Tkac <atkac redhat com> 0.4-0.6.b42
0399d2
- fix invalid EA metainformation in dump, add workaround to restore (#576525)
0399d2
0399d2
* Thu Mar 4 2010 Jan Görig <jgorig redhat com> 0.4-0.5.b42
0399d2
- don't set extended attributes when in read only mode (#568457)
0399d2
0399d2
* Wed Feb 10 2010 Adam Tkac <atkac redhat com> 0.4-0.4.b42
0399d2
- improve patch for multivol backup issues
0399d2
0399d2
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.4-0.3.b42
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0399d2
0399d2
* Thu Jul 23 2009 Adam Tkac <atkac redhat com> 0.4-0.2.b42
0399d2
- restore multivol backups correctly
0399d2
0399d2
* Mon Jun 22 2009 Adam Tkac <atkac redhat com> 0.4-0.1.b42
0399d2
- update to 0.4b42
0399d2
- patches merged
0399d2
  - dump-selinux.patch
0399d2
  - dump-dmfix.patch
0399d2
  - dump-immutable.patch
0399d2
  - dump-0.4b41-libtinfo.patch
0399d2
  - dump-rh356121.patch
0399d2
  - dump-rh493635.patch
0399d2
  - dump-rh490627.patch
0399d2
  - dump-rh489853.patch
0399d2
- fix NVR to conform to Fedora policies
0399d2
0399d2
* Sat Apr 04 2009 Adam Tkac <atkac redhat com> 0.4b41-13
0399d2
- display dump level correctly in all cases (#493635)
0399d2
- -A option is not valid when -P is specified, correct manual page (#490627)
0399d2
- fix typos in manual pages (#489853)
0399d2
0399d2
* Mon Mar 09 2009 Adam Tkac <atkac redhat com> 0.4b41-12
0399d2
- correct manual page (dump level is 0 by default, #356121)
0399d2
0399d2
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4b41-11
0399d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0399d2
0399d2
* Thu Feb 05 2009 lonely wolf <wolfy@fedoraproject.org> 0.4b41-10
0399d2
- spec cleanup
0399d2
0399d2
* Fri Oct 03 2008 Adam Tkac <atkac redhat com> 0.4b41-9
0399d2
- dump-0.4b37-2TB.patch is no longer needed
0399d2
- rebuild (#464989)
0399d2
0399d2
* Mon Jun 23 2008 Adam Tkac <atkac redhat com> 0.4b41-8
0399d2
- removed compat static -> non-static symlinks (#452425)
0399d2
0399d2
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> 0.4b41-7.1
0399d2
- Autorebuild for GCC 4.3
0399d2
0399d2
* Fri Jan 11 2008 Adam Tkac <atkac redhat com> 0.4b41-6.1
0399d2
- use libtinfo instead libncurses
0399d2
- use autoreconf (=> add BuildRequires: automake - for aclocal)
0399d2
0399d2
* Wed Aug 22 2007 Adam Tkac <atkac redhat com> 0.4b41-6
0399d2
- rebuild (BuildID feature)
0399d2
- use device-mapper-devel instead device-mapper in BuildRequires
0399d2
0399d2
* Tue Jan 30 2007 Adam Tkac <atkac redhat com> 0.4b41-5
0399d2
- fixed dumping of 2TB systems
0399d2
0399d2
* Mon Jan 29 2007 Adam Tkac <atkac redhat com> 0.4b41-4
0399d2
- added Andrew Kroeger's patch. Immutable files are restored correctly
0399d2
0399d2
* Thu Jan 18 2007 Adam Tkac <atkac redhat com> 0.4b41-3
0399d2
- dump is now linked dynamically
0399d2
- removed termcap dependency
0399d2
0399d2
* Mon Aug  7 2006 Jindrich Novy <jnovy@redhat.com> 0.4b41-2
0399d2
- fix miscompares detected by restore -C caused by SELinux (#189845)
0399d2
- link properly against device-mapper and selinux libraries
0399d2
- add autoconf BuildRequires
0399d2
- use %%{?dist}
0399d2
0399d2
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.4b41-1.2.1
0399d2
- rebuild
0399d2
0399d2
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.4b41-1.2
0399d2
- bump again for double-long bug on ppc(64)
0399d2
0399d2
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.4b41-1.1
0399d2
- rebuilt for new gcc4.1 snapshot and glibc changes
0399d2
0399d2
* Wed Jan 11 2006 Jindrich Novy <jnovy@redhat.com> 0.4b41-1
0399d2
- update to 0.4b41
0399d2
- drop .fixacl patch, now applied in the new upstream release
0399d2
- link against device-mapper
0399d2
0399d2
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
0399d2
- rebuilt
0399d2
0399d2
* Mon Nov 14 2005 Jindrich Novy <jnovy@redhat.com> 0.4b40-5
0399d2
- spec file cleanup - thanks to Matthias Saou (#172961)
0399d2
- convert spec to UTF-8
0399d2
0399d2
* Wed Jul 06 2005 Karsten Hopp <karsten@redhat.de> 0.4b40-4
0399d2
- BuildRequires ncurses-devel
0399d2
0399d2
* Thu Jun  9 2005 Jindrich Novy <jnovy@redhat.com> 0.4b40-3
0399d2
- fix restoration of ext3 ACL's (#159617) - Stelian Pop
0399d2
0399d2
* Wed May 11 2005 Jindrich Novy <jnovy@redhat.com> 0.4b40-2
0399d2
- Don't strip binaries to get valid debuginfo
0399d2
0399d2
* Tue May  3 2005 Jindrich Novy <jnvoy@redhat.com> 0.4b40-1
0399d2
- Updated to dump 0.4b40
0399d2
- Dropped .ea and .asize patches (applied upstream)
0399d2
0399d2
* Wed Mar  2 2005 Jindrich Novy <jnovy@redhat.com> 0.4b39-3
0399d2
- Added patch to fix negative size problem with -s/-d 
0399d2
  options (#147710) - from Stelian Pop
0399d2
0399d2
* Mon Feb 28 2005 Jindrich Novy <jnovy@redhat.com> 0.4b39-2
0399d2
- Updated the EA patch with support for in-inode EAs, big
0399d2
  inodes and fixes 'error in EA block' displayed for
0399d2
  every single inode (#149299) - patch from Stelian Pop
0399d2
0399d2
* Mon Jan 24 2005 Jindrich Novy 
0399d2
- Updated to dump 0.4b39
0399d2
- Updated the experimental patch.
0399d2
0399d2
* Wed Jan 12 2005 Jindrich Novy <jnovy@redhat.com> 0.4b38-1
0399d2
- Updated to dump 0.4b38 (#144840)
0399d2
- Updated the experimental dump patch.
0399d2
- Dropped the cvs patch, applied in the upstream release.
0399d2
0399d2
* Mon Dec 20 2004 Dan Walsh <dwalsh@redhat.com> 0.4b37-3
0399d2
- Updated experimental dump patch from upstream to allow dump/restore of xattr.
0399d2
0399d2
* Thu Dec 9 2004 Dan Walsh <dwalsh@redhat.com> 0.4b37-2
0399d2
- Added experimental dump patch from upstream to allow dump/restore of xattr.
0399d2
0399d2
* Thu Jul 29 2004 Warren Togami <wtogami@redhat.com>
0399d2
- 0.4b37
0399d2
0399d2
* Fri Jul 02 2004 Florian La Roche <Florian.LaRoche@redhat.de>
0399d2
- 0.4b36
0399d2
0399d2
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
0399d2
- rebuilt
0399d2
0399d2
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
0399d2
- rebuilt
0399d2
0399d2
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
0399d2
- rebuilt
0399d2
0399d2
* Sat May 17 2003 Mike A. Harris <mharris@redhat.com> 0.4b33-1
0399d2
- Updated to dump 0.4b33, fixes (#89835)
0399d2
0399d2
* Fri Jan 24 2003 Mike A. Harris <mharris@redhat.com> 0.4b28-7
0399d2
- Added --enable-qfa to configure macro for RFE: (#77608)
0399d2
0399d2
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.4b28-6
0399d2
- rebuilt
0399d2
0399d2
* Mon Oct  7 2002 Mike A. Harris <mharris@redhat.com> 0.4b28-5
0399d2
- All-arch rebuild
0399d2
0399d2
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
0399d2
- automated rebuild
0399d2
0399d2
* Sun May 26 2002 Tim Powers <timp@redhat.com>
0399d2
- automated rebuild
0399d2
0399d2
* Tue May 21 2002 Mike A. Harris <mharris@redhat.com> 0.4b28-2
0399d2
- Updated to dump 0.4b28
0399d2
- Removed atomic_read/write patch, not needed anymore
0399d2
0399d2
* Fri Mar  1 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-3
0399d2
- BuildRequires readline-devel >= 4.2 for the rl_completion_matches function
0399d2
- Added dump-0.4b27-dump-atomic-read-write.patch to avoid namespace conflict
0399d2
  with included kernel headers.  atomic_read is a function on s390 and as
0399d2
  such, cannot be #undef'd
0399d2
0399d2
* Thu Feb 28 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-2
0399d2
- Added prereq on "setup" to ensure disk group is created prior to this
0399d2
  package being installed
0399d2
- Somehow the dump package changelog got hosed, and part of the spec file
0399d2
  regressed.  I believe it is fixed now.
0399d2
0399d2
* Tue Feb 26 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-1
0399d2
- Updated to dump 0.4b27-1
0399d2
0399d2
* Fri Feb 22 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-5
0399d2
- Bumped release up a couple notches to rebuild in rawhide
0399d2
 
0399d2
* Thu Feb 21 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-1.72.0
0399d2
- Rebuilt 0.4b25 for erratum release.  Fixes various bugs that have been
0399d2
  reported in bugzilla which are logged below.  Also fixes a bug caused by
0399d2
  linking statically to a faulty system library.
0399d2
- Added Provides dump-static line
0399d2
 
0399d2
* Mon Feb 11 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-3
0399d2
- Added missing zlib buildprereq
0399d2
- Rebuild in new environment
0399d2
0399d2
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
0399d2
- automated rebuild
0399d2
0399d2
* Wed Nov 21 2001 Mike A. Harris <mharris@redhat.com> 0.4b25-1
0399d2
- Updated to version 0.4b25-1
0399d2
- Added homepage URL for RFE (#54601)
0399d2
- Also fixed in this release are (#21272, #52663, #56616)
0399d2
- Dropped time.h patch as it is unneeded now
0399d2
0399d2
* Tue Nov  6 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-7
0399d2
- Updated BuildPreReq to e2fsprogs-devel >= 1.18, readline-devel >= 4.1 to
0399d2
  explicitly state the minimum required deps and fix (#51900)
0399d2
0399d2
* Sat Sep  8 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4b22-6
0399d2
- Kill the static subpackage - the standard binaries are now static
0399d2
  This removes /usb/sbin/*. The static versions are now in /sbin 
0399d2
  (#53433)
0399d2
- Obsolete dump-static
0399d2
0399d2
* Tue Aug 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4b22-5
0399d2
- Move non-static binaries to /usr/sbin (#49520)
0399d2
0399d2
* Fri Jun 29 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-4
0399d2
- Added BuildPrereq: readline-devel (#44734 - which was reopened and changed)
0399d2
0399d2
* Sat Jun 16 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-3
0399d2
- Added BuildPrereq: libtermcap-devel (#44734)
0399d2
0399d2
* Tue Jun 12 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-2
0399d2
- Removed release tag from buildroot dirname - messy.
0399d2
- Broke all lines over multiple lines for readability in specfile.
0399d2
- Added --enable-largefile configure flags
0399d2
0399d2
* Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de> 0.4b22-1
0399d2
- 0.4b22
0399d2
0399d2
* Mon May  7 2001 Mike A. Harris <mharris@redhat.com> 0.4b21-5
0399d2
- Added BuildPrereq: e2fsprogs-devel (#27428)
0399d2
0399d2
* Mon Apr  9 2001 Bill Nottingham <notting@redhat.com>
0399d2
- fix ia64
0399d2
0399d2
* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
0399d2
- fix build with current glibc
0399d2
0399d2
* Mon Jan 29 2001 Nalin Dahyabhai <nalin@redhat.com>
0399d2
- change copyright: UCB to License: BSD
0399d2
0399d2
* Fri Jan 26 2001 Nalin Dahyabhai <nalin@redhat.com>
0399d2
- update to 0.4b21.
0399d2
0399d2
* Sun Nov 26 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- update to 0.4b20.
0399d2
0399d2
* Fri Nov 10 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b20 released, first packaging.
0399d2
0399d2
* Tue Oct 31 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- remove setuid bits for Red Hat 5.x errata.
0399d2
0399d2
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
0399d2
- rebuild to cope with glibc locale binary incompatibility, again
0399d2
0399d2
* Wed Aug 30 2000 Preston Brown <pbrown@redhat.com>
0399d2
- fix for dumping files between 2 and 4 gigs (#16466)
0399d2
0399d2
* Mon Aug 21 2000 Matt Wilson <msw@redhat.com>
0399d2
- don't use -O2 on alpha because of compiler ICE
0399d2
0399d2
* Sun Aug 20 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- update to 0.4b19.
0399d2
0399d2
* Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- summaries from specspo.
0399d2
0399d2
* Wed Aug 16 2000 Erik Troan <ewt@redhat.com>
0399d2
- support LABEL= in fstab
0399d2
0399d2
* Sat Jul 22 2000 Bill Nottingham <notting@redhat.com>
0399d2
- if dump/restore aren't set(u|g)id, they don't need group tty (#12670)
0399d2
0399d2
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
0399d2
- rebuild to cope with glibc locale binary incompatibility
0399d2
0399d2
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
0399d2
- automatic rebuild
0399d2
0399d2
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
0399d2
- whoops I had dump commented out of the file list.  fixed.
0399d2
- dropped suid bits on the static binaries.
0399d2
- fix char buffer size issue (#11880)
0399d2
0399d2
* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
0399d2
- dropped SUID bits
0399d2
0399d2
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- update to 0.4b17.
0399d2
- FHS packaging.
0399d2
0399d2
* Thu Jun  1 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b17 released, first packaging.
0399d2
0399d2
* Sat Mar 11 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b16 released, first packaging.
0399d2
0399d2
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- use posix signal handling to preserve dump functionality with libc5.
0399d2
0399d2
* Thu Mar  2 2000 Bill Nottingham <notting@redhat.com>
0399d2
- update to 0.4b15
0399d2
0399d2
* Thu Feb 10 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- dump -0ufB /dev/ftape 1638000 /mnt2 fails to use /mnt2 as tape device (#8036)
0399d2
0399d2
* Thu Feb 10 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b14 released, first packaging.
0399d2
0399d2
* Wed Feb  9 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- compress man pages.
0399d2
0399d2
* Thu Jan 27 2000 Jeff Johnson <jbj@redhat.com>
0399d2
- update to 0.4b13.
0399d2
0399d2
* Fri Jan 21 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b13 released, first packaging.
0399d2
0399d2
* Mon Jan 10 2000 Jeff Johnson 
0399d2
- update to 0.4b12.
0399d2
0399d2
* Sat Jan 8 2000 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b12 released, first packaging.
0399d2
0399d2
* Sun Dec 5 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b11 released, first packaging.
0399d2
0399d2
* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- intergrate Stelian's fixes (Thanks!).
0399d2
0399d2
* Sun Nov 21 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b10 released, first packaging.
0399d2
0399d2
* Thu Nov 11 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- make static versions also for rescue purposes.
0399d2
0399d2
* Fri Nov 5 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b9 released, first packaging.
0399d2
0399d2
* Wed Nov 3 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b8 released, first packaging.
0399d2
0399d2
* Fri Oct 8 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b7 released, first packaging.
0399d2
0399d2
* Thu Sep 30 1999 Stelian Pop <pop@cybercable.fr>
0399d2
- dump 0.4b6 released, first packaging.
0399d2
0399d2
* Fri Sep 10 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- recompile with e2fsprogs = 1.15 (#4962).
0399d2
0399d2
* Sat Jul 31 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- workaround egcs bug (#4281) that caused dump problems (#2989).
0399d2
- use sigjmp_buf, not jmp_buf (#3260).
0399d2
- invoke /etc/rmt (instead of rmt) like other unices. (#3272).
0399d2
- use glibc21 err/glob rather than the internal compatibility routines.
0399d2
- wire $(OPT) throughout Makefile's.
0399d2
- fix many printf problems, mostly lint clean.
0399d2
- merge SuSE, Debian and many OpenBSD fixes.
0399d2
0399d2
* Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- remove setuid/setgid bits from /sbin/rmt (dump/restore are OK).
0399d2
0399d2
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
0399d2
- auto rebuild in the new build environment (release 6)
0399d2
0399d2
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- strip binaries.
0399d2
0399d2
* Thu Mar 18 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- Fix dangling symlinks (#1551).
0399d2
0399d2
* Wed Mar 17 1999 Michael Maher <mike@redhat.com>
0399d2
- Top O' the morning, build root's fixed for man pages.  
0399d2
0399d2
* Fri Feb 19 1999 Preston Brown <pbrown@redhat.com>
0399d2
- upgraded to dump 0.4b4, massaged patches.
0399d2
0399d2
* Tue Feb 02 1999 Ian A Cameron <I.A.Cameron@open.ac.uk>
0399d2
- added patch from Derrick J Brashear for traverse.c to stop bread errors
0399d2
0399d2
* Wed Jan 20 1999 Jeff Johnson <jbj@redhat.com>
0399d2
- restore original 6755 root.tty to dump/restore, defattr did tty->root (#684).
0399d2
- mark /etc/dumpdates as noreplace.
0399d2
0399d2
* Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
0399d2
- add build root.
0399d2
0399d2
* Tue May 05 1998 Prospector System <bugs@redhat.com>
0399d2
- translations modified for de, fr, tr
0399d2
0399d2
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
0399d2
- added a patch for resolving linux/types.h and sys/types.h conflicts
0399d2
0399d2
* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
0399d2
- added prototype of llseek() so dump would work on large partitions
0399d2
0399d2
* Thu Oct 30 1997 Donnie Barnes <djb@redhat.com>
0399d2
- made all symlinks relative instead of absolute
0399d2
0399d2
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
0399d2
- built against glibc
0399d2
0399d2
* Thu Mar 06 1997 Michael K. Johnson <johnsonm@redhat.com>
0399d2
- Moved rmt to its own package.
0399d2
0399d2
* Tue Feb 11 1997 Michael Fulbright <msf@redhat.com>
0399d2
- Added endian cleanups for SPARC
0399d2
0399d2
* Fri Feb 07 1997 Michael K. Johnson <johnsonm@redhat.com> 
0399d2
- Made /etc/dumpdates writeable by group disk.