summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--p/haskell-hunit/debian/changelog6
-rw-r--r--p/haskell-hunit/debian/control3
-rw-r--r--p/haskell-hunit/debian/patches/broken_links.patch46
-rw-r--r--p/haskell-hunit/debian/patches/series1
4 files changed, 9 insertions, 47 deletions
diff --git a/p/haskell-hunit/debian/changelog b/p/haskell-hunit/debian/changelog
index 7dfa98b29..4a1856509 100644
--- a/p/haskell-hunit/debian/changelog
+++ b/p/haskell-hunit/debian/changelog
@@ -1,3 +1,9 @@
+haskell-hunit (1.5.0.0-1) unstable; urgency=medium
+
+ * New upstream release
+
+ -- Clint Adams <clint@debian.org> Thu, 06 Jul 2017 17:16:28 -0400
+
haskell-hunit (1.3.1.2-3) unstable; urgency=medium
* Upload to unstable as part of GHC 8 transition.
diff --git a/p/haskell-hunit/debian/control b/p/haskell-hunit/debian/control
index bf0e3a033..76c5b3825 100644
--- a/p/haskell-hunit/debian/control
+++ b/p/haskell-hunit/debian/control
@@ -8,7 +8,10 @@ Build-Depends: debhelper (>= 9),
cdbs,
ghc (>= 8),
ghc-prof,
+ libghc-call-stack-dev,
+ libghc-call-stack-prof,
Build-Depends-Indep: ghc-doc,
+ libghc-call-stack-doc,
Standards-Version: 3.9.8
Homepage: https://github.com/hspec/HUnit#readme
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-hunit
diff --git a/p/haskell-hunit/debian/patches/broken_links.patch b/p/haskell-hunit/debian/patches/broken_links.patch
deleted file mode 100644
index 83775d467..000000000
--- a/p/haskell-hunit/debian/patches/broken_links.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-# Description: Correct broken links in documentation
-# Some " were left without a quote in the documentation. This patch only
-# changes them to \".
-# Bug: http://sourceforge.net/tracker/?func=detail&aid=2955563&group_id=46796&atid=447396
-# Forwarded: http://sourceforge.net/tracker/download.php?group_id=46796&atid=447396&file_id=363731&aid=2955563
-# Author: Marco TĂșlio Gontijo e Silva <marcot@debian.org>
-# Last-Update: 2010-02-20
---- a/Test/HUnit.hs
-+++ b/Test/HUnit.hs
-@@ -12,17 +12,17 @@
- -- Define test cases as appropriate:
- --
- -- @
---- test1 = TestCase (assertEqual "for (foo 3)," (1,2) (foo 3))
-+-- test1 = TestCase (assertEqual \"for (foo 3),\" (1,2) (foo 3))
- -- test2 = TestCase (do (x,y) <- partA 3
---- assertEqual "for the first result of partA," 5 x
-+-- assertEqual \"for the first result of partA,\" 5 x
- -- b <- partB y
---- assertBool ("(partB " ++ show y ++ ") failed") b)
-+-- assertBool (\"(partB \" ++ show y ++ \") failed\") b)
- -- @
- --
- -- Name the test cases and group them together:
- --
- -- @
---- tests = TestList [TestLabel "test1" test1, TestLabel "test2" test2]
-+-- tests = TestList [TestLabel \"test1\" test1, TestLabel \"test2\" test2]
- -- @
- --
- -- Run the tests as a group. At a Haskell interpreter prompt, apply the function
-@@ -51,10 +51,10 @@
- -- functions that HUnit provides:
- --
- -- @
---- tests = test [ "test1" ~: "(foo 3)" ~: (1,2) ~=? (foo 3),
---- "test2" ~: do (x, y) <- partA 3
---- assertEqual "for the first result of partA," 5 x
---- partB y \@? "(partB " ++ show y ++ ") failed" ]
-+-- tests = test [ \"test1\" ~: \"(foo 3)\" ~: (1,2) ~=? (foo 3),
-+-- \"test2\" ~: do (x, y) <- partA 3
-+-- assertEqual \"for the first result of partA,\" 5 x
-+-- partB y \@? \"(partB \" ++ show y ++ \") failed\" ]
- -- @
- --
- -- Assuming the same test failures as before, you would see:
diff --git a/p/haskell-hunit/debian/patches/series b/p/haskell-hunit/debian/patches/series
deleted file mode 100644
index 08898b76f..000000000
--- a/p/haskell-hunit/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-broken_links.patch