Manual merge of version 14.2.6-4+rpi1 and 14.2.6-5 to produce 14.2.6-5+rpi1 archive/raspbian/14.2.6-5+rpi1 raspbian/14.2.6-5+rpi1
authorPeter Michael Green <plugwash@raspbian.org>
Thu, 30 Jan 2020 19:46:53 +0000 (19:46 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 30 Jan 2020 19:46:53 +0000 (19:46 +0000)
1  2 
debian/changelog
debian/rules

index 2d9fb1d61cb92cf4b34c7571af86578ce6c1ea36,21aaeceadd3fe960217a8e24f96927c895163dc1..e5d4d3beb7ec08cd8a4fe3e04060426f731e8f3e
@@@ -1,15 -1,18 +1,31 @@@
- ceph (14.2.6-4+rpi1) bullseye-staging; urgency=medium
++ceph (14.2.6-5+rpi1) bullseye-staging; urgency=medium
 +
 +  [changes brought forward from 10.2.5-7.2+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Sun, 30 Jul 2017 09:48:17 +0000]
 +  * Add Raspbian to lists of "debian-like" distros.
 +    + Hopefully this will fix site-packages vs dist-packages
 +      build failure in Raspbian.
 + 
 +  [changes introduced in 14.2.5-3+rpi1 by Peter Michael Green]
 +  * Remove problematic gitattributes files.
 +  * Disable neon on armhf too.
 +
-  -- Raspbian forward porter <root@raspbian.org>  Tue, 21 Jan 2020 16:10:31 +0000
++ -- Peter Michael Green <plugwash@raspbian.org>  Thu, 30 Jan 2020 19:46:20 +0000
++
+ ceph (14.2.6-5) unstable; urgency=medium
+   * [966df1a] Removing cython from Build-deps.
+     Thanks to Sandro Tosi (Closes: #936282)
+   * [38fdd89] clang ist not available on sh4
+   * [3c97474] Replace findstring by filter where needed.
+     Thanks jrtc27 for the hint.
+   * [c694d0d] Pass -DHAVE_NEON=0 to cmake on armel.
+     Instead of "fixing" CMakeCache.txt.
+   * [825a942] Revert "Don't build ceph on mipsel."
+     This reverts commit 424ea9b82f956daa8fa9c0539d0752ccfdc7caf6.
+     Thanks to peter green (Closes: #949528)
+   * [79aef26] Remove merge fail
+  -- Bernd Zeimetz <bzed@debian.org>  Tue, 21 Jan 2020 21:21:17 +0100
  
  ceph (14.2.6-4) unstable; urgency=high
  
diff --cc debian/rules
index b93f4b6c787bf02244602baf9a1bb347eb467dba,4f5c2410227e159b7eac0932d2d2afcf561699ba..2e8740475528cc06441054b5f4d048861a00dfc1
@@@ -28,8 -28,13 +28,16 @@@ els
      endif
  endif
  
+ # we don't have NEON on armel.
+ ifeq ($(DEB_HOST_ARCH),armel)
+     extraopts += -DHAVE_ARM_NEON=0
+ endif
++ifeq ($(DEB_HOST_ARCH),armhf)
++    extraopts += -DHAVE_ARM_NEON=0
++endif
  # disable ceph-dencoder on mipsel to avoid clang oom
- ifneq (,$(findstring -$(DEB_HOST_ARCH)-,-mipsel-))
+ ifneq (,$(filter $(DEB_HOST_ARCH),mipsel))
      extraopts += -DDISABLE_DENCODER=1
  endif