Hello community,

here is the log from the commit of package xfsdump for openSUSE:Factory checked 
in at 2020-02-06 13:18:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xfsdump (Old)
 and      /work/SRC/openSUSE:Factory/.xfsdump.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xfsdump"

Thu Feb  6 13:18:40 2020 rev:32 rq:769740 version:3.1.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/xfsdump/xfsdump.changes  2018-07-27 
10:51:50.821141706 +0200
+++ /work/SRC/openSUSE:Factory/.xfsdump.new.26092/xfsdump.changes       
2020-02-06 13:18:42.532657045 +0100
@@ -1,0 +2,8 @@
+Fri Jan 31 20:38:08 UTC 2020 - Anthony Iliopoulos <ailiopou...@suse.de>
+
+- Update to version 3.1.9:
+  - Fix build due to removed typedefs in xfsprogs
+  - Support fallocate in xfs_restore
+  - Many cosmetic cleanups
+
+-------------------------------------------------------------------

Old:
----
  xfsdump-3.1.8.tar.sign
  xfsdump-3.1.8.tar.xz

New:
----
  xfsdump-3.1.9.tar.sign
  xfsdump-3.1.9.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xfsdump.spec ++++++
--- /var/tmp/diff_new_pack.KCMZxL/_old  2020-02-06 13:18:43.376657459 +0100
+++ /var/tmp/diff_new_pack.KCMZxL/_new  2020-02-06 13:18:43.380657461 +0100
@@ -17,12 +17,12 @@
 
 
 Name:           xfsdump
-Version:        3.1.8
+Version:        3.1.9
 Release:        0
 Summary:        Administrative Utilities for the XFS File System
 License:        GPL-2.0-or-later
 Group:          System/Filesystems
-Url:            http://xfs.org
+Url:            https://xfs.wiki.kernel.org/
 Source0:        
https://www.kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-%{version}.tar.xz
 Source1:        
https://www.kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-%{version}.tar.sign
 Source2:        %{name}.keyring

++++++ xfsdump-3.1.8.tar.xz -> xfsdump-3.1.9.tar.xz ++++++
++++ 62969 lines of diff (skipped)

++++++ xfsdump-rename-READ-WRITE-macros-in-rmtlib.patch ++++++
--- /var/tmp/diff_new_pack.KCMZxL/_old  2020-02-06 13:18:43.640657589 +0100
+++ /var/tmp/diff_new_pack.KCMZxL/_new  2020-02-06 13:18:43.640657589 +0100
@@ -1,4 +1,4 @@
-From 952e08444913f28bca4acb309afa20fc054e8e46 Mon Sep 17 00:00:00 2001
+From 1630b70c1ef892ac89a027c51acad64ea611fe49 Mon Sep 17 00:00:00 2001
 From: jeffm <je...@suse.com>
 Date: Wed, 18 Jul 2018 22:49:15 -0400
 Subject: [PATCH] xfsdump: rename READ/WRITE macros in rmtlib
@@ -48,7 +48,7 @@
        _rmt_msg(RMTDBG, "rmtabort(%d)\n", fildes);
  }
 diff --git a/librmt/rmtcommand.c b/librmt/rmtcommand.c
-index 82c9032..87bb2e2 100644
+index b5726d9..b923726 100644
 --- a/librmt/rmtcommand.c
 +++ b/librmt/rmtcommand.c
 @@ -45,7 +45,7 @@ char *buf;
@@ -61,7 +61,7 @@
                return(0);
        }
 diff --git a/librmt/rmtfstat.c b/librmt/rmtfstat.c
-index 92a49d7..69d1277 100644
+index 7c21219..a3982cf 100644
 --- a/librmt/rmtfstat.c
 +++ b/librmt/rmtfstat.c
 @@ -78,7 +78,7 @@ _rmt_fstat(int fildes, char *arg)
@@ -83,7 +83,7 @@
  
        return(0);
 diff --git a/librmt/rmtioctl.c b/librmt/rmtioctl.c
-index bd6f887..576c09a 100644
+index 84932a5..756f8cc 100644
 --- a/librmt/rmtioctl.c
 +++ b/librmt/rmtioctl.c
 @@ -300,7 +300,7 @@ _rmt_ioctl(int fildes, unsigned int op, void *arg)
@@ -94,9 +94,9 @@
 +                      cnt = read(READER(fildes), p, ssize);
                        if (cnt <= 0) {
                                _rmt_abort(fildes);
-                               setoserror( EIO );
+                               setoserror(EIO);
 diff --git a/librmt/rmtlib.h b/librmt/rmtlib.h
-index 1f877ca..631a48b 100644
+index 6373075..fe3e7a1 100644
 --- a/librmt/rmtlib.h
 +++ b/librmt/rmtlib.h
 @@ -49,8 +49,8 @@
@@ -107,7 +107,7 @@
 - *    WRITE --- Return the number of the write side file descriptor
 + *    READER --- Return the number of the read side file descriptor
 + *    WRITER --- Return the number of the write side file descriptor
-  *    RMTHOST --- Return an id which says host type from uname    
+  *    RMTHOST --- Return an id which says host type from uname
   */
  
 @@ -58,8 +58,8 @@
@@ -122,7 +122,7 @@
  
  #define RSH_PATH        "/usr/bin/rsh"
 diff --git a/librmt/rmtopen.c b/librmt/rmtopen.c
-index 09ba3e4..5af1380 100644
+index 2f46324..d10f6d0 100644
 --- a/librmt/rmtopen.c
 +++ b/librmt/rmtopen.c
 @@ -115,7 +115,7 @@ static int _rmt_open (char *path, int oflag, int mode)
@@ -148,7 +148,7 @@
                {
                        _rmt_abort(fildes);
 diff --git a/librmt/rmtstatus.c b/librmt/rmtstatus.c
-index 21d909d..9016491 100644
+index f141395..83db626 100644
 --- a/librmt/rmtstatus.c
 +++ b/librmt/rmtstatus.c
 @@ -44,7 +44,7 @@ int fildes;
@@ -159,18 +159,18 @@
 +              if (read(READER(fildes), cp, 1) != 1)
                {
                        _rmt_abort(fildes);
-                       setoserror( EIO );
+                       setoserror(EIO);
 @@ -75,7 +75,7 @@ int fildes;
        if (*cp == 'E' || *cp == 'F')
        {
-               setoserror( atoi(cp + 1) );
+               setoserror(atoi(cp + 1));
 -              while (read(READ(fildes), &c, 1) == 1)
 +              while (read(READER(fildes), &c, 1) == 1)
                        if (c == '\n')
                                break;
  
 diff --git a/librmt/rmtwrite.c b/librmt/rmtwrite.c
-index 9e5a1a3..826fce3 100644
+index 9b4cc50..6bae48f 100644
 --- a/librmt/rmtwrite.c
 +++ b/librmt/rmtwrite.c
 @@ -61,7 +61,7 @@ static int _rmt_write(int fildes, char *buf, unsigned int 
nbyte)
@@ -183,5 +183,5 @@
                return(_rmt_status(fildes));
        }
 -- 
-1.7.12.4
+2.16.4
 



Reply via email to