commit fcoe-utils for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2020-09-04 10:53:00

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.3399 (New)


Package is "fcoe-utils"

Fri Sep  4 10:53:00 2020 rev:20 rq:830918 version:1.0.33

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2020-07-17 
20:47:35.708715378 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.3399/fcoe-utils.changes  
2020-09-04 10:53:11.966433302 +0200
@@ -1,0 +2,7 @@
+Thu Aug 20 09:49:22 UTC 2020 - Guillaume GARDET 
+
+- Add patch to fix build on architectures where char is 
+  unsigned (%arm, aarch64):
+  * fcoe-utils-fix-arm.patch
+
+---

New:

  fcoe-utils-fix-arm.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.agBH64/_old  2020-09-04 10:53:14.562434693 +0200
+++ /var/tmp/diff_new_pack.agBH64/_new  2020-09-04 10:53:14.566434696 +0200
@@ -38,6 +38,8 @@
 Group:  System/Daemons
 Source: %{name}-%{version}.tar.xz
 Patch1: Handle-NIC-names-longer-than-7-characters.patch
+# PATCH-FIX-UPSTREAM - https://github.com/openSUSE/fcoe-utils/pull/14
+Patch2: fcoe-utils-fix-arm.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{?systemd_requires}
 
@@ -49,6 +51,7 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
 
 %build
 autoreconf -vi

++ fcoe-utils-fix-arm.patch ++
--- fcoe-utils-1.0.33.orig/fcnsq.c  2020-08-20 09:43:36.227637286 +
+++ fcoe-utils-1.0.33/fcnsq.c   2020-08-20 09:43:50.307246472 +
@@ -381,7 +381,7 @@ int main(int argc, char *argv[])
u64 wwnn = 0;
int rc = 0;
enum commands cmd = 0;
-   char c;
+   signed char c;
uintmax_t wwnn_tmp = 0;
 
while(1) {



commit fcoe-utils for openSUSE:Factory

2020-07-17 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2020-07-17 20:46:49

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.3592 (New)


Package is "fcoe-utils"

Fri Jul 17 20:46:49 2020 rev:19 rq:821148 version:1.0.33

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2020-06-11 
14:47:22.061848441 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.3592/fcoe-utils.changes  
2020-07-17 20:47:35.708715378 +0200
@@ -1,0 +2,7 @@
+Wed Jul 15 17:24:06 UTC 2020 - Lee Duncan 
+
+- Handle NIC names longer than 7 characters for the output of
+  "fcoeadm -s" output (bsc#1010047), adding patch:
+  * Handle-NIC-names-longer-than-7-characters.patch
+
+---

New:

  Handle-NIC-names-longer-than-7-characters.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.gtu5o2/_old  2020-07-17 20:47:38.776718648 +0200
+++ /var/tmp/diff_new_pack.gtu5o2/_new  2020-07-17 20:47:38.784718656 +0200
@@ -37,6 +37,7 @@
 License:GPL-2.0-only
 Group:  System/Daemons
 Source: %{name}-%{version}.tar.xz
+Patch1: Handle-NIC-names-longer-than-7-characters.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{?systemd_requires}
 
@@ -47,6 +48,7 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 autoreconf -vi

++ Handle-NIC-names-longer-than-7-characters.patch ++
>From e2392944cc779b2305bdbb7e6b9d9bb57d5398ee Mon Sep 17 00:00:00 2001
From: Lee Duncan 
Date: Tue, 9 Jun 2020 11:22:50 -0700
Subject: [PATCH] Handle NIC names longer than 7 characters.

The output of "fcoeadm -s" assumed a short NIC name,
so handle up to 15 characters, the current standard.
---
 fcoeadm_display.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fcoeadm_display.c b/fcoeadm_display.c
index f7e6c43806ad..7d29422e91fa 100644
--- a/fcoeadm_display.c
+++ b/fcoeadm_display.c
@@ -455,7 +455,7 @@ static void scan_device_map(char *rport, enum disp_style 
style)
 static void show_port_stats_header(const char *ifname, int interval)
 {
printf("\n");
-   printf("%-7s interval: %-2dErr  Inv 
 "
+   printf("%-15s interval: %-2dErr  Inv  "
   "IvTx Link Cntl Input Input OutputOutput\n",
   ifname, interval);
printf("Seconds TxFrames  TxBytes  RxFrames  RxBytes"
@@ -893,7 +893,7 @@ static void
 print_interface_fcoe_lesb_stats_header(const char *ifname, int interval)
 {
printf("\n");
-   printf("%-7s interval: %-2d\n", ifname, interval);
+   printf("%-15s interval: %-2d\n", ifname, interval);
printf("LinkFail VLinkFail MissFKA SymbErr ErrBlkCnt FCSErrCnt\n");
printf(" - --- --- - -\n");
 }
-- 
2.26.2




commit fcoe-utils for openSUSE:Factory

2020-06-11 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2020-06-11 14:46:53

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.3606 (New)


Package is "fcoe-utils"

Thu Jun 11 14:46:53 2020 rev:18 rq:813010 version:1.0.33

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2020-04-09 
23:14:03.866196277 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.3606/fcoe-utils.changes  
2020-06-11 14:47:22.061848441 +0200
@@ -1,0 +2,28 @@
+Tue Jun  9 15:57:49 UTC 2020 - Lee Duncan 
+
+- Updated with latest upstream v1.0.33 from v1.0.32:
+  * Added "-Wextra" and enabled "-Werror" for compiling
+  * Ignore auto-generated files
+  * Update systemd service files (several updates)
+  * A bunch of gcc-10-related fixes, such as marking unused
+arguments, fixing strncpy()s, string truncation/overflow
+  * better error handling/retry for link issues (like EBUSY)
+  * replace use of "ifconfig" with "ip" in debug scripts
+  * fix long-standing issue with netlink buffer resizing
+  * move bash completions to proper system directory
+  This replaces fcoe-utils-v1.0.32.tar.xz with
+  fcoe-utils-v1.0.33.tar.xz, and it does away with the
+  following patches, since they are all fixed upstream:
+  * 0003-systemctl-cannot-start-fcoemon.socket.patch
+  * 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
+  * 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
+  * 0006-fipvlan-fixup-return-value-on-error.patch
+  * 0008-Use-correct-socket-for-fcoemon.socket.patch
+  * 0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
+  * fcoe-utils-1.0.29-make.patch
+  * fcoe-utils-stop-using-ifconfig.patch
+  And the following patch was removed because we can
+  successfully compile with "-Werror" now:
+  * 0009-disable-Werror-building.patch
+
+---

Old:

  0003-systemctl-cannot-start-fcoemon.socket.patch
  0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
  0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
  0006-fipvlan-fixup-return-value-on-error.patch
  0008-Use-correct-socket-for-fcoemon.socket.patch
  0009-disable-Werror-building.patch
  0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
  fcoe-utils-1.0.29-make.patch
  fcoe-utils-1.0.32.tar.xz
  fcoe-utils-stop-using-ifconfig.patch

New:

  fcoe-utils-1.0.33.tar.xz



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.xIj7y2/_old  2020-06-11 14:47:23.489852601 +0200
+++ /var/tmp/diff_new_pack.xIj7y2/_new  2020-06-11 14:47:23.493852612 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   fcoe-utils
-URL:http://www.open-fcoe.org
+URL:https://github.com/openSUSE/fcoe-utils
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libpciaccess-devel
@@ -25,31 +25,20 @@
 BuildRequires:  open-lldp-devel
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(libsystemd)
+PreReq: %fillup_prereq
 Requires:   device-mapper
 Requires:   iproute
 Requires:   open-lldp
+Requires:   pkgconfig(systemd)
 %systemd_ordering
-Version:1.0.32
+Version:1.0.33
 Release:0
 Summary:FCoE userspace management tools
-# git://open-fcoe.org/fcoe/fcoe-utils.git
 License:GPL-2.0-only
 Group:  System/Daemons
-Source0:%{name}-%{version}.tar.xz
-
-# Patches to be upstreamed
-Patch3: 0003-systemctl-cannot-start-fcoemon.socket.patch
-Patch4: 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
-Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
-Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
-Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
-Patch9: 0009-disable-Werror-building.patch
-Patch12:0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
-Patch15:%{name}-stop-using-ifconfig.patch
-
-# Patches from Fedora
-Patch101:   fcoe-utils-1.0.29-make.patch
+Source: %{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%{?systemd_requires}
 
 %description
 Userspace tools to manage FibreChannel over Ethernet (FCoE)
@@ -58,15 +47,6 @@
 
 %prep
 %setup -q
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
-%patch6 -p1
-%patch8 -p1
-%patch9 -p1
-%patch12 -p1
-%patch15 -p1
-%patch101 -p1
 
 %build
 autoreconf -vi
@@ -90,21 +70,17 @@
 done
 
 %pre
-%service_add_pre fcoe.service
-exit 0
+%service_add_pre fcoe.service fcoemon.socket
 
 %post
-%service_add_post fcoe.service
+%service_add_post fcoe.service fcoemon.socket
 %fillup_only -n fcoe
-exit 0
 
 %preun

commit fcoe-utils for openSUSE:Factory

2020-04-09 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2020-04-09 23:14:02

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.3248 (New)


Package is "fcoe-utils"

Thu Apr  9 23:14:02 2020 rev:17 rq:791635 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2019-07-01 
10:43:14.565366580 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.3248/fcoe-utils.changes  
2020-04-09 23:14:03.866196277 +0200
@@ -1,0 +2,7 @@
+Fri Apr  3 01:50:30 UTC 2020 - Lee Duncan 
+
+- Change use of "ifconfig" to "ip", since ifconfig is no
+  longer around (bsc#1073886), adding:
+  * fcoe-utils-stop-using-ifconfig.patch
+
+---

New:

  fcoe-utils-stop-using-ifconfig.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.xEejo6/_old  2020-04-09 23:14:05.114196998 +0200
+++ /var/tmp/diff_new_pack.xEejo6/_new  2020-04-09 23:14:05.118197000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcoe-utils
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   fcoe-utils
-Url:http://www.open-fcoe.org
+URL:http://www.open-fcoe.org
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libpciaccess-devel
@@ -45,6 +45,7 @@
 Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
 Patch9: 0009-disable-Werror-building.patch
 Patch12:0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
+Patch15:%{name}-stop-using-ifconfig.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -64,6 +65,7 @@
 %patch8 -p1
 %patch9 -p1
 %patch12 -p1
+%patch15 -p1
 %patch101 -p1
 
 %build

++ fcoe-utils-stop-using-ifconfig.patch ++
diff -aurp fcoe-utils-1.0.32.orig/debug/dcbcheck.sh 
fcoe-utils-1.0.32/debug/dcbcheck.sh
--- fcoe-utils-1.0.32.orig/debug/dcbcheck.sh2017-01-17 04:19:20.0 
-0800
+++ fcoe-utils-1.0.32/debug/dcbcheck.sh 2020-04-02 18:44:06.511563546 -0700
@@ -27,7 +27,7 @@ if [ "${IFNAME}" == "" ] ; then
 fi
 
 # Ensure that the interface name provided is valid
-if ifconfig ${IFNAME} 2>&1 | grep -q "Device not found" ; then
+if ip link show dev ${IFNAME} 2>&1 | grep -q "does not exist" ; then
 echo "Please provide a valid interface name." >&2
 exit 1
 fi
Only in fcoe-utils-1.0.32.orig/debug: .dcbcheck.sh.swp
diff -aurp fcoe-utils-1.0.32.orig/debug/fcoedump.sh 
fcoe-utils-1.0.32/debug/fcoedump.sh
--- fcoe-utils-1.0.32.orig/debug/fcoedump.sh2017-01-17 04:19:20.0 
-0800
+++ fcoe-utils-1.0.32/debug/fcoedump.sh 2020-04-02 18:43:46.195599808 -0700
@@ -78,8 +78,10 @@ adapter_info()
ethtool -i $DEVICE
echo -e "#ethtool offloads:"
ethtool -k $DEVICE
-   echo -e "#ifconfig:"
-   ifconfig $DEVICE
+   echo -e "#ip link:"
+   ip link show dev $DEVICE
+   echo -e "#ip addr:"
+   ip addr show dev $DEVICE
fi
 
echo -e "\n###Adapter INFO $PHYSDEV"
@@ -93,8 +95,10 @@ adapter_info()
ethtool -k $PHYSDEV
echo -e "#ethtool stats:"
ethtool -S $PHYSDEV
-   echo -e "#ifconfig:"
-   ifconfig $PHYSDEV
+   echo -e "#ip link:"
+   ip link show dev $PHYSDEV
+   echo -e "#ip addr:"
+   ip addr show dev $PHYSDEV
 }
 
 dcbtool_info()



commit fcoe-utils for openSUSE:Factory

2019-07-01 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2019-07-01 10:43:13

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.4615 (New)


Package is "fcoe-utils"

Mon Jul  1 10:43:13 2019 rev:16 rq:712230 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2019-02-04 
21:17:36.611732056 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.4615/fcoe-utils.changes  
2019-07-01 10:43:14.565366580 +0200
@@ -1,0 +2,6 @@
+Wed Jun 19 11:23:07 UTC 2019 - Dominique Leuenberger 
+
+- BuildRequire pkgconfig(libsystemd) instead of systemd-devel:
+  allow OBS to shortcut by using systemd-devel-mini.
+
+---



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.JXbpti/_old  2019-07-01 10:43:15.089367436 +0200
+++ /var/tmp/diff_new_pack.JXbpti/_new  2019-07-01 10:43:15.089367436 +0200
@@ -24,11 +24,11 @@
 BuildRequires:  libtool
 BuildRequires:  open-lldp-devel
 BuildRequires:  pkg-config
-BuildRequires:  systemd-devel
+BuildRequires:  pkgconfig(libsystemd)
 Requires:   device-mapper
 Requires:   iproute
 Requires:   open-lldp
-%systemd_requires
+%systemd_ordering
 Version:1.0.32
 Release:0
 Summary:FCoE userspace management tools




commit fcoe-utils for openSUSE:Factory

2019-02-04 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2019-02-04 21:17:33

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new.28833 (New)


Package is "fcoe-utils"

Mon Feb  4 21:17:33 2019 rev:15 rq:665979 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2017-04-24 
09:46:29.063470407 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new.28833/fcoe-utils.changes 
2019-02-04 21:17:36.611732056 +0100
@@ -1,0 +2,5 @@
+Mon Jan 14 15:43:29 CET 2019 - ku...@suse.de
+
+- Use %license instead of %doc [bsc#1082318]
+
+---



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.dgODvk/_old  2019-02-04 21:17:37.759731624 +0100
+++ /var/tmp/diff_new_pack.dgODvk/_new  2019-02-04 21:17:37.759731624 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcoe-utils
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -32,9 +32,9 @@
 Version:1.0.32
 Release:0
 Summary:FCoE userspace management tools
-License:GPL-2.0
-Group:  System/Daemons
 # git://open-fcoe.org/fcoe/fcoe-utils.git
+License:GPL-2.0-only
+Group:  System/Daemons
 Source0:%{name}-%{version}.tar.xz
 
 # Patches to be upstreamed
@@ -106,7 +106,8 @@
 
 %files
 %defattr(-,root,root,-)
-%doc README COPYING QUICKSTART
+%license COPYING
+%doc README QUICKSTART
 %{_sbindir}/*
 %{_mandir}/man8/*
 %{_unitdir}/fcoe.service




commit fcoe-utils for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2017-04-24 09:46:27

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is "fcoe-utils"

Mon Apr 24 09:46:27 2017 rev:14 rq:487258 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2017-03-11 
15:17:48.295109371 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2017-04-24 09:46:29.063470407 +0200
@@ -1,0 +2,6 @@
+Tue Apr 11 09:10:32 UTC 2017 - jthumsh...@suse.com
+
+- Disable Werror when building to work around a new GCC 7 warning. 
(bsc#1030244)
+  + 0009-disable-Werror-building.patch
+
+---

New:

  0009-disable-Werror-building.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.8Pwnm7/_old  2017-04-24 09:46:29.971341999 +0200
+++ /var/tmp/diff_new_pack.8Pwnm7/_new  2017-04-24 09:46:29.975341434 +0200
@@ -43,6 +43,7 @@
 Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
 Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
 Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
+Patch9: 0009-disable-Werror-building.patch
 Patch12:0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
 
 # Patches from Fedora
@@ -61,6 +62,7 @@
 %patch5 -p1
 %patch6 -p1
 %patch8 -p1
+%patch9 -p1
 %patch12 -p1
 %patch101 -p1
 

++ 0009-disable-Werror-building.patch ++
From: Johannes Thumshirn 
Date: Tue Apr 11 11:08:13 CEST 2017
Subject: Disable Werror building

Disbale the -Werror compiler flag due to a new warning in GCC 7. Although the
warning is legitim it is a false positive in this place.

Signed-off-by: Johannes Thumshirn 
---
 Makefile.am |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/Makefile.am
+++ b/Makefile.am
@@ -5,7 +5,7 @@ sbin_PROGRAMS = fcoeadm fcoemon fcping f
 AM_CPPFLAGS = -I${srcdir}/include -I${builddir}/include
 ## pass the sysconfdir into the C proprocessor
 AM_CPPFLAGS += -DSYSCONFDIR="\"${sysconfdir}\"" -D_FORTIFY_SOURCE=2
-AM_CFLAGS = -Wall -Wformat=2 -Werror -Wmissing-prototypes -Wstrict-prototypes
+AM_CFLAGS = -Wall -Wformat=2 -Wmissing-prototypes -Wstrict-prototypes
 
 ## rules for building fcoeadm
 fcoeadm_SOURCES = fcoeadm.c fcoeadm_display.c
++ fcoe-utils-1.0.29-make.patch ++
--- /var/tmp/diff_new_pack.8Pwnm7/_old  2017-04-24 09:46:30.063328989 +0200
+++ /var/tmp/diff_new_pack.8Pwnm7/_new  2017-04-24 09:46:30.063328989 +0200
@@ -1,5 +1,7 @@
-diff --git a/Makefile.am b/Makefile.am
-index 5cbc15f..57bdbdb 100644
+---
+ Makefile.am |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -2,7 +2,7 @@
@@ -10,4 +12,4 @@
 +AM_CPPFLAGS = -I${srcdir}/include -I${builddir}/include -I/lib/modules/`rpm 
-q --list kernel | grep "^/lib/modules/.*/build$$" | cut -f4 -d"/" | sort -r | 
head -1`/build/include
  ## pass the sysconfdir into the C proprocessor
  AM_CPPFLAGS += -DSYSCONFDIR="\"${sysconfdir}\"" -D_FORTIFY_SOURCE=2
- AM_CFLAGS = -Wall -Wformat=2 -Werror -Wmissing-prototypes -Wstrict-prototypes
+ AM_CFLAGS = -Wall -Wformat=2 -Wmissing-prototypes -Wstrict-prototypes




commit fcoe-utils for openSUSE:Factory

2017-03-11 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2017-03-11 15:17:47

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is "fcoe-utils"

Sat Mar 11 15:17:47 2017 rev:13 rq:476761 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2017-02-14 
00:36:43.037205826 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2017-03-11 15:17:48.295109371 +0100
@@ -10,0 +11,8 @@
+   0014-fcoeadm-target-segfault-with-other-fc-storage-present.patch
+
+---
+Mon Oct 24 07:49:10 UTC 2016 - jthumsh...@suse.com
+
+- Fix fcoeadm-t crash when other FC storage is present (bsc#1006027)
+  * 0014-fcoeadm-target-segfault-with-other-fc-storage-present.patch
+



Other differences:
--



commit fcoe-utils for openSUSE:Factory

2017-02-13 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2017-02-14 00:36:41

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is "fcoe-utils"

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2016-07-21 
07:52:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2017-02-14 00:36:43.037205826 +0100
@@ -1,0 +2,10 @@
+Thu Feb  9 08:54:54 UTC 2017 - jthumsh...@suse.com
+
+- Update to latest upstream release (FATE#320515) 
+ Remove the following upstreamed patches:
+   0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
+   0009-fcoemon.c-Add-a-check-to-verify-if-dcbd-is-to-be-ini.patch
+   0010-fcoemon-fixup-log_nlmsg_error.patch
+   0011-fcoemon-Add-debugging-message-for-recv.patch
+   0013-Fallback-to-default-MAC-address-for-FIP.patch
+---

Old:

  0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
  0009-fcoemon.c-Add-a-check-to-verify-if-dcbd-is-to-be-ini.patch
  0010-fcoemon-fixup-log_nlmsg_error.patch
  0011-fcoemon-Add-debugging-message-for-recv.patch
  0013-Fallback-to-default-MAC-address-for-FIP.patch
  fcoe-utils-1.0.31.tar.xz

New:

  _service
  fcoe-utils-1.0.32.tar.xz



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.IMvtBg/_old  2017-02-14 00:36:44.181044336 +0100
+++ /var/tmp/diff_new_pack.IMvtBg/_new  2017-02-14 00:36:44.185043771 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcoe-utils
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -29,7 +29,7 @@
 Requires:   iproute
 Requires:   open-lldp
 %systemd_requires
-Version:1.0.31
+Version:1.0.32
 Release:0
 Summary:FCoE userspace management tools
 License:GPL-2.0
@@ -42,13 +42,8 @@
 Patch4: 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
 Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
 Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
-Patch7: 0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
 Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
-Patch9: 0009-fcoemon.c-Add-a-check-to-verify-if-dcbd-is-to-be-ini.patch
-Patch10:0010-fcoemon-fixup-log_nlmsg_error.patch
-Patch11:0011-fcoemon-Add-debugging-message-for-recv.patch
 Patch12:0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
-Patch13:0013-Fallback-to-default-MAC-address-for-FIP.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -65,13 +60,8 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
-%patch7 -p1
 %patch8 -p1
-%patch9 -p1
-%patch10 -p1
-%patch11 -p1
 %patch12 -p1
-%patch13 -p1
 %patch101 -p1
 
 %build

++ _service ++


https://github.com/morbidrsa/fcoe-utils.git
git
fcoe-utils
1.0.32
v1.0.32
.git


*.tar
xz


fcoe-utils


++ fcoe-utils-1.0.31.tar.xz -> fcoe-utils-1.0.32.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcoe-utils-1.0.31/.gitignore 
new/fcoe-utils-1.0.32/.gitignore
--- old/fcoe-utils-1.0.31/.gitignore2016-02-05 20:53:34.0 +0100
+++ new/fcoe-utils-1.0.32/.gitignore1970-01-01 01:00:00.0 +0100
@@ -1,32 +0,0 @@
-# standard autotools stuff
-.deps/
-Makefile
-Makefile.in
-aclocal.m4
-autom4te.cache/
-compile
-config.log
-config.status
-configure
-depcomp
-install-sh
-missing
-
-# other autoconf generated files
-fcoe-utils.spec
-fcoeplumb
-fcoe_utils_version.h
-
-# compile generated files
-*.o
-fcoeadm
-fcoemon
-fipvlan
-fcping
-fcnsq
-fcrls
-etc/initd/fcoe
-
-# build.sh generated files
-fcoe-utils-*.tar.gz
-fcoe-utils-*.rpm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcoe-utils-1.0.31/configure.ac 
new/fcoe-utils-1.0.32/configure.ac
--- old/fcoe-utils-1.0.31/configure.ac  2016-02-05 20:53:34.0 +0100
+++ new/fcoe-utils-1.0.32/configure.ac  2017-01-17 13:19:20.0 +0100
@@ -1,4 +1,4 @@
-AC_INIT([fcoe-utils], [1.0.31], [fcoe-de...@open-fcoe.org])
+AC_INIT([fcoe-utils], [1.0.32], [fcoe-de...@open-fcoe.org])
 
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
 

commit fcoe-utils for openSUSE:Factory

2016-07-20 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2016-07-21 07:52:00

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is "fcoe-utils"

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2016-02-23 
16:53:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2016-07-21 07:52:02.0 +0200
@@ -2 +2 @@
-Thu Feb 18 11:34:47 UTC 2016 - jthumsh...@suse.com
+Thu Jul 14 10:08:53 CEST 2016 - h...@suse.de
@@ -4 +4,21 @@
-- Update to version 1.0.31
+- fcoemon cannot start FIP responder (bsc#97)
+  * 0010-fcoemon-fixup-log_nlmsg_error.patch
+  * 0011-fcoemon-Add-debugging-message-for-recv.patch
+  * 0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
+  * 0013-Fallback-to-default-MAC-address-for-FIP.patch
+- Rediff patch
+  * 0006-fipvlan-fixup-return-value-on-error.patch
+- Rename patch
+  * old: 
0009-fcoemon-c-add-a-check-to-verify-if-dcbd-is-to-be-initialized-else-do-not-try-to-connect-to-dcbd-lldpad.patch
+  * new: 0009-fcoemon.c-Add-a-check-to-verify-if-dcbd-is-to-be-ini.patch
+- Fixup spec file to correctly refer to service_del_postun
+
+---
+Tue Jun 21 07:59:59 UTC 2016 - jthumsh...@suse.com
+
+- Don't activate DCB on adapters which do DCB in Hardware (bsc#985816)
+  + 
0009-fcoemon-c-add-a-check-to-verify-if-dcbd-is-to-be-initialized-else-do-not-try-to-connect-to-dcbd-lldpad.patch
+---
+Mon Feb  8 11:15:43 UTC 2016 - jthumsh...@suse.com
+
+- Update to version 1.0.31 (FATE#320515)
@@ -8 +28,40 @@
-+ 0006-fipvlan-fixup-return-value-on-error.patch
++ 0009-fcoe-utils-Add-sysfs_hba-to-to-fcoemon_utils.patch
++ 0010-fcoeadm-Use-internal-sysfs-based-hba-lib-for-informa.patch
++ 0011-fcoeadm-Use-internal-sysfs-lib-to-display-target-and.patch
++ 0012-fcoeadm-Use-internal-sysfs-lib-to-display-port-stati.patch
++ 0013-fcoeadm-Get-rid-of-some-includes.patch
++ 0014-fcoemon-Use-internal-sysfs_hba-library.patch
++ 0015-libutil-remove-definition-of-sa_hex_format.patch
++ 0016-fcping-Convert-fcping-to-internal-sysfs-based-implem.patch
++ 0017-configure.ac-Remove-libHBAAPIv2-and-libhbalinux2.patch
++ 0018-support-multiple-connections.patch
++ 0019-fcoeadm_display-Fix-display-of-NPIV-ports.patch
+
+---
+Mon Nov  2 12:11:41 UTC 2015 - jthumsh...@suse.com
+
+- Fix display of NPIV ports (bsc#951859)
+  + 0019-fcoeadm_display-Fix-display-of-NPIV-ports.patch
+
+---
+Fri Oct 16 07:49:37 UTC 2015 - jthumsh...@suse.com
+
+- Fix erroneous memory free corruption (bsc#950696)
+  + 0019-fcping-fix-erroneous-memory-free.patch
+
+---
+Thu Oct  1 09:14:15 UTC 2015 - jthumsh...@suse.com
+
+- Fix enumeration of FCoE connections (bsc#947587)
+  + 0018-support-multiple-connections.patch
+
+---
+Thu Aug 13 09:06:02 UTC 2015 - jthumsh...@suse.com
+
+- Fix segmentation fault (bsc#941577)
+- Fix display of driver name and version (bsc#941566)
+
+---
+Wed Aug 12 10:32:41 UTC 2015 - jthumsh...@suse.com
+
+- Replace libHBAAPI and libhbalinux by new internal implementation 
(FATE#319021)
@@ -48,14 +107,7 @@
-+ Rename 0031-fcoemon-Fix-IEEE-state-machine.patch to
-  0002-fcoemon-fix-IEEE-state-machine.patch
-+ Rename 0028-systemctl-cannot-start-fcoemon.socket.patch to
-  0003-systemctl-cannot-start-fcoemon.socket.patch
-+ Rename 0029-fcoemon-Correctly-handle-options-in-the-service-file.patch to
-  0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
-+ Rename 0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch to
-  0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
-+ Rename 0035-fipvlan-fixup-return-value-on-error.patch to
-  0006-fipvlan-fixup-return-value-on-error.patch
-+ Rename 0036-fipvlan-clean-up-state-machine-for-pfd_add.patch to
-  0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
-+ Rename 0037-Use-correct-socket-for-fcoemon.socket.patch to
-  0008-Use-correct-socket-for-fcoemon.socket.patch
++ 0002-fcoemon-fix-IEEE-state-machine.patch
++ 0003-systemctl-cannot-start-fcoemon.socket.patch
++ 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
++ 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
++ 0006-fipvlan-fixup-return-value-on-error.patch
++ 

commit fcoe-utils for openSUSE:Factory

2016-02-23 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2016-02-23 16:53:06

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is "fcoe-utils"

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2015-08-07 
00:19:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2016-02-23 16:53:07.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 18 11:34:47 UTC 2016 - jthumsh...@suse.com
+
+- Update to version 1.0.31
+  * Removed merged patches:
++ 0001-fcoemon-Rework-daemonizing-and-error-handling.patch
++ 0002-fcoemon-fix-IEEE-state-machine.patch
++ 0006-fipvlan-fixup-return-value-on-error.patch
+
+---

Old:

  0001-fcoemon-Rework-daemonizing-and-error-handling.patch
  0002-fcoemon-fix-IEEE-state-machine.patch
  0006-fipvlan-fixup-return-value-on-error.patch
  fcoe-utils-1.0.30.tar.xz

New:

  fcoe-utils-1.0.31.tar.xz



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.2iDkzV/_old  2016-02-23 16:53:08.0 +0100
+++ /var/tmp/diff_new_pack.2iDkzV/_new  2016-02-23 16:53:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcoe-utils
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -20,32 +20,27 @@
 Url:http://www.open-fcoe.org
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  libHBAAPI2-devel >= 2.2.10
-BuildRequires:  libhbalinux2-devel >= 1.0.17
+BuildRequires:  libpciaccess-devel
 BuildRequires:  libtool
 BuildRequires:  open-lldp-devel
+BuildRequires:  pkg-config
 BuildRequires:  systemd-devel
 Requires:   device-mapper
 Requires:   iproute
-Requires:   libhbalinux2
 Requires:   open-lldp
 %systemd_requires
-Version:1.0.30
+Version:1.0.31
 Release:0
 Summary:FCoE userspace management tools
 License:GPL-2.0
 Group:  System/Daemons
 # git://open-fcoe.org/fcoe/fcoe-utils.git
 Source0:%{name}-%{version}.tar.xz
-# Patches from git repository
-Patch1: 0001-fcoemon-Rework-daemonizing-and-error-handling.patch
-Patch2: 0002-fcoemon-fix-IEEE-state-machine.patch
 
 # Patches to be upstreamed
 Patch3: 0003-systemctl-cannot-start-fcoemon.socket.patch
 Patch4: 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
 Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
-Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
 Patch7: 0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
 Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
 
@@ -60,12 +55,9 @@
 
 %prep
 %setup -q
-%patch1 -p1
-%patch2 -p1
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
 %patch7 -p1
 %patch8 -p1
 %patch101 -p1

++ fcoe-utils-1.0.30.tar.xz -> fcoe-utils-1.0.31.tar.xz ++
 3336 lines of diff (skipped)




commit fcoe-utils for openSUSE:Factory

2015-08-06 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2015-08-07 00:19:02

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2014-08-06 
11:42:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2015-08-07 00:19:03.0 +0200
@@ -1,0 +2,53 @@
+Mon Aug  3 12:35:16 CEST 2015 - h...@suse.de
+
+- Update to version 1.0.30 (FATE#318849)
+  * Remove merged patches:
++ 0001-man-Fix-small-typo-regarding-fcf-option.patch
++ 0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch
++ 0003-fipvlan-fails-on-powerpc.patch
++ 0004-fipvlan-Only-shutdown-interfaces-if-no-vlans-are-cre.patch
++ 0005-fipvlan-start-VLAN-interface-from-netlink-handler.patch
++ 0006-fipvlan-Extract-create_missing_vlan-function-from-lo.patch
++ 0007-fipvlan-create-VLANs-from-netlink-handler.patch
++ 0008-fipvlan-Start-FCoE-from-netlink-handler.patch
++ 0009-fipvlan-Update-wait-loop-to-wait-for-VLANs.patch
++ 0010-fipvlan-Re-send-VLAN-discovery.patch
++ 0011-fipvlan-update-manpage.patch
++ 0012-fipvlan-Leave-link-up-if-requested.patch
++ 0013-fipvlan-Update-manpage-to-reflect-correct-timeout.patch
++ 0014-fipvlan-Do-not-shut-down-FCoE-connections-on-physica.patch
++ 0015-fipvlan-break-out-of-receive-loop-on-error.patch
++ 0016-fipvlan-handle-errors-from-fip-socket-creation.patch
++ 0017-fipvlan-filter-interfaces-from-rtnl_getlink.patch
++ 0018-Add-missing-DESTDIR-when-installing-bash-completion.patch
++ 0019-Fix-build-with-Wl-as-needed.patch
++ 0020-Fix-integer-formatting.patch
++ 0021-fcnsq-Fixup-help-text.patch
++ 0022-fcnsq-Fixup-64bit-integer-handling.patch
++ 0023-fcoemon-add-systemd-service-file.patch
++ 0024-fcoemon-systemd-socket-activation.patch
++ 0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch
++ 0026-FIPVLAN-Really-break-out-of-the-recv_loop-upon-fip_r.patch
++ 0027-man-Fix-typo-in-fcoemon-documentation.patch
++ 0032-fipvlan-Fix-crash-in-create_and_start_vlan.patch
++ 0033-fipvlan-suppress-warning-interface-already-exists.patch
++ 0034-fipvlan-do-not-crash-on-empty-MAC-address-in-lookup_.patch
+  * Add new patches from upstream:
++ 0001-fcoemon-Rework-daemonizing-and-error-handling.patch
+  * Rename patches:
++ Rename 0031-fcoemon-Fix-IEEE-state-machine.patch to
+  0002-fcoemon-fix-IEEE-state-machine.patch
++ Rename 0028-systemctl-cannot-start-fcoemon.socket.patch to
+  0003-systemctl-cannot-start-fcoemon.socket.patch
++ Rename 0029-fcoemon-Correctly-handle-options-in-the-service-file.patch to
+  0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
++ Rename 0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch to
+  0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
++ Rename 0035-fipvlan-fixup-return-value-on-error.patch to
+  0006-fipvlan-fixup-return-value-on-error.patch
++ Rename 0036-fipvlan-clean-up-state-machine-for-pfd_add.patch to
+  0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
++ Rename 0037-Use-correct-socket-for-fcoemon.socket.patch to
+  0008-Use-correct-socket-for-fcoemon.socket.patch
+
+---

Old:

  0001-man-Fix-small-typo-regarding-fcf-option.patch
  0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch
  0003-fipvlan-fails-on-powerpc.patch
  0004-fipvlan-Only-shutdown-interfaces-if-no-vlans-are-cre.patch
  0005-fipvlan-start-VLAN-interface-from-netlink-handler.patch
  0006-fipvlan-Extract-create_missing_vlan-function-from-lo.patch
  0007-fipvlan-create-VLANs-from-netlink-handler.patch
  0008-fipvlan-Start-FCoE-from-netlink-handler.patch
  0009-fipvlan-Update-wait-loop-to-wait-for-VLANs.patch
  0010-fipvlan-Re-send-VLAN-discovery.patch
  0011-fipvlan-update-manpage.patch
  0012-fipvlan-Leave-link-up-if-requested.patch
  0013-fipvlan-Update-manpage-to-reflect-correct-timeout.patch
  0014-fipvlan-Do-not-shut-down-FCoE-connections-on-physica.patch
  0015-fipvlan-break-out-of-receive-loop-on-error.patch
  0016-fipvlan-handle-errors-from-fip-socket-creation.patch
  0017-fipvlan-filter-interfaces-from-rtnl_getlink.patch
  0018-Add-missing-DESTDIR-when-installing-bash-completion.patch
  0019-Fix-build-with-Wl-as-needed.patch
  0020-Fix-integer-formatting.patch
  0021-fcnsq-Fixup-help-text.patch
  0022-fcnsq-Fixup-64bit-integer-handling.patch
  0023-fcoemon-add-systemd-service-file.patch
  0024-fcoemon-systemd-socket-activation.patch
  0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch
  

commit fcoe-utils for openSUSE:Factory

2014-08-06 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2014-08-06 11:42:09

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2014-05-23 
08:05:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2014-08-06 11:42:11.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul 28 11:28:12 CEST 2014 - h...@suse.de
+
+- Use correct socket name in fcoemon.socket (bnc#881205)
+  * Add 0037-Use-correct-socket-for-fcoemon.socket.patch
+
+---

New:

  0037-Use-correct-socket-for-fcoemon.socket.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.Zj5NFh/_old  2014-08-06 11:42:12.0 +0200
+++ /var/tmp/diff_new_pack.Zj5NFh/_new  2014-08-06 11:42:12.0 +0200
@@ -76,6 +76,7 @@
 Patch34:0034-fipvlan-do-not-crash-on-empty-MAC-address-in-lookup_.patch
 Patch35:0035-fipvlan-fixup-return-value-on-error.patch
 Patch36:0036-fipvlan-clean-up-state-machine-for-pfd_add.patch
+Patch37:0037-Use-correct-socket-for-fcoemon.socket.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -124,6 +125,7 @@
 %patch34 -p1
 %patch35 -p1
 %patch36 -p1
+%patch37 -p1
 %patch101 -p1
 
 %build

++ 0037-Use-correct-socket-for-fcoemon.socket.patch ++
From 348489108793c83ec6ebbdba8788219ca59d Mon Sep 17 00:00:00 2001
From: Hannes Reinecke h...@suse.de
Date: Mon, 28 Jul 2014 11:24:19 +0200
Subject: Use correct socket for fcoemon.socket

fcoeadm/fcoemon is using a socket 'fcm_clif', so we need to
refer to that one in fcoemon.socket.

References: bnc#881205

Signed-off-by: Hannes Reinecke h...@suse.de
---
 etc/systemd/fcoemon.socket | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/systemd/fcoemon.socket b/etc/systemd/fcoemon.socket
index fdf7141..6768515 100644
--- a/etc/systemd/fcoemon.socket
+++ b/etc/systemd/fcoemon.socket
@@ -3,7 +3,7 @@ Description=Open-FCoE daemon control socket
 
 [Socket]
 Service=fcoe.service
-ListenDatagram=@/com/intel/fcoemon
+ListenDatagram=@fcm_clif
 PassCredentials=true
 
 [Install]
-- 
1.8.4.5

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcoe-utils for openSUSE:Factory

2014-05-23 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2014-05-23 08:05:14

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2014-04-23 
17:28:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2014-05-23 08:05:18.0 +0200
@@ -1,0 +2,20 @@
+Thu May 15 09:15:54 CEST 2014 - h...@suse.de
+
+- Start fcoemon in foreground from service file (bnc#873269)
+  * Add 0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
+- Fixup IEEE state machine
+  * Add 0031-fcoemon-Fix-IEEE-state-machine.patch
+- Fix fipvlan crash during booting (bnc#877275):
+  * Add 0032-fipvlan-Fix-crash-in-create_and_start_vlan.patch
+  * Add 0033-fipvlan-suppress-warning-interface-already-exists.patch
+  * Add 0034-fipvlan-do-not-crash-on-empty-MAC-address-in-lookup_.patch
+- Fixup warning messages during booting:
+  * Add 0035-fipvlan-fixup-return-value-on-error.patch
+  * Add 0036-fipvlan-clean-up-state-machine-for-pfd_add.patch
+
+---
+Fri Apr 11 19:19:33 CEST 2014 - lchiqui...@suse.de
+
+- Remove obsolete file fcoe.config from sources
+
+---

Old:

  fcoe.config

New:

  0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
  0031-fcoemon-Fix-IEEE-state-machine.patch
  0032-fipvlan-Fix-crash-in-create_and_start_vlan.patch
  0033-fipvlan-suppress-warning-interface-already-exists.patch
  0034-fipvlan-do-not-crash-on-empty-MAC-address-in-lookup_.patch
  0035-fipvlan-fixup-return-value-on-error.patch
  0036-fipvlan-clean-up-state-machine-for-pfd_add.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.1723Z1/_old  2014-05-23 08:05:19.0 +0200
+++ /var/tmp/diff_new_pack.1723Z1/_new  2014-05-23 08:05:19.0 +0200
@@ -69,6 +69,13 @@
 # Patches to be upstreamed
 Patch28:0028-systemctl-cannot-start-fcoemon.socket.patch
 Patch29:0029-fcoemon-Correctly-handle-options-in-the-service-file.patch
+Patch30:0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
+Patch31:0031-fcoemon-Fix-IEEE-state-machine.patch
+Patch32:0032-fipvlan-Fix-crash-in-create_and_start_vlan.patch
+Patch33:0033-fipvlan-suppress-warning-interface-already-exists.patch
+Patch34:0034-fipvlan-do-not-crash-on-empty-MAC-address-in-lookup_.patch
+Patch35:0035-fipvlan-fixup-return-value-on-error.patch
+Patch36:0036-fipvlan-clean-up-state-machine-for-pfd_add.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -110,6 +117,13 @@
 %patch27 -p1
 %patch28 -p1
 %patch29 -p1
+%patch30 -p1
+%patch31 -p1
+%patch32 -p1
+%patch33 -p1
+%patch34 -p1
+%patch35 -p1
+%patch36 -p1
 %patch101 -p1
 
 %build

++ 0030-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch ++
From 1b7dc959d70679a3536ccbeb6b3a8d0905606537 Mon Sep 17 00:00:00 2001
From: Hannes Reinecke h...@suse.de
Date: Wed, 16 Apr 2014 13:30:47 +0200
Subject: fcoe.service: Add '--foreground' to prevent fcoemon to be killed

fcoemon is running as a daemon per default, so when using
Type=simple in the service file systemd will kill the fcoemon
daemon immediately as it just sees the return code from the
first fork() call.

References: bnc#873269

Signed-off-by: Hannes Reinecke h...@suse.de
---
 etc/systemd/fcoe.service | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/systemd/fcoe.service b/etc/systemd/fcoe.service
index 2e10bcd..b1d9567 100644
--- a/etc/systemd/fcoe.service
+++ b/etc/systemd/fcoe.service
@@ -6,7 +6,7 @@ After=syslog.target network.target
 Type=simple
 EnvironmentFile=/etc/fcoe/config
 ExecStartPre=/sbin/modprobe -qa $SUPPORTED_DRIVERS
-ExecStart=/usr/sbin/fcoemon --debug=$DEBUG --syslog=$SYSLOG
+ExecStart=/usr/sbin/fcoemon --foreground --debug=$DEBUG --syslog=$SYSLOG
 
 [Install]
 WantedBy=multi-user.target
-- 
1.7.12.4

++ 0031-fcoemon-Fix-IEEE-state-machine.patch ++
From 95f4a92799627e791dc68eb49922f169409b5cd8 Mon Sep 17 00:00:00 2001
From: Neerav Parikh neerav.par...@intel.com
Date: Tue, 18 Mar 2014 08:34:18 +
Subject: fcoemon: Fix IEEE state machine

fcoemon on adapters that support only IEEE DCBX mode
doesn't enter into a state where it can proceed
doing FIP VLAN discovery or creating an FCoE instance.
This is because the current IEEE state machine is tied
with the CEE based state machine. It relies on some
CEE specific DCB netlink calls viz. getstate() to
proceed; which may 

commit fcoe-utils for openSUSE:Factory

2014-04-23 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2014-04-23 17:28:12

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2014-04-05 
14:42:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2014-04-23 17:28:15.0 +0200
@@ -1,0 +2,17 @@
+Fri Apr 11 15:08:04 CEST 2014 - h...@suse.de
+
+- Replace patches with upstream version
+  Remove: 0025-systemctl-cannot-start-fcoemon.socket.patch
+  Add: 0028-systemctl-cannot-start-fcoemon.socket.patch
+- Pull in patches from upstream:
+  * Really break out of recv_loop in fipvlan (bnc#870300)
+Add: 0026-FIPVLAN-Really-break-out-of-the-recv_loop-upon-fip_r.patch
+  * Update documentation
+Add: 0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch
+Add: 0027-man-Fix-typo-in-fcoemon-documentation.patch
+- Add dependency on libhbalinux2 (bnc#873066)
+- Correctly handle options when invoking fcoemon (bnc#872732)
+  Add: 0029-fcoemon-Correctly-handle-options-in-the-service-file.patch
+- Include bnx2fc to SUPPORTED_DRIVERS (bnc#872741)
+
+---

Old:

  0025-systemctl-cannot-start-fcoemon.socket.patch

New:

  0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch
  0026-FIPVLAN-Really-break-out-of-the-recv_loop-upon-fip_r.patch
  0027-man-Fix-typo-in-fcoemon-documentation.patch
  0028-systemctl-cannot-start-fcoemon.socket.patch
  0029-fcoemon-Correctly-handle-options-in-the-service-file.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.Ajxgw5/_old  2014-04-23 17:28:16.0 +0200
+++ /var/tmp/diff_new_pack.Ajxgw5/_new  2014-04-23 17:28:16.0 +0200
@@ -24,10 +24,11 @@
 BuildRequires:  libhbalinux2-devel
 BuildRequires:  libtool
 BuildRequires:  open-lldp-devel
+BuildRequires:  systemd-devel
 Requires:   device-mapper
 Requires:   iproute
+Requires:   libhbalinux2
 Requires:   open-lldp
-BuildRequires:  systemd-devel
 %systemd_requires
 Version:1.0.29
 Release:0
@@ -36,7 +37,6 @@
 Group:  System/Daemons
 # git://open-fcoe.org/fcoe/fcoe-utils.git
 Source0:%{name}-%{version}.tar.xz
-Source2:fcoe.config
 # Patches from git repository
 Patch1: 0001-man-Fix-small-typo-regarding-fcf-option.patch
 Patch2: 0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch
@@ -55,8 +55,6 @@
 Patch15:0015-fipvlan-break-out-of-receive-loop-on-error.patch
 Patch16:0016-fipvlan-handle-errors-from-fip-socket-creation.patch
 Patch17:0017-fipvlan-filter-interfaces-from-rtnl_getlink.patch
-
-# Patches to be upstreamed
 Patch18:0018-Add-missing-DESTDIR-when-installing-bash-completion.patch
 Patch19:0019-Fix-build-with-Wl-as-needed.patch
 Patch20:0020-Fix-integer-formatting.patch
@@ -64,7 +62,13 @@
 Patch22:0022-fcnsq-Fixup-64bit-integer-handling.patch
 Patch23:0023-fcoemon-add-systemd-service-file.patch
 Patch24:0024-fcoemon-systemd-socket-activation.patch
-Patch25:0025-systemctl-cannot-start-fcoemon.socket.patch
+Patch25:0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch
+Patch26:0026-FIPVLAN-Really-break-out-of-the-recv_loop-upon-fip_r.patch
+Patch27:0027-man-Fix-typo-in-fcoemon-documentation.patch
+
+# Patches to be upstreamed
+Patch28:0028-systemctl-cannot-start-fcoemon.socket.patch
+Patch29:0029-fcoemon-Correctly-handle-options-in-the-service-file.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -102,6 +106,10 @@
 %patch23 -p1
 %patch24 -p1
 %patch25 -p1
+%patch26 -p1
+%patch27 -p1
+%patch28 -p1
+%patch29 -p1
 %patch101 -p1
 
 %build
@@ -117,9 +125,6 @@
 # unitfile
 ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcfcoe
 
-# config
-install -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/fcoe/config
-
 # contrib files
 mkdir -p %{buildroot}%{_libexecdir}/fcoe
 for file in \

++ 0018-Add-missing-DESTDIR-when-installing-bash-completion.patch ++
--- /var/tmp/diff_new_pack.Ajxgw5/_old  2014-04-23 17:28:16.0 +0200
+++ /var/tmp/diff_new_pack.Ajxgw5/_new  2014-04-23 17:28:16.0 +0200
@@ -1,9 +1,10 @@
-From 51cfb504c434a8a0a1df9fa7c3cd9000c4e53d92 Mon Sep 17 00:00:00 2001
+From 0e5d536b20ed481d5a057e9bfee772b4c53bdb0f Mon Sep 17 00:00:00 2001
 From: Hannes Reinecke h...@suse.de
-Date: Fri, 6 Dec 2013 11:08:23 +0100
-Subject: Add missing 'DESTDIR' when installing bash completion
+Date: Fri, 6 Dec 2013 19:51:51 +

commit fcoe-utils for openSUSE:Factory

2014-04-05 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2014-04-05 14:42:41

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2014-03-21 
12:14:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2014-04-05 14:42:42.0 +0200
@@ -1,0 +2,8 @@
+Fri Mar 21 14:49:35 CET 2014 - h...@suse.de
+
+- Fixup fcoemon.socket definitions (bnc#869392)
+  * Add patch 0025-systemctl-cannot-start-fcoemon.socket.patch
+- Remove mkinitrd support
+- Remove duplicate configuration file (bnc#869109)
+
+---

Old:

  mkinitrd-boot.sh
  mkinitrd-setup.sh

New:

  0025-systemctl-cannot-start-fcoemon.socket.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.XvZsqL/_old  2014-04-05 14:42:43.0 +0200
+++ /var/tmp/diff_new_pack.XvZsqL/_new  2014-04-05 14:42:43.0 +0200
@@ -37,8 +37,6 @@
 # git://open-fcoe.org/fcoe/fcoe-utils.git
 Source0:%{name}-%{version}.tar.xz
 Source2:fcoe.config
-Source20:   mkinitrd-boot.sh
-Source22:   mkinitrd-setup.sh
 # Patches from git repository
 Patch1: 0001-man-Fix-small-typo-regarding-fcf-option.patch
 Patch2: 0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch
@@ -66,6 +64,7 @@
 Patch22:0022-fcnsq-Fixup-64bit-integer-handling.patch
 Patch23:0023-fcoemon-add-systemd-service-file.patch
 Patch24:0024-fcoemon-systemd-socket-activation.patch
+Patch25:0025-systemctl-cannot-start-fcoemon.socket.patch
 
 # Patches from Fedora
 Patch101:   fcoe-utils-1.0.29-make.patch
@@ -102,6 +101,7 @@
 %patch22 -p1
 %patch23 -p1
 %patch24 -p1
+%patch25 -p1
 %patch101 -p1
 
 %build
@@ -114,17 +114,11 @@
 # old init script
 rm -rf %{buildroot}/etc/init.d
 
-# mkinitrd script
-install -d ${RPM_BUILD_ROOT}/lib/mkinitrd/scripts/
-install -m 755 %{S:20} ${RPM_BUILD_ROOT}/lib/mkinitrd/scripts/boot-fcoe.sh
-install -m 755 %{S:22} ${RPM_BUILD_ROOT}/lib/mkinitrd/scripts/setup-fcoe.sh
-
 # unitfile
 ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcfcoe
 
 # config
-mkdir -p %{buildroot}/var/adm/fillup-templates
-install -m 644 %{SOURCE2} %{buildroot}/var/adm/fillup-templates/sysconfig.fcoe
+install -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/fcoe/config
 
 # contrib files
 mkdir -p %{buildroot}%{_libexecdir}/fcoe
@@ -139,7 +133,6 @@
 exit 0
 
 %post
-[ -x /sbin/mkinitrd_setup ]  mkinitrd_setup
 %service_add_post fcoe.service
 %fillup_only -n fcoe
 exit 0
@@ -149,7 +142,6 @@
 exit 0
 
 %postun
-[ -x /sbin/mkinitrd_setup ]  mkinitrd_setup
 %service_del_preun fcoe.service
 exit 0
 
@@ -164,8 +156,6 @@
 %config(noreplace) %{_sysconfdir}/fcoe/config
 %config(noreplace) %{_sysconfdir}/fcoe/cfg-ethx
 %config %{_sysconfdir}/bash_completion.d/
-/var/adm/fillup-templates/sysconfig.fcoe
 %{_libexecdir}/fcoe/
-/lib/mkinitrd
 
 %changelog

++ 0025-systemctl-cannot-start-fcoemon.socket.patch ++
From 913faf7761a8fb004d44b5515b14efb0f60e9fa9 Mon Sep 17 00:00:00 2001
From: Hannes Reinecke h...@suse.de
Date: Fri, 21 Mar 2014 14:46:40 +0100
Subject: systemctl cannot start fcoemon.socket

systemctl start fcoemon.socket fails, as systemd cannot find
the referenced service.

References: bnc#869392

Signed-off-by: Hannes Reinecke h...@suse.de
---
 etc/systemd/fcoemon.socket | 4 
 1 file changed, 4 insertions(+)

diff --git a/etc/systemd/fcoemon.socket b/etc/systemd/fcoemon.socket
index 4de8715..fdf7141 100644
--- a/etc/systemd/fcoemon.socket
+++ b/etc/systemd/fcoemon.socket
@@ -1,4 +1,8 @@
+[Unit]
+Description=Open-FCoE daemon control socket
+
 [Socket]
+Service=fcoe.service
 ListenDatagram=@/com/intel/fcoemon
 PassCredentials=true
 
-- 
1.8.1.4

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcoe-utils for openSUSE:Factory

2014-03-21 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2014-03-21 12:14:06

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2013-12-09 
07:05:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2014-03-21 12:14:19.0 +0100
@@ -1,0 +2,6 @@
+Wed Mar 12 11:25:09 CET 2014 - h...@suse.de
+
+- Refresh patches with upstream version
+- Require open-lldp rpm (bnc#864387)
+
+---



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcoe-utils
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 BuildRequires:  open-lldp-devel
 Requires:   device-mapper
 Requires:   iproute
+Requires:   open-lldp
 BuildRequires:  systemd-devel
 %systemd_requires
 Version:1.0.29

++ 0001-man-Fix-small-typo-regarding-fcf-option.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 From fd085bc2188785859b9ab1f6d27d0fe061baf88c Mon Sep 17 00:00:00 2001
 From: Robert Love robert.w.l...@intel.com
 Date: Tue, 15 Oct 2013 01:48:18 +
-Subject: [PATCH 01/17] man: Fix small typo regarding --fcf option
+Subject: man: Fix small typo regarding --fcf option
 
 The option is coded as '--fcf', so fix the documentation
 to match the implementation.

++ 0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 From 0f63a3ed3a12b4f88f5dd49983cdf3f9b24e9fc8 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Petr=20=C5=A0abata?= con...@redhat.com
 Date: Thu, 7 Nov 2013 11:31:11 +
-Subject: [PATCH 02/17] Don't call AM_INIT_AUTOMAKE twice
+Subject: Don't call AM_INIT_AUTOMAKE twice
 MIME-Version: 1.0
 Content-Type: text/plain; charset=UTF-8
 Content-Transfer-Encoding: 8bit

++ 0003-fipvlan-fails-on-powerpc.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 From 921a055f5ea6b68f16db585e985eb24b4c32be2c Mon Sep 17 00:00:00 2001
 From: Raju Chakraborty rajuc...@linux.vnet.ibm.com
 Date: Mon, 18 Nov 2013 14:33:13 +
-Subject: [PATCH 03/17] fipvlan fails on powerpc
+Subject: fipvlan fails on powerpc
 
 fipvlan fails to execute properly on powerpc architecture.
 

++ 0004-fipvlan-Only-shutdown-interfaces-if-no-vlans-are-cre.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,8 +1,7 @@
 From 29d172232050386b456da62bf873278bb90d4676 Mon Sep 17 00:00:00 2001
 From: Hannes Reinecke h...@suse.de
 Date: Tue, 19 Nov 2013 20:26:01 +
-Subject: [PATCH 04/17] fipvlan: Only shutdown interfaces if no vlans are
- created
+Subject: fipvlan: Only shutdown interfaces if no vlans are created
 
 Instead of having to check the individual stages we can
 easier just check if any vlans are created. Vlans are

++ 0005-fipvlan-start-VLAN-interface-from-netlink-handler.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 From ef209fd4f68fb90f85f89612ebbf9c3e8843f33c Mon Sep 17 00:00:00 2001
 From: Hannes Reinecke h...@suse.de
 Date: Tue, 19 Nov 2013 20:26:02 +
-Subject: [PATCH 05/17] fipvlan: start VLAN interface from netlink handler
+Subject: fipvlan: start VLAN interface from netlink handler
 
 Instead of starting the VLAN interface after the call to
 vlan_create() we should rather start it after the netlink

++ 0006-fipvlan-Extract-create_missing_vlan-function-from-lo.patch ++
--- /var/tmp/diff_new_pack.fOg1Rg/_old  2014-03-21 12:14:20.0 +0100
+++ /var/tmp/diff_new_pack.fOg1Rg/_new  2014-03-21 12:14:20.0 +0100
@@ -1,7 +1,7 @@
 From 

commit fcoe-utils for openSUSE:Factory

2013-10-22 Thread h_root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2013-10-22 14:51:13

Comparing /work/SRC/openSUSE:Factory/fcoe-utils (Old)
 and  /work/SRC/openSUSE:Factory/.fcoe-utils.new (New)


Package is fcoe-utils

Changes:

New Changes file:

--- /dev/null   2013-10-11 12:16:15.204037506 +0200
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2013-10-22 14:51:14.0 +0200
@@ -0,0 +1,248 @@
+---
+Thu Oct 10 15:22:26 UTC 2013 - tchva...@suse.com
+
+- Redo the autotools patch to actually fix --as-needed build,
+  should be upstreamed.
+- Adds patch: fcoe-utils-1.0.29-as-needed.patch
+- Removes patch: fcoe-utils-1.0.29-no-as-needed.patch
+
+---
+Thu Oct 10 15:16:52 UTC 2013 - tchva...@suse.com
+
+- Fix Requires we have just device-mapper, used wrong pkg name.
+
+---
+Thu Oct 10 13:34:08 CEST 2013 - h...@suse.de
+
+- Disable --as-needed to fix build failures
+- Use %fillup for sysconfig file
+- Fixup build dependencies
+
+---
+Wed Oct  9 14:04:35 UTC 2013 - tchva...@suse.com
+
+- Bump to 1.0.29 removing all our suse stuff.
+  * Still does not build, requires packaging of other deps they
+provide in git repo to clone.
+
+---
+Tue Jul 23 14:38:15 CEST 2013 - oher...@suse.de
+
+- Remove usage of absolute paths in initrd
+- List all used binaries in programs tag
+- Use new emergency function, related to other bug (bnc#809812)
+- Remove unneeded mkdir in setup script, mkinitrd does it now
+
+---
+Tue May 29 13:08:21 UTC 2012 - pu...@suse.com
+
+- fix build with automake-1.12
+  - add: automake-1.12.patch
+
+---
+Fri Dec  2 16:25:04 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---
+Tue Jul  6 13:20:52 CEST 2010 - h...@suse.de
+
+- Fix build on Factory.
+
+---
+Tue Jul  6 11:20:52 CEST 2010 - h...@suse.de
+
+- Refresh patches.
+
+---
+Tue Jul  6 10:56:33 CEST 2010 - h...@suse.de
+
+- Port from SLES11 SP1.
+
+---
+Mon May 10 18:02:18 CEST 2010 - h...@suse.de
+
+- Fix EMC SAN MAC issue (bnc#603964)
+
+---
+Mon Apr 26 14:12:43 CEST 2010 - h...@suse.de
+
+- fixes no lun display issue due to wrong check for target role
+  (bnc#599421)
+
+---
+Thu Apr  8 10:36:53 CEST 2010 - h...@suse.de
+
+- Resync with open-fcoe for RC3 (bnc#594212)
+
+---
+Thu Mar 25 13:36:12 CET 2010 - h...@suse.de
+
+- More fipvlan fixes for RC2 (bnc#590324)
+- Update mkinitrd script to actually boot the system (bnc#590868)
+
+---
+Tue Mar 23 14:12:30 CET 2010 - h...@suse.de
+
+- Sync-up package with git tree for RC2 (bnc#590324)
+- Compile against lldpad (bnc#590487)
+
+---
+Mon Mar 15 13:50:54 CET 2010 - h...@suse.de
+
+- Sync-up package with commit id
+  9403c2aaac0b79d0d236ef9413cc88b7d6f7f04e (bnc#588150)
+
+---
+Sun Mar 14 11:59:25 CET 2010 - r...@suse.de
+
+- finally fix build 
+
+---
+Sat Mar 13 17:31:15 CET 2010 - r...@suse.de
+
+- fix typo in specfile 
+
+---
+Fri Mar  5 10:47:03 CET 2010 - h...@suse.de
+
+- Add option '-i' to fipvlan (bnc#585045)
+- Add setup script /sbin/fcoe-setup (bnc#585045)
+
+---
+Mon Feb 22 15:25:30 CET 2010 - h...@suse.de
+
+- Fixup mkinitrd scripts (bnc#570643)
+
+---
+Mon Feb 22 12:12:58 CET 2010 - h...@suse.de
+
+- Sync-up package with git tree (bnc#581550)
+
+---
+Fri Jan 22 08:56:46 CET 2010 - h...@suse.de
+
+- Sync-up package with git commit id
+  3f25915a92c308c5db352a7fe24092350498f179 (bnc#572686)
+- fcoemon uses memcpy when copying path name