Comment 4 for bug 1863437

Revision history for this message
Rafael David Tinoco (rafaeldtinoco) wrote :

Upstream already had the following commit (since @vorlon opened the bug in January):

----

commit 543574f18
Author: Ferenc Wágner <email address hidden>
Date: Thu Jan 9 14:19:19 2020

    Omit pacemaker{, -cli-utils, -remote} on Ubuntu/i386

    Closes: #948379

diff --git a/debian/rules b/debian/rules
index 1d186d741..04acd7da2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,8 +11,14 @@ export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs
 # Avoid useless dependencies in the utilities
 export DEB_LDFLAGS_MAINT_APPEND+=-Wl,--as-needed

+# Ubuntu/i386 shrank into a compatibility layer not carrying the
+# dependencies of some of our binary packages (#948379):
+ifeq ($(shell dpkg-vendor --query vendor)/$(DEB_HOST_ARCH), Ubuntu/i386)
+ UBUNTU_EXCLUDES = -Npacemaker -Npacemaker-cli-utils -Npacemaker-remote
+endif
+
 %:
- dh $@ --with python3
+ dh $@ --with python3 $(UBUNTU_EXCLUDES)

 # autoreconf options taken from autogen.sh
 # without symlink usage (-s) to make --as-needed effective

I'll propose it to include: -Npacemaeker-resource-agents and we will be good.

----

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=948379