I am uploading a NMU to DELAYED/10 in order to fix this.
The debdiff is attached.
diff -Nru mdm-0.1.3/debian/changelog mdm-0.1.3/debian/changelog
--- mdm-0.1.3/debian/changelog 2023-10-02 18:23:04.000000000 +0200
+++ mdm-0.1.3/debian/changelog 2023-10-02 18:08:48.000000000 +0200
@@ -1,3 +1,12 @@
+mdm (0.1.3-2.2) unstable; urgency=medium
+
+ * Non-maintainer upload
+ * Convert to source format 3.0 (closes: #1007311)
+ * Let the 2nd description paragraph have sentences (closes: #550374)
+ * Drop -s to prevent using the build architecture strip (closes: #927861)
+
+ -- Bastian Germann <b...@debian.org> Mon, 02 Oct 2023 18:08:48 +0200
+
mdm (0.1.3-2.1) unstable; urgency=low
* Non-maintainer upload.
diff -Nru mdm-0.1.3/debian/control mdm-0.1.3/debian/control
--- mdm-0.1.3/debian/control 2023-10-02 18:23:04.000000000 +0200
+++ mdm-0.1.3/debian/control 2023-10-02 18:08:48.000000000 +0200
@@ -16,5 +16,5 @@
opportunity that arises at runtime. You can also specify dependency
between commands so that they run in an appropriate order.
.
- Comes with an ncurses-based monitoring console. Compatible with xargs,
- find, make, any shell, together, in a script or interactively.
+ mdm comes with an ncurses-based monitoring console and is compatible with
+ xargs, find, make and any shell. It can be run in a script or interactively.
diff -Nru mdm-0.1.3/debian/patches/crossbuild.patch
mdm-0.1.3/debian/patches/crossbuild.patch
--- mdm-0.1.3/debian/patches/crossbuild.patch 1970-01-01 01:00:00.000000000
+0100
+++ mdm-0.1.3/debian/patches/crossbuild.patch 2023-10-02 18:08:48.000000000
+0200
@@ -0,0 +1,19 @@
+Description: Drop -s to prevent using the build architecture strip
+Author: Nguyen Van. Hieu <hieu.nguyen...@toshiba-tsdv.com>
+Bug-Debian: https://bugs.debian.org/927861
+---
+diff -u mdm-0.1.3/Makefile mdm-0.1.3/Makefile
+--- mdm-0.1.3/Makefile
++++ mdm-0.1.3/Makefile
+@@ -46,9 +46,9 @@
+ install-bin : all
+ $(INSTALL) -d $(BIN_D_DIR) $(LIB_D_DIR)
+ $(INSTALL) scripts/mdm.screen scripts/ncpus $(BIN_D_DIR)
+- $(INSTALL) -s mdm-run $(BIN_D_DIR)
++ $(INSTALL) mdm-run $(BIN_D_DIR)
+ $(LN) -f -s mdm-run $(BIN_D_DIR)/mdm-sync
+- $(INSTALL) -s mdm-master mdm-slave mdm-top $(LIB_D_DIR)
++ $(INSTALL) mdm-master mdm-slave mdm-top $(LIB_D_DIR)
+ $(SED) -i -e "s:MDM_LIB:$(LIB_DIR):" $(BIN_D_DIR)/mdm.screen
+
+ install-docs :
diff -Nru mdm-0.1.3/debian/patches/Makefile.patch
mdm-0.1.3/debian/patches/Makefile.patch
--- mdm-0.1.3/debian/patches/Makefile.patch 1970-01-01 01:00:00.000000000
+0100
+++ mdm-0.1.3/debian/patches/Makefile.patch 2023-10-02 18:08:48.000000000
+0200
@@ -0,0 +1,19 @@
+Description: Fix link order to list libraries after the objects that require
them
+Author: Colin Watson <cjwat...@debian.org>
+Bug-Debian: https://bugs.debian.org/641418
+---
+--- mdm-0.1.3.orig/Makefile
++++ mdm-0.1.3/Makefile
+@@ -24,10 +24,10 @@ all : $(PROG)
+
+ mdm-master : library/hazard.o
+ mdm-top : library/procfs.o
+-mdm-top : override LDFLAGS += -lcurses
++mdm-top : override LDLIBS += -lcurses
+
+ mdm-% : programs/mdm-%.c $(LIB)
+- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $+
++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $+ $(LDLIBS)
+
+ LIB += library/hazard.o library/procfs.o
+ $(LIB) : include/middleman.h
diff -Nru mdm-0.1.3/debian/patches/series mdm-0.1.3/debian/patches/series
--- mdm-0.1.3/debian/patches/series 1970-01-01 01:00:00.000000000 +0100
+++ mdm-0.1.3/debian/patches/series 2023-10-02 18:08:48.000000000 +0200
@@ -0,0 +1,2 @@
+Makefile.patch
+crossbuild.patch
diff -Nru mdm-0.1.3/debian/source/format mdm-0.1.3/debian/source/format
--- mdm-0.1.3/debian/source/format 1970-01-01 01:00:00.000000000 +0100
+++ mdm-0.1.3/debian/source/format 2023-10-02 18:08:48.000000000 +0200
@@ -0,0 +1 @@
+3.0 (quilt)
diff -Nru mdm-0.1.3/Makefile mdm-0.1.3/Makefile
--- mdm-0.1.3/Makefile 2023-10-02 18:23:04.000000000 +0200
+++ mdm-0.1.3/Makefile 2009-09-21 09:15:53.000000000 +0200
@@ -24,10 +24,10 @@
mdm-master : library/hazard.o
mdm-top : library/procfs.o
-mdm-top : override LDLIBS += -lcurses
+mdm-top : override LDFLAGS += -lcurses
mdm-% : programs/mdm-%.c $(LIB)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $+ $(LDLIBS)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $+
LIB += library/hazard.o library/procfs.o
$(LIB) : include/middleman.h