diff -Nru atlas-3.10.3/debian/changelog atlas-3.10.3/debian/changelog --- atlas-3.10.3/debian/changelog 2017-09-13 20:29:27.000000000 +0000 +++ atlas-3.10.3/debian/changelog 2017-09-27 02:29:13.000000000 +0000 @@ -1,3 +1,13 @@ +atlas (3.10.3-5+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. + + -- Raspbian forward porter Wed, 27 Sep 2017 02:29:13 +0000 + atlas (3.10.3-5) unstable; urgency=low * libatlas3-base Conflicts+Replaces libcblas3. (Closes: #874802) diff -Nru atlas-3.10.3/debian/rules atlas-3.10.3/debian/rules --- atlas-3.10.3/debian/rules 2017-09-09 11:19:09.000000000 +0000 +++ atlas-3.10.3/debian/rules 2017-09-27 02:29:12.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 @@ -195,13 +196,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/$(DEB_HOST_MULTIARCH)/cblas.h debian/tmp/usr/include/$(DEB_HOST_MULTIARCH)/cblas-atlas.h + # 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.