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