Your message dated Thu, 19 Jan 2017 17:30:10 +0100
with message-id <[email protected]>
and subject line Re: Bug#850465: tcsh FTCBFS: runs tests despite
DEB_BUILD_OPTIONS=nocheck
has caused the Debian Bug report #850465,
regarding tcsh FTCBFS: runs tests despite DEB_BUILD_OPTIONS=nocheck
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.)
--
850465: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=850465
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: tcsh
Version: 6.20.00-2
Tags: patch
User: [email protected]
Usertags: rebootstrap
tcsh fails to cross build from source, because it does not honour
DEB_BUILD_OPTIONS=nocheck. During cross builds tests cannot usually be
run, because host architecture executables cannot be run. That's exactly
what happens while running tcsh's test suite. Since test suite failures
are fatal, the build fails. Please consider applying the attached patch.
Helmut
diff -u tcsh-6.20.00/debian/changelog tcsh-6.20.00/debian/changelog
--- tcsh-6.20.00/debian/changelog
+++ tcsh-6.20.00/debian/changelog
@@ -1,3 +1,10 @@
+tcsh (6.20.00-2.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTCBFS: Support DEB_BUILD_OPTIONS=nocheck, Closes: #-1
+
+ -- Helmut Grohne <[email protected]> Fri, 06 Jan 2017 20:10:15 +0100
+
tcsh (6.20.00-2) unstable; urgency=high
* rules: put executable into /bin, make new symlink, Closes: #847139
diff -u tcsh-6.20.00/debian/rules tcsh-6.20.00/debian/rules
--- tcsh-6.20.00/debian/rules
+++ tcsh-6.20.00/debian/rules
@@ -30,8 +30,10 @@
dh_installexamples -a complete.tcsh
dh_installemacsen
+ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
override_dh_auto_test:
LS_COLORS= make check || (cat testsuite.log ; false)
+endif
override_dh_auto_clean:
[ ! -f nls/Makefile ] || make -C nls clean
--- End Message ---
--- Begin Message ---
You patch was included in 6.20.00-4. Thanks for the patch.
--
regards Thomas
--- End Message ---