diff options
author | Ilias Tsitsimpis <i.tsitsimpis@gmail.com> | 2016-06-09 14:59:15 +0300 |
---|---|---|
committer | Ilias Tsitsimpis <i.tsitsimpis@gmail.com> | 2016-06-09 15:02:15 +0300 |
commit | 4c1d8385920bb94ffa0d4defd75c922f52edb6a8 (patch) | |
tree | 0f42a2e53e8bca4e78366d062e2847ee80ec4b47 | |
parent | 639f4aa3eb060ce6191bd8781f7a82a775a61542 (diff) | |
download | DHG_packages-4c1d8385920bb94ffa0d4defd75c922f52edb6a8.tar.gz |
adjunctions: requires distributive >= 0.5
-rw-r--r-- | p/haskell-adjunctions/debian/changelog | 7 | ||||
-rw-r--r-- | p/haskell-adjunctions/debian/control | 2 | ||||
-rw-r--r-- | p/haskell-adjunctions/debian/patches/fix-distributive-version | 19 | ||||
-rw-r--r-- | p/haskell-adjunctions/debian/patches/series | 1 |
4 files changed, 28 insertions, 1 deletions
diff --git a/p/haskell-adjunctions/debian/changelog b/p/haskell-adjunctions/debian/changelog index 2ff7451ba..58f8b571c 100644 --- a/p/haskell-adjunctions/debian/changelog +++ b/p/haskell-adjunctions/debian/changelog @@ -1,3 +1,10 @@ +haskell-adjunctions (4.3-2) unstable; urgency=medium + + * Add patch 'fix-distributive-version'. + This package needs distributive-0.5 or later to build properly. + + -- Ilias Tsitsimpis <i.tsitsimpis@gmail.com> Thu, 09 Jun 2016 14:51:33 +0300 + haskell-adjunctions (4.3-1) unstable; urgency=medium [ Dmitry Bogatov ] diff --git a/p/haskell-adjunctions/debian/control b/p/haskell-adjunctions/debian/control index efd0c3f23..23e5ac354 100644 --- a/p/haskell-adjunctions/debian/control +++ b/p/haskell-adjunctions/debian/control @@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 9), libghc-contravariant-dev (>= 1), libghc-contravariant-dev (<< 2), libghc-contravariant-prof, - libghc-distributive-dev (>= 0.4), + libghc-distributive-dev (>= 0.5), libghc-distributive-dev (<< 1), libghc-distributive-prof, libghc-free-dev (>= 4), diff --git a/p/haskell-adjunctions/debian/patches/fix-distributive-version b/p/haskell-adjunctions/debian/patches/fix-distributive-version new file mode 100644 index 000000000..365726581 --- /dev/null +++ b/p/haskell-adjunctions/debian/patches/fix-distributive-version @@ -0,0 +1,19 @@ +Description: adjunctions requires distributive >= 0.5 +Author: RyanGlScott <ryan.gl.scott@gmail.com> +Origin: upstream, https://github.com/ekmett/adjunctions/commit/821f49863912 +Bug: https://github.com/ekmett/adjunctions/issues/20 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: b/adjunctions.cabal +=================================================================== +--- a/adjunctions.cabal ++++ b/adjunctions.cabal +@@ -45,7 +45,7 @@ library + comonad >= 4 && < 6, + containers >= 0.3 && < 0.6, + contravariant >= 1 && < 2, +- distributive >= 0.4 && < 1, ++ distributive >= 0.5 && < 1, + free >= 4 && < 5, + mtl >= 2.0.1 && < 2.3, + profunctors >= 4 && < 6, diff --git a/p/haskell-adjunctions/debian/patches/series b/p/haskell-adjunctions/debian/patches/series new file mode 100644 index 000000000..896d21c92 --- /dev/null +++ b/p/haskell-adjunctions/debian/patches/series @@ -0,0 +1 @@ +fix-distributive-version |