Your message dated Sun, 17 Mar 2024 13:20:28 +0100
with message-id <[email protected]>
and subject line wmwork 0.2.8-1
has caused the Debian Bug report #1034007,
regarding wmwork FTCBFS: uses the build architecture strip
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1034007: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1034007
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: wmwork
Version: 0.2.6-4
Tags: patch
User: [email protected]
Usertags: ftcbfs
wmwork fails to cross build from source, because debian/rules hard codes
the build architecture strip. I'm attaching a patch to make it use the
host architecture one via dpkg's buildtools.mk for your convenience.
Helmut
diff --minimal -Nru wmwork-0.2.6/debian/changelog wmwork-0.2.6/debian/changelog
--- wmwork-0.2.6/debian/changelog 2020-07-26 12:55:33.000000000 +0200
+++ wmwork-0.2.6/debian/changelog 2023-04-06 12:50:28.000000000 +0200
@@ -1,3 +1,10 @@
+wmwork (0.2.6-4.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTCBFS: Use the host architecture strip, closes: #-1.
+
+ -- Helmut Grohne <[email protected]> Thu, 06 Apr 2023 12:50:28 +0200
+
wmwork (0.2.6-4) unstable; urgency=medium
* source-only upload
diff --minimal -Nru wmwork-0.2.6/debian/rules wmwork-0.2.6/debian/rules
--- wmwork-0.2.6/debian/rules 2015-06-07 18:52:29.000000000 +0200
+++ wmwork-0.2.6/debian/rules 2023-04-06 12:50:27.000000000 +0200
@@ -1,5 +1,7 @@
#!/usr/bin/make -f
+include /usr/share/dpkg/buildtools.mk
+
BUILDDIR = debian/wmwork
DEBDIR = $(BUILDDIR)/DEBIAN
DOCDIR = $(BUILDDIR)/usr/share/doc/wmwork
@@ -53,7 +55,7 @@
$(MAKE) -C src install DESTDIR=$(CURDIR)/debian/wmwork
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
- strip -R .comment -R .note $(BUILDDIR)/usr/bin/wmwork
+ $(STRIP) -R .comment -R .note $(BUILDDIR)/usr/bin/wmwork
endif
gzip -9n $(BUILDDIR)/usr/share/man/man1/wmwork.1
install -D -o root -g root -m 0644 debian/menu
$(BUILDDIR)/usr/share/menu/wmwork
--- End Message ---
--- Begin Message ---
Hi there,
The latest wmwork upload uses debhelper which should fix bug #1034007.
I forgot to mention the bug in the changes file.
Bye, Martin
--- End Message ---