Your message dated Mon, 08 Feb 2021 21:37:43 +0000
with message-id <[email protected]>
and subject line Bug#982110: Removed package(s) from unstable
has caused the Debian Bug report #894837,
regarding plotdrop FTCBFS: uses build architecture build tools
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.)
--
894837: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=894837
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: plotdrop
Version: 0.5.4-1
Tags: patch upstream
User: [email protected]
Usertags: rebootstrap
plotdrop fails to cross build from source, because its Makefile hard
codes build architecture build tools. It uses bare pkg-config, which is
the build architecture one. dh_auto_build passes a cross $(PKG_CONFIG)
and all the Makefile has to do is pick it up. Furthermore, it uses the
-s option for the install command, which strips using the build
architecture strip. Besides breaking cross compilation, it also breaks
-dbgsym packages, so it is best left to dh_strip. Please consider
applying the attached patch.
Helmut
Index: plotdrop-0.5.4/Makefile
===================================================================
--- plotdrop-0.5.4.orig/Makefile
+++ plotdrop-0.5.4/Makefile
@@ -9,9 +9,10 @@
OBJECTS=main.o gnuplot.o droplist.o
LDFLAGS =
-LIBS = `pkg-config --libs gtk+-2.0 gio-2.0 glib-2.0 libglade-2.0`
+PKG_CONFIG ?= pkg-config
+LIBS = `$(PKG_CONFIG) --libs gtk+-2.0 gio-2.0 glib-2.0 libglade-2.0`
CFLAGS = -g -Wall -pedantic -std=c99
-LCFLAGS = `pkg-config --cflags gtk+-2.0 gio-2.0 glib-2.0 libglade-2.0` -DDATADIR="\"$(DATADIR)\"" -DVERSION="\"$(VERSION)\""
+LCFLAGS = `$(PKG_CONFIG) --cflags gtk+-2.0 gio-2.0 glib-2.0 libglade-2.0` -DDATADIR="\"$(DATADIR)\"" -DVERSION="\"$(VERSION)\""
all: $(TARGET)
@@ -26,7 +27,7 @@
install: all
install -d $(DESTDIR)$(BINDIR) $(DESTDIR)$(DATADIR)
- install -s $(TARGET) $(DESTDIR)$(BINDIR)
+ install $(TARGET) $(DESTDIR)$(BINDIR)
install -m 0644 droplist.glade $(DESTDIR)$(DATADIR)
install -d $(DESTDIR)$(PREFIX)/share/applications
install -m 0644 plotdrop.desktop $(DESTDIR)$(PREFIX)/share/applications
--- End Message ---
--- Begin Message ---
Version: 0.5.4-1+rm
Dear submitter,
as the package plotdrop has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/982110
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers