Package: release.debian.org Severity: normal Tags: stretch User: release.debian....@packages.debian.org Usertags: pu
Hi, Please allow an update for fence-agents package fixing occasional FTBFS reported in #934519. Patch for the change follows below. diff -Nru fence-agents-4.0.25/debian/changelog fence-agents-4.0.25/debian/changelog --- fence-agents-4.0.25/debian/changelog 2019-06-30 19:01:55.000000000 +0200 +++ fence-agents-4.0.25/debian/changelog 2019-09-29 12:27:01.000000000 +0200 @@ -1,3 +1,9 @@ +fence-agents (4.0.25-1+deb9u2) stretch; urgency=medium + + * Update patch for removing fence_amt_ws (Closes: #934519) + + -- Valentin Vidic <vvi...@debian.org> Sun, 29 Sep 2019 12:27:01 +0200 + fence-agents (4.0.25-1+deb9u1) stretch; urgency=medium * fence_rhevm: add patch for CVE-2019-10153 (Closes: #930887) diff -Nru fence-agents-4.0.25/debian/patches/remove-fence_amt_ws fence-agents-4.0.25/debian/patches/remove-fence_amt_ws --- fence-agents-4.0.25/debian/patches/remove-fence_amt_ws 2019-06-30 19:01:55.000000000 +0200 +++ fence-agents-4.0.25/debian/patches/remove-fence_amt_ws 2019-09-29 12:27:01.000000000 +0200 @@ -1,16 +1,16 @@ --- a/configure.ac +++ b/configure.ac -@@ -142,6 +142,9 @@ if test "x$AGENTS_LIST" = xall; then - AGENTS_LIST=`find $srcdir/fence/agents -mindepth 2 -maxdepth 2 -name '*.py' -printf '%P ' | sed -e 's#lib/[A-Za-z_.]* ##g' -e 's#nss_wrapper/[A-Za-z_.]* ##g' -e 's#autodetect/[A-Za-z_.]* ##g'` +@@ -139,7 +139,8 @@ + fi + + if test "x$AGENTS_LIST" = xall; then +- AGENTS_LIST=`find $srcdir/fence/agents -mindepth 2 -maxdepth 2 -name '*.py' -printf '%P ' | sed -e 's#lib/[A-Za-z_.]* ##g' -e 's#nss_wrapper/[A-Za-z_.]* ##g' -e 's#autodetect/[A-Za-z_.]* ##g'` ++ # remove fence_amt_ws because we don't have openwsman (and sblim-sfcc) in Debian ++ AGENTS_LIST=`find $srcdir/fence/agents -mindepth 2 -maxdepth 2 -name '*.py' ! -name 'fence_amt_ws.py' -printf '%P ' | sed -e 's#lib/[A-Za-z_.]* ##g' -e 's#nss_wrapper/[A-Za-z_.]* ##g' -e 's#autodetect/[A-Za-z_.]* ##g'` fi -+# remove fence_amt_ws because we don't have openwsman (and sblim-sfcc) in Debian -+AGENTS_LIST=$(echo $AGENTS_LIST | sed -e "s!amt_ws/fence_amt_ws.py !!") -+ XENAPILIB=0 - if echo "$AGENTS_LIST" | grep -q xenapi; then - XENAPILIB=1 -@@ -163,7 +166,8 @@ AC_PYTHON_MODULE(suds, 1) +@@ -163,7 +164,8 @@ AC_PYTHON_MODULE(pexpect, 1) AC_PYTHON_MODULE(pycurl, 1) AC_PYTHON_MODULE(requests, 1)