diff -Nru haskell-vector-0.12.0.1/debian/changelog haskell-vector-0.12.0.1/debian/changelog --- haskell-vector-0.12.0.1/debian/changelog 2018-07-04 13:25:03.000000000 +0000 +++ haskell-vector-0.12.0.1/debian/changelog 2018-10-13 21:44:06.000000000 +0000 @@ -1,8 +1,25 @@ -haskell-vector (0.12.0.1-5build1) cosmic; urgency=medium +haskell-vector (0.12.0.1-8) unstable; urgency=medium - * Rebuild against new GHC ABI. + * Disable tests on all architectures due to a GHC bug - -- Gianfranco Costamagna Wed, 04 Jul 2018 15:25:03 +0200 + -- Ilias Tsitsimpis Sun, 14 Oct 2018 00:44:06 +0300 + +haskell-vector (0.12.0.1-7) unstable; urgency=medium + + * Disable tests on i386, riscv64, alpha, hurd-i386, and x32 because + they fail to build with out-of-memory error. + + -- Ilias Tsitsimpis Fri, 12 Oct 2018 16:33:14 +0300 + +haskell-vector (0.12.0.1-6) unstable; urgency=medium + + [ Clint Adams ] + * Set Rules-Requires-Root to no. + + [ Ilias Tsitsimpis ] + * Bump debhelper compat level to 10 + + -- Ilias Tsitsimpis Sun, 30 Sep 2018 21:24:38 +0300 haskell-vector (0.12.0.1-5) unstable; urgency=medium diff -Nru haskell-vector-0.12.0.1/debian/compat haskell-vector-0.12.0.1/debian/compat --- haskell-vector-0.12.0.1/debian/compat 2018-01-07 22:54:28.000000000 +0000 +++ haskell-vector-0.12.0.1/debian/compat 2018-09-29 11:08:40.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru haskell-vector-0.12.0.1/debian/control haskell-vector-0.12.0.1/debian/control --- haskell-vector-0.12.0.1/debian/control 2018-04-14 04:40:25.000000000 +0000 +++ haskell-vector-0.12.0.1/debian/control 2018-10-03 09:05:55.000000000 +0000 @@ -3,7 +3,8 @@ Uploaders: Joachim Breitner Priority: optional Section: haskell -Build-Depends: debhelper (>= 9), +Rules-Requires-Root: no +Build-Depends: debhelper (>= 10), haskell-devscripts (>= 0.13), cdbs, ghc (>= 8), @@ -23,7 +24,7 @@ Standards-Version: 4.1.4 Homepage: https://github.com/haskell/vector Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-vector -Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git +Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-vector] Package: libghc-vector-dev Architecture: any diff -Nru haskell-vector-0.12.0.1/debian/rules haskell-vector-0.12.0.1/debian/rules --- haskell-vector-0.12.0.1/debian/rules 2018-04-15 21:14:01.000000000 +0000 +++ haskell-vector-0.12.0.1/debian/rules 2018-10-13 21:43:08.000000000 +0000 @@ -1,10 +1,9 @@ #!/usr/bin/make -f -ifeq (,$(filter $(DEB_BUILD_ARCH),mips mipsel mips64el armel armhf)) -DEB_ENABLE_TESTS = yes -else +# Tests fail to build with out-of-memory error. +# This has been reported as a GHC bug here: +# https://ghc.haskell.org/trac/ghc/ticket/13535 DEB_ENABLE_TESTS = no -endif include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/hlibrary.mk