- ceph (14.2.9-1+rpi1) bullseye-staging; urgency=medium
++ceph (14.2.15-3+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> Fri, 01 May 2020 03:16:43 +0000
++ -- Peter Michael Green <plugwash@raspbian.org> Thu, 10 Dec 2020 19:21:33 +0000
++
+ ceph (14.2.15-3) unstable; urgency=medium
+
+ [ Adrian Bunk ]
+ * [197afaf] Merge branch 'debian/unstable' into 'debian/unstable'
+ Portability fixes
+ See merge request ceph-team/ceph!6
+
+ -- Thomas Goirand <zigo@debian.org> Thu, 03 Dec 2020 21:03:06 +0100
+
+ ceph (14.2.15-2) unstable; urgency=medium
+
+ * Do not build with clang, instead, set --max-parallel=1, as it seems it
+ worked for Ubuntu. If this doesn't work, we'll disable the non-64 bits
+ arch completely.
+
+ -- Thomas Goirand <zigo@debian.org> Mon, 30 Nov 2020 21:10:12 +0100
+
+ ceph (14.2.15-1) unstable; urgency=medium
+
+ * New upstream release (Closes: #956750):
+ - Fix FTBFS with GCC-10 (Closes: #957079).
+ - Fix CVE-2020-10753 (Closes: #963760).
+ - Fix CVE-2020-25660 (Closes: #975275).
+ * Refreshed patches:
+ - 32bit-avoid-size_t.patch
+ - add-option-to-disable-ceph-dencoder.patch
+ - bluefs-use-uint64_t-for-len.patch
+ - disable-crypto.patch
+ - mds-purgequeue-use_uint64_t.patch
+ * Raw wrap-and-sort -bastk.
+ * Added myself as uploader.
+ * Added librdkafka-dev as build-depends.
+ * Fixed debian/libcephfs-dev.install.
+ * debian/calc-max-parallel.sh: allow for more values of --max-parallel so
+ that ceph builds faster on more powerful machines.
+ * Add a patch to make Ceph aware of Python 3.9:
+ - make-ceph-python-3.9-aware.patch
+ * Add a debian/source/options to ignore CRLF to CR changes.
+ * Use --home in ceph-common.postinst when creating the Ceph system user.
+ * Updated debian/libcephfs2.symbols (added 3 new symbols).
+ * Package: ceph-resource-agents, switch Priority: to optional.
+ * Add debian/source.lintian-overrides to allow .js which shipped by upstream
+ in both compiled and source version.
+ * Removed now useless dpkg-maintscript-helper rm_conffile: they have been
+ around for more than one release.
+ * debian/ceph-osd.postinst: remove as it's doing nothing.
+ * Fix debian/lib{rbd1,rados2}.symbols (3 missing symbols).
+
+ -- Thomas Goirand <zigo@debian.org> Fri, 27 Nov 2020 23:58:00 +0100
ceph (14.2.9-1) unstable; urgency=high
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 (,$(filter $(DEB_HOST_ARCH),mipsel))
+ # disable ceph-dencoder on 32bit except i386 to avoid g++ oom
+ ifneq (,$(filter $(DEB_HOST_ARCH), armel armhf hppa m68k mips mipsel powerpc sh4 x32))
extraopts += -DDISABLE_DENCODER=1
endif