Control: tags 866097 + pending Dear maintainer,
I've prepared an NMU for liggghts (versioned as 3.7.0+repack1-1.1) and uploaded it to DELAYED/10. Please feel free to tell me if I should cancel it. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed
diff -Nru liggghts-3.7.0+repack1/debian/changelog liggghts-3.7.0+repack1/debian/changelog --- liggghts-3.7.0+repack1/debian/changelog 2017-07-18 01:15:56.000000000 +0300 +++ liggghts-3.7.0+repack1/debian/changelog 2018-08-14 12:03:22.000000000 +0300 @@ -1,3 +1,12 @@ +liggghts (3.7.0+repack1-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS on 32bit archs with gcc 8 by building with -g1. + * Fix FTBFS on mips/mipsel by building with -g0. (Closes: #866097) + * Add more architectures to disable_auto_test_archs_*. + + -- Adrian Bunk <b...@debian.org> Tue, 14 Aug 2018 12:03:22 +0300 + liggghts (3.7.0+repack1-1) unstable; urgency=medium * [56c1d27] Drop windows-files from the source. diff -Nru liggghts-3.7.0+repack1/debian/rules liggghts-3.7.0+repack1/debian/rules --- liggghts-3.7.0+repack1/debian/rules 2017-07-18 00:53:14.000000000 +0300 +++ liggghts-3.7.0+repack1/debian/rules 2018-08-14 12:03:22.000000000 +0300 @@ -8,8 +8,18 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed export DEB_BUILD_MAINT_OPTIONS = hardening=+all -disable_auto_test_archs_simpl = armel armhf mips64el -disable_auto_test_archs_mpi = hurd-i386 mips mipsel mips64el s390 s390x powerpc +# fewer/no debug info to fix FTBFS on archs with few address space +ifeq (32,$(DEB_HOST_ARCH_BITS)) + export DEB_CFLAGS_MAINT_APPEND = -g1 + export DEB_CXXFLAGS_MAINT_APPEND = -g1 +endif +ifneq (,$(filter $(DEB_HOST_ARCH), mips mipsel)) + export DEB_CFLAGS_MAINT_APPEND = -g0 + export DEB_CXXFLAGS_MAINT_APPEND = -g0 +endif + +disable_auto_test_archs_simpl = armel armhf mips mipsel mips64el +disable_auto_test_archs_mpi = armel armhf hurd-i386 mips mipsel mips64el s390 s390x powerpc override_dh_auto_test: ifeq (,$(filter $(DEB_HOST_ARCH),$(disable_auto_test_archs_mpi)))