summaryrefslogtreecommitdiff
path: root/p/haskell-async
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2012-10-21 17:48:13 +0400
committerJoachim Breitner <mail@joachim-breitner.de>2012-10-21 17:48:13 +0400
commit766f2d919720053685bdc2c831fe35ce9b6e75a8 (patch)
tree77899a30d860c8a4827fa1598faf9a3528e4bbee /p/haskell-async
parent9360b84b0d268925143121ff4cf755f100fb3d55 (diff)
downloadDHG_packages-766f2d919720053685bdc2c831fe35ce9b6e75a8.tar.gz
haskell-async: Patch: update base dependency of the test suite
Diffstat (limited to 'p/haskell-async')
-rw-r--r--p/haskell-async/debian/changelog1
-rw-r--r--p/haskell-async/debian/patches/series1
-rw-r--r--p/haskell-async/debian/patches/testsuite-base-dep15
3 files changed, 17 insertions, 0 deletions
diff --git a/p/haskell-async/debian/changelog b/p/haskell-async/debian/changelog
index 3727e67aa..8b38fe451 100644
--- a/p/haskell-async/debian/changelog
+++ b/p/haskell-async/debian/changelog
@@ -2,6 +2,7 @@ haskell-async (2.0.1.3-2) UNRELEASED; urgency=low
* Depend on haskell-devscripts 0.8.13 to ensure this packages is built
against experimental
+ * Patch: update base dependency of the test suite
-- Joachim Breitner <nomeata@debian.org> Sun, 21 Oct 2012 15:40:02 +0200
diff --git a/p/haskell-async/debian/patches/series b/p/haskell-async/debian/patches/series
new file mode 100644
index 000000000..9c940c110
--- /dev/null
+++ b/p/haskell-async/debian/patches/series
@@ -0,0 +1 @@
+testsuite-base-dep
diff --git a/p/haskell-async/debian/patches/testsuite-base-dep b/p/haskell-async/debian/patches/testsuite-base-dep
new file mode 100644
index 000000000..95c781cbd
--- /dev/null
+++ b/p/haskell-async/debian/patches/testsuite-base-dep
@@ -0,0 +1,15 @@
+Description: Fix dependency on base of the test suite
+Author: Joachim Breitner <nomeata@debian.org>
+Forwarded: https://github.com/simonmar/async/pull/4
+
+--- haskell-async-2.0.1.3.orig/async.cabal
++++ haskell-async-2.0.1.3/async.cabal
+@@ -72,7 +72,7 @@ test-suite test-async
+ type: exitcode-stdio-1.0
+ hs-source-dirs: test
+ main-is: test-async.hs
+- build-depends: base >= 4.3 && < 4.6,
++ build-depends: base >= 4.3 && < 4.7,
+ async,
+ test-framework,
+ test-framework-hunit,