Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package ceph I know this is really late. The 10.2.5-7.1 upload which fixes an upgrade issue (#864161). Did not build on all buildds due to reasons unrelated to the upload. Adrian Bunk tried to fix this with a second NMU which built on all arches but did not migrate today because the unblock hint applied for -7.1 referenced the wrong version. I was not aware that the unblock hint needs to be updated so I expected the package to migrate. Is there any chance this can still get into stretch before the release? The debdiff of the second NMU is attached. The only change is to include less debugging information into the debug packages on 32bit arches to reduce the space used by the build. Regards Gaudenz unblock ceph/10.2.5-7.2 -- System Information: Debian Release: 9.0 APT prefers testing-proposed-updates APT policy: (500, 'testing-proposed-updates'), (500, 'testing'), (100, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-3-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diff -Nru ceph-10.2.5/debian/changelog ceph-10.2.5/debian/changelog --- ceph-10.2.5/debian/changelog 2017-06-06 09:08:30.000000000 +0200 +++ ceph-10.2.5/debian/changelog 2017-06-07 10:39:39.000000000 +0200 @@ -1,3 +1,11 @@ +ceph (10.2.5-7.2) unstable; urgency=medium + + * Non-maintainer upload. + * Build with -g1 instead of -g on 32bit architectures to fix + FTBFS due to the 2GB/3GB address space limits. + + -- Adrian Bunk <b...@debian.org> Wed, 07 Jun 2017 11:39:39 +0300 + ceph (10.2.5-7.1) unstable; urgency=medium * Non-maintainer upload. diff -Nru ceph-10.2.5/debian/rules ceph-10.2.5/debian/rules --- ceph-10.2.5/debian/rules 2017-05-11 23:00:46.000000000 +0200 +++ ceph-10.2.5/debian/rules 2017-06-07 10:39:39.000000000 +0200 @@ -2,6 +2,14 @@ # -*- makefile -*- #export DH_VERBOSE=1 +# Reduce size of debug symbols to fix FTBFS due to the +# 2GB/3GB address space limits on 32bit +DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS) +ifeq (32,$(DEB_HOST_ARCH_BITS)) + export DEB_CFLAGS_MAINT_APPEND = -g1 + export DEB_CXXFLAGS_MAINT_APPEND = -g1 +endif + # Limit parallel builds to 2 for now # minimise needless linking and link to libatomic