Hello community,

here is the log from the commit of package fence-agents for openSUSE:Factory 
checked in at 2014-12-23 11:50:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fence-agents (Old)
 and      /work/SRC/openSUSE:Factory/.fence-agents.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fence-agents"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fence-agents/fence-agents.changes        
2014-10-16 18:17:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.fence-agents.new/fence-agents.changes   
2014-12-23 11:49:21.000000000 +0100
@@ -1,0 +2,19 @@
+Mon Dec 15 12:04:13 UTC 2014 - kgronl...@suse.com
+
+- Update to 4.0.13:
+  * new fence agent based on mpathpersist that offers better handling of 
+    multipath devices
+  * improve support of fence_ilo_ssh on older firmwares
+
+  * required packages are also required by autoconf during build time
+  * fence_zvm now supports action 'monitor' (thanks to Neale Ferguson)
+  * introduce --gnutlscli-path --sudo-path --ssh-path and --telnet-path; 
+    they are no longer hard-coded
+  * order of XML parameters or options in --help is more stable now
+  * fence_cisco_ucs did not set protocol prefix correctly with 
+    --ssl-(in)secure
+  * logging to syslog now works correctly also with \x00 as input
+
+- Add patch: 0001-Avoid-problem-with-broken-make-variable-expansion.patch
+
+-------------------------------------------------------------------

Old:
----
  fence-agents-4.0.12.tar.xz

New:
----
  0001-Avoid-problem-with-broken-make-variable-expansion.patch
  fence-agents-4.0.13.tar.xz

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

Other differences:
------------------
++++++ fence-agents.spec ++++++
--- /var/tmp/diff_new_pack.3zrh55/_old  2014-12-23 11:49:22.000000000 +0100
+++ /var/tmp/diff_new_pack.3zrh55/_new  2014-12-23 11:49:22.000000000 +0100
@@ -22,10 +22,12 @@
 Summary:        Fence Agents for Pacemaker from RHCS
 License:        GPL-2.0 and LGPL-2.1
 Group:          Productivity/Clustering/HA
-Version:        4.0.12
+Version:        4.0.13
 Release:        0
 Url:            http://git.fedorahosted.org/git/fence-agents.git
 Source0:        %{name}-%{version}.tar.xz
+# PATCH-FIX-OPENSUSE: Avoid problem with broken make variable expansion
+Patch1:         0001-Avoid-problem-with-broken-make-variable-expansion.patch
 
 Requires:       python-curl
 Requires:       python-openssl
@@ -155,6 +157,7 @@
 
 %prep
 %setup -q -n %{name}-%{version}
+%patch1 -p1
 
 %build
 CFLAGS="${CFLAGS} ${RPM_OPT_FLAGS}"

++++++ 0001-Avoid-problem-with-broken-make-variable-expansion.patch ++++++
>From 40ac206ebec011623ea6234229922d39d9eed4b7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= <k...@koru.se>
Date: Mon, 15 Dec 2014 14:45:34 +0100
Subject: [PATCH] Avoid problem with broken make variable expansion

---
 make/agentpycheck.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/make/agentpycheck.mk b/make/agentpycheck.mk
index 090116b..2209bdf 100644
--- a/make/agentpycheck.mk
+++ b/make/agentpycheck.mk
@@ -1,19 +1,18 @@
 TEMPFILE:=$(shell mktemp)
 #DATADIR:=$(abs_top_builddir)/tests/data/metadata
 DATADIR:=$(abs_top_srcdir)/tests/data/metadata
-AWK='BEGIN {store=-1} /name=\"store_path\"/ {store=2} {if (store!=0) {print}; 
store--}'
 
 check: $(TARGET:%=xml-check.%) $(SYMTARGET:%=xml-check.%) 
$(TARGET:%=delay-check.%)
 
 xml-check.%: %
        $(eval INPUT=$(subst xml-check.,,$@))
-       PYTHONPATH=$(abs_srcdir)/../lib:$(abs_builddir)/../lib python 
./$(INPUT) -o metadata | awk $(AWK) > $(TEMPFILE)
+       PYTHONPATH=$(abs_srcdir)/../lib:$(abs_builddir)/../lib python 
./$(INPUT) -o metadata | awk 'BEGIN {store=-1} /name=\"store_path\"/ {store=2} 
{if (store!=0) {print}; store--}' > $(TEMPFILE)
        diff $(TEMPFILE) $(DATADIR)/$(INPUT).xml
        rm $(TEMPFILE)
 
 xml-upload.%: %
        $(eval INPUT=$(subst xml-upload.,,$@))
-       PYTHONPATH=$(abs_srcdir)/../lib:$(abs_builddir)/../lib python 
./$(INPUT) -o metadata | awk $(AWK) > $(DATADIR)/$(INPUT).xml
+       PYTHONPATH=$(abs_srcdir)/../lib:$(abs_builddir)/../lib python 
./$(INPUT) -o metadata | awk 'BEGIN {store=-1} /name=\"store_path\"/ {store=2} 
{if (store!=0) {print}; store--}' > $(DATADIR)/$(INPUT).xml
 
 # If test will fail, rerun fence agents to show problems
 delay-check.%: %
-- 
2.2.0

++++++ fence-agents-4.0.12.tar.xz -> fence-agents-4.0.13.tar.xz ++++++
++++ 12872 lines of diff (skipped)

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

Reply via email to