Skip to content
Commits on Source (3)
haskell-vector-binary-instances (0.2.4-3) unstable; urgency=medium
* Newer build-deps from hackage
-- Ilias Tsitsimpis <iliastsi@debian.org> Sun, 14 Oct 2018 00:47:21 +0300
haskell-vector-binary-instances (0.2.4-2) unstable; urgency=medium
[ Clint Adams ]
......
Index: b/vector-binary-instances.cabal
===================================================================
--- a/vector-binary-instances.cabal
+++ b/vector-binary-instances.cabal
@@ -50,7 +50,7 @@ Library
-- Packages needed in order to build this package.
Build-depends:
- base > 3 && < 4.11,
+ base > 3 && < 4.12,
vector >= 0.6 && < 0.13,
binary >= 0.5 && < 0.10
haskell-vector-space-points (0.2.1.2-6) unstable; urgency=medium
* Newer build-deps from hackage
-- Ilias Tsitsimpis <iliastsi@debian.org> Sun, 14 Oct 2018 00:51:05 +0300
haskell-vector-space-points (0.2.1.2-5) unstable; urgency=medium
[ Clint Adams ]
......
From a627b4413773b33fe5db31717c85c67bfee95cac Mon Sep 17 00:00:00 2001
From: Brent Yorgey <byorgey@gmail.com>
Date: Wed, 25 Oct 2017 11:55:27 -0500
Subject: [PATCH] allow vector-space-0.12
---
vector-space-points.cabal | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vector-space-points.cabal b/vector-space-points.cabal
index 9ce2504..b07e5fe 100644
--- a/vector-space-points.cabal
+++ b/vector-space-points.cabal
@@ -19,6 +19,6 @@ source-repository head
library
exposed-modules: Data.AffineSpace.Point
build-depends: base >=4.0 && < 4.11,
- vector-space >=0.7 && < 0.12
+ vector-space >=0.7 && < 0.13
hs-source-dirs: src
default-language: Haskell2010
From d87a4166c778fa4b3410d8f9838b34668bc1684c Mon Sep 17 00:00:00 2001
From: Brent Yorgey <byorgey@gmail.com>
Date: Mon, 19 Feb 2018 07:11:31 -0600
Subject: [PATCH] allow vector-space-0.13
---
vector-space-points.cabal | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vector-space-points.cabal b/vector-space-points.cabal
index b07e5fe..f2f399f 100644
--- a/vector-space-points.cabal
+++ b/vector-space-points.cabal
@@ -19,6 +19,6 @@ source-repository head
library
exposed-modules: Data.AffineSpace.Point
build-depends: base >=4.0 && < 4.11,
- vector-space >=0.7 && < 0.13
+ vector-space >=0.7 && < 0.14
hs-source-dirs: src
default-language: Haskell2010
From d862832824aa4f69615c24c27cb0c16246cc5503 Mon Sep 17 00:00:00 2001
From: Brent Yorgey <byorgey@gmail.com>
Date: Tue, 8 Aug 2017 15:28:23 -0500
Subject: [PATCH] allow base-4.10 and vector-space-0.11
---
vector-space-points.cabal | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/vector-space-points.cabal b/vector-space-points.cabal
index 10cd74d..9ce2504 100644
Index: b/vector-space-points.cabal
===================================================================
--- a/vector-space-points.cabal
+++ b/vector-space-points.cabal
@@ -18,7 +18,7 @@ source-repository head
......@@ -17,7 +8,7 @@ index 10cd74d..9ce2504 100644
exposed-modules: Data.AffineSpace.Point
- build-depends: base >=4.0 && < 4.10,
- vector-space >=0.7 && < 0.11
+ build-depends: base >=4.0 && < 4.11,
+ vector-space >=0.7 && < 0.12
+ build-depends: base >=4.0 && < 4.12,
+ vector-space >=0.7 && < 0.14
hs-source-dirs: src
default-language: Haskell2010
d862832824aa4f69615c24c27cb0c16246cc5503.patch
a627b4413773b33fe5db31717c85c67bfee95cac.patch
d87a4166c778fa4b3410d8f9838b34668bc1684c.patch
newer-deps
haskell-vector (0.12.0.1-8) unstable; urgency=medium
* Disable tests on all architectures due to a GHC bug
-- Ilias Tsitsimpis <iliastsi@debian.org> 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
......
#!/usr/bin/make -f
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.
# 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