Hello community, here is the log from the commit of package dump for openSUSE:Factory checked in at 2015-03-01 14:52:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dump (Old) and /work/SRC/openSUSE:Factory/.dump.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dump" Changes: -------- --- /work/SRC/openSUSE:Factory/dump/dump.changes 2014-12-17 19:15:52.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.dump.new/dump.changes 2015-03-01 14:52:05.000000000 +0100 @@ -1,0 +2,24 @@ +Tue Feb 24 18:37:52 UTC 2015 - mplus...@suse.com + +- Cleanup spec file with spec-cleaner +- Update urls +- Add patch dump-buildfix.patch +- Update to 0.4b44 + * Recognize ext4 partitions in dump -w commands (Sourceforge bug + #3125587, RedHat bug #658890). + * Fix an issue with multi volume backups, which breaks restoring + of files which are splitted on two or more volumes and are + starting on 2nd tape or later (RedHat bug #507948). + * Fix a bug in dump when dumping files with holes. This bug was + introduced in 0.4b42 while adding ext4 support. (Sourceforge + bug #3133762). + * Fix a bug in restore -P where useless index files for + compressed dumps were created (Debian bug #583093). + * Fix SYS_clone invocation on s390 architectures (Sourceforge + bug #3303235). + * Fix static builds. + * Add quick regression script from Bear Giles. + * Fix a bug introduced in 0.4b43 causing restore to crash when + asking for a new volume when doing multi-volume restores. + +------------------------------------------------------------------- Old: ---- dump-0.4b43.tar.bz2 New: ---- dump-0.4b44.tar.gz dump-buildfix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dump.spec ++++++ --- /var/tmp/diff_new_pack.cJn23C/_old 2015-03-01 14:52:06.000000000 +0100 +++ /var/tmp/diff_new_pack.cJn23C/_new 2015-03-01 14:52:06.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package dump # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,25 +17,28 @@ Name: dump +Version: 0.4b44 +Release: 0 +Summary: A Backup Program +License: BSD-3-Clause +Group: Productivity/Archiving/Backup +Url: http://dump.sourceforge.net +Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.gz +Patch0: %{name}-0.4b43-pathnames.patch +Patch1: %{name}-0.4b43-destdir.patch +Patch2: %{name}-0.4b43-configure.patch +Patch3: %{name}-0.4b43-include.patch +Patch4: %{name}-0.4b43-fix-bashisms.patch +Patch5: %{name}-buildfix.patch +BuildRequires: autoconf BuildRequires: automake BuildRequires: e2fsprogs-devel BuildRequires: libselinux-devel +BuildRequires: libtool BuildRequires: readline-devel BuildRequires: zlib-devel -Version: 0.4b43 -Release: 0 -Source: %{name}-%{version}.tar.bz2 -Patch0: %{name}-%{version}-pathnames.patch -Patch1: %{name}-%{version}-destdir.patch -Patch2: %{name}-%{version}-configure.patch -Patch3: %{name}-%{version}-include.patch -Patch4: %{name}-0.4b43-fix-bashisms.patch -Url: http://dump.sourceforge.net/ -BuildRoot: %{_tmppath}/%{name}-%{version}-build -Summary: A Backup Program -License: BSD-3-Clause -Group: Productivity/Archiving/Backup Requires: rmt +BuildRoot: %{_tmppath}/%{name}-%{version}-build %description The dump package contains both dump and restore. Dump examines files @@ -45,21 +48,18 @@ restore a full backup of a file system. %prep -%setup -#mkdir ext2fs -#sed -e "s|ino_t|__ino_t|g" /usr/include/ext2fs/ext2fs.h >ext2fs/ext2fs.h +%setup -q %patch0 %patch1 %patch2 %patch3 %patch4 -p1 +%patch5 -p1 %build -%define prefix /usr -%define sysconfdir /etc -aclocal -autoconf -%configure --sbindir=/sbin \ +autoreconf -fi +%configure \ + --sbindir=/sbin \ --enable-rmt \ --with-ldopts= \ --with-ccopts="-I$PWD -Wall" \ @@ -74,14 +74,14 @@ make %{?_smp_mflags} %install -install -d $RPM_BUILD_ROOT/etc \ - $RPM_BUILD_ROOT/sbin \ - $RPM_BUILD_ROOT/%{_mandir}/man8 -make DESTDIR=$RPM_BUILD_ROOT/ install +install -d %{buildroot}/etc \ + %{buildroot}/sbin \ + %{buildroot}/%{_mandir}/man8 +make DESTDIR=%{buildroot}/ install #do not install rmt #ln -sf ../sbin/rmt $RPM_BUILD_ROOT/etc/rmt -rm $RPM_BUILD_ROOT/sbin/rmt -rm $RPM_BUILD_ROOT/%{_mandir}/man8/rmt.* +rm %{buildroot}/sbin/rmt +rm %{buildroot}/%{_mandir}/man8/rmt.* %files %defattr(-, root, root) ++++++ dump-buildfix.patch ++++++ diff -up dump-0.4b44/configure.in.buildfix dump-0.4b44/configure.in --- dump-0.4b44/configure.in.buildfix 2011-06-14 14:37:49.659652746 +0200 +++ dump-0.4b44/configure.in 2011-06-14 14:40:47.361349814 +0200 @@ -415,6 +415,11 @@ if test "$ext2fs_h" = no -o "x$EXT2FS_LI AC_MSG_ERROR(You need to install the Ext2fs libraries from the E2fsprogs distribution first - hint: make install-libs) fi +PKG_CHECK_MODULES(COM_ERR, [com_err]) +if test -n "$STATIC" ; then + COM_ERR_LIBS=`$PKG_CONFIG --libs --static com_err` +fi + dnl dnl Check for ext2fs_read_inode_full dnl diff -up dump-0.4b44/MCONFIG.in.buildfix dump-0.4b44/MCONFIG.in --- dump-0.4b44/MCONFIG.in.buildfix 2011-06-14 14:41:00.869323616 +0200 +++ dump-0.4b44/MCONFIG.in 2011-06-14 14:41:12.947300187 +0200 @@ -40,7 +40,7 @@ GINC+= @EXT2FS_CFLAGS@ # indicate where the ext2fs library can be found (this is not needed if you # have run `make install-libs' in the e2fsprogs source directory). #GLIBDIR= -L/usr/src/e2fsprogs-0.5c/lib -GLIBS= $(GLIBDIR) -L../compat/lib -lcompat @EXT2FS_LIBS@ +GLIBS= $(GLIBDIR) -L../compat/lib -lcompat @EXT2FS_LIBS@ @COM_ERR_LIBS@ # # Definitions (don't change them unless you know what you are doing) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org