diff -Nru openmpi-4.0.2/debian/changelog openmpi-4.0.2/debian/changelog --- openmpi-4.0.2/debian/changelog 2019-12-18 13:41:29.000000000 +0000 +++ openmpi-4.0.2/debian/changelog 2019-12-27 11:17:41.000000000 +0000 @@ -1,3 +1,11 @@ +openmpi (4.0.2-5+rpi1) bullseye-staging; urgency=medium + + [changes brought forward from 2.1.1-6+rpi1 by Peter Michael Green at Wed, 05 Jul 2017 00:52:53 +0000] + * Modify arm "detection" for Raspbian. + * Partially fix clean target + + -- Raspbian forward porter Fri, 27 Dec 2019 11:17:41 +0000 + openmpi (4.0.2-5) unstable; urgency=medium * Fix typos in d/changelog diff -Nru openmpi-4.0.2/debian/patches/raspbian.diff openmpi-4.0.2/debian/patches/raspbian.diff --- openmpi-4.0.2/debian/patches/raspbian.diff 1970-01-01 00:00:00.000000000 +0000 +++ openmpi-4.0.2/debian/patches/raspbian.diff 2019-12-27 11:17:41.000000000 +0000 @@ -0,0 +1,28 @@ +Description: Modify arm "detection" for Raspbian. + +Index: openmpi-2.1.1.try3/config/opal_config_asm.m4 +=================================================================== +--- openmpi-2.1.1.try3.orig/config/opal_config_asm.m4 ++++ openmpi-2.1.1.try3/config/opal_config_asm.m4 +@@ -1037,7 +1037,7 @@ AC_DEFUN([OPAL_CONFIG_ASM],[ + OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)' + ;; + +- armv7*|arm-*-linux-gnueabihf) ++ armv7*) + opal_cv_asm_arch="ARM" + OPAL_ASM_SUPPORT_64BIT=1 + OPAL_ASM_ARM_VERSION=7 +@@ -1046,11 +1046,10 @@ AC_DEFUN([OPAL_CONFIG_ASM],[ + OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)' + ;; + +- armv6*) ++ armv6*|arm-*-linux-gnueabihf) + opal_cv_asm_arch="ARM" + OPAL_ASM_SUPPORT_64BIT=0 + OPAL_ASM_ARM_VERSION=6 +- CCASFLAGS="$CCASFLAGS -march=armv7-a" + AC_DEFINE_UNQUOTED([OPAL_ASM_ARM_VERSION], [$OPAL_ASM_ARM_VERSION], + [What ARM assembly version to use]) + OPAL_GCC_INLINE_ASSIGN='"mov %0, #0" : "=&r"(ret)' diff -Nru openmpi-4.0.2/debian/patches/series openmpi-4.0.2/debian/patches/series --- openmpi-4.0.2/debian/patches/series 2019-12-18 13:41:29.000000000 +0000 +++ openmpi-4.0.2/debian/patches/series 2019-12-27 11:17:41.000000000 +0000 @@ -7,3 +7,4 @@ fix-underlinking.patch # version-script.patch no-warning-unused.patch +raspbian.diff diff -Nru openmpi-4.0.2/debian/rules openmpi-4.0.2/debian/rules --- openmpi-4.0.2/debian/rules 2019-12-18 13:41:29.000000000 +0000 +++ openmpi-4.0.2/debian/rules 2019-12-27 11:17:41.000000000 +0000 @@ -89,6 +89,12 @@ find . -type l -delete find . -name '*.o' -delete rm -f $(patsubst %, debian/%, ${AUTOGENERATED}) + rm -f `find test/ -type f ! -name '*.*' ! -name 'run_tests'` + rm -f `find . -name '*.a'` + rm -f `find . -name '*.class'` + rm -f `find . -name '*.mod'` + rm -f `find . -name '*.jar'` + rm -f `find orte/tools/ -type f ! -name '*.*'` override_dh_update_autotools_config: (cd config && autom4te --language=m4sh opal_get_version.m4sh -o opal_get_version.sh)