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