diff -Nru atlas-3.10.3/debian/changelog atlas-3.10.3/debian/changelog --- atlas-3.10.3/debian/changelog 2017-08-16 20:30:36.000000000 +0000 +++ atlas-3.10.3/debian/changelog 2017-08-24 16:04:25.000000000 +0000 @@ -1,3 +1,13 @@ +atlas (3.10.3-3+rpi1) buster-staging; urgency=medium + + [changes brought forward from 3.10.2-6+rpi1 by Peter Michael Green at Wed, 07 Jan 2015 01:41:03 +0000] + * Use generic build for raspbian. + * Make testsuite failure non-fatal + * Build some stuff for libatlas-test manually as it doesn't seem to get built + if the testsuite fails. + + -- Peter Michael Green Thu, 24 Aug 2017 16:04:25 +0000 + atlas (3.10.3-3) unstable; urgency=medium * d/control: libatlas-base-dev now directly depends on libblas-dev. diff -Nru atlas-3.10.3/debian/rules atlas-3.10.3/debian/rules --- atlas-3.10.3/debian/rules 2017-08-10 18:32:44.000000000 +0000 +++ atlas-3.10.3/debian/rules 2017-08-24 16:04:25.000000000 +0000 @@ -60,7 +60,8 @@ ifeq ($(DEB_HOST_ARCH_CPU),amd64) ISA := 768 else ifeq ($(DEB_HOST_ARCH),armhf) -ISA := 16384 +# Unlike Debian armhf raspbian does not require VFPV3D16, only VFPV2 +ISA := 1 else ISA := 1 endif @@ -199,13 +200,18 @@ endif override_dh_auto_test: - make -C build check + make -C build check || true if test -f build/lib/libptcblas.a; then make -C build ptcheck; fi override_dh_auto_install: + #build some stuff manually that doesn't seem to get built if the testsuite fails + cd build/interfaces/blas/C/testing && $(MAKE) + cd build/interfaces/blas/F77/testing && $(MAKE) + make -C build install # The build system does not support setting DESTDIR at install time mv debian/tmp/usr/include/*.h debian/tmp/usr/include/atlas/ + # We want packages using libblas/liblapack to depend on any BLAS/LAPACK # alternative, and we want packages depending on ATLAS-specific libraries # (e.g. libatlas.so) to depend specifically on libatlas3-base.