diff -Nru paraview-5.1.2+dfsg1/debian/changelog paraview-5.1.2+dfsg1/debian/changelog --- paraview-5.1.2+dfsg1/debian/changelog 2016-08-12 19:20:07.000000000 +0000 +++ paraview-5.1.2+dfsg1/debian/changelog 2016-10-07 01:33:29.000000000 +0000 @@ -1,3 +1,9 @@ +paraview (5.1.2+dfsg1-1+rpi1) stretch-staging; urgency=medium + + * Build with gcc/g++ 5 to avoid ICE. + + -- Peter Michael Green Fri, 07 Oct 2016 01:33:29 +0000 + paraview (5.1.2+dfsg1-1) unstable; urgency=medium * [482f42d] Imported Upstream version 5.1.2+dfsg1 diff -Nru paraview-5.1.2+dfsg1/debian/control paraview-5.1.2+dfsg1/debian/control --- paraview-5.1.2+dfsg1/debian/control 2016-07-05 19:22:04.000000000 +0000 +++ paraview-5.1.2+dfsg1/debian/control 2016-10-07 01:33:17.000000000 +0000 @@ -55,7 +55,9 @@ python-matplotlib, python-mpi4py, python-six, - python-twisted + python-twisted, + gcc-5, + g++-5 Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/debian-science/packages/paraview.git Vcs-Git: https://anonscm.debian.org/git/debian-science/packages/paraview.git diff -Nru paraview-5.1.2+dfsg1/debian/rules paraview-5.1.2+dfsg1/debian/rules --- paraview-5.1.2+dfsg1/debian/rules 2016-08-03 08:46:01.000000000 +0000 +++ paraview-5.1.2+dfsg1/debian/rules 2016-10-07 01:33:00.000000000 +0000 @@ -1,6 +1,9 @@ #! /usr/bin/make -f #export DH_VERBOSE=1 +export CC :=gcc-5 +export CXX :=g++-5 + DESTDIR = $(CURDIR)/debian/tmp UPSTREAM_VERSION = $(shell dpkg-parsechangelog | awk '/^Version:/ { sub("-[^-]*$$", "", $$2); print $$2}')