Skip to content

Commits on Source 2

haskell-hs-bibutils (6.6.0.0-2) unstable; urgency=medium
* Patch to build with ghc-8.4
* Patch to build with bibutils-6.2
-- Dmitry Bogatov <KAction@gnu.org> Thu, 04 Oct 2018 22:15:12 +0000
-- Ilias Tsitsimpis <iliastsi@debian.org> Thu, 11 Oct 2018 17:33:52 +0300
haskell-hs-bibutils (6.6.0.0-1) unstable; urgency=medium
......
Index: b/src/Text/Bibutils.hsc
===================================================================
--- a/src/Text/Bibutils.hsc
+++ b/src/Text/Bibutils.hsc
@@ -418,6 +418,10 @@ newtype BiblioIn = BiblioIn { unBiblio
newtype BiblioOut = BiblioOut { unBiblioOut :: CInt }
deriving ( Eq )
+#ifndef BIBL_NBIBOUT
+#define BIBL_NBIBOUT (BIBL_FIRSTOUT+7)
+#endif
+
#{enum BiblioOut, BiblioOut
, mods_out = BIBL_MODSOUT
, bibtex_out = BIBL_BIBTEXOUT
Index: haskell-hs-bibutils/src/Text/Bibutils.hsc
===================================================================
--- haskell-hs-bibutils.orig/src/Text/Bibutils.hsc
+++ haskell-hs-bibutils/src/Text/Bibutils.hsc
@@ -93,7 +93,6 @@ module Text.Bibutils
, isi_out
, word2007_out
, adsab_out
- , nbib_out
-- * Options for Specific Output Formats
, FormatOpt
@@ -426,7 +425,6 @@ newtype BiblioOut = BiblioOut { unBiblio
, isi_out = BIBL_ISIOUT
, word2007_out = BIBL_WORD2007OUT
, adsab_out = BIBL_ADSABSOUT
- , nbib_out = BIBL_NBIBOUT
}
newtype FormatOpt = FormatOpt { unFormatOpt :: CInt }
fix_cabal.patch
bibutils-include-path
patch-to-build-with-ghc-8.4.patch
patch-to-build-with-bibutils-6.2.patch
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 <iliastsi@debian.org> Fri, 12 Oct 2018 16:33:14 +0300
haskell-vector (0.12.0.1-6) unstable; urgency=medium
[ Clint Adams ]
......
#!/usr/bin/make -f
ifeq (,$(filter $(DEB_BUILD_ARCH),mips mipsel mips64el armel armhf))
ifeq (,$(filter $(DEB_BUILD_ARCH),mips mipsel mips64el armel armhf i386 riscv64 alpha hurd-i386 x32))
DEB_ENABLE_TESTS = yes
else
# Tests on i386, riscv64, alpha, hurd-i386 and x32 currently 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
......