Loading p/haskell-binary-orphans/debian/changelog +6 −0 Original line number Diff line number Diff line haskell-binary-orphans (0.1.8.0-6) unstable; urgency=medium * Newer build-deps from hackage -- Ilias Tsitsimpis <iliastsi@debian.org> Sun, 21 Oct 2018 21:21:36 +0300 haskell-binary-orphans (0.1.8.0-5) unstable; urgency=medium * Remove build dependency on libghc-text-dev (provided by ghc-8.4.3) Loading p/haskell-binary-orphans/debian/control +5 −5 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ Build-Depends: ghc-prof, haskell-devscripts (>= 0.13), libghc-aeson-dev (>= 0.7.0.6), libghc-aeson-dev (<< 1.4), libghc-aeson-dev (<< 1.5), libghc-aeson-prof, libghc-case-insensitive-dev (<< 1.2.1), libghc-case-insensitive-dev (>= 1.2.0.4), Loading @@ -24,10 +24,10 @@ Build-Depends: libghc-scientific-dev (>= 0.3.3.8), libghc-scientific-prof, libghc-semigroups-dev (>= 0.16.2.2), libghc-semigroups-dev (<< 0.18.5), libghc-semigroups-dev (<< 0.18.6), libghc-semigroups-prof, libghc-tagged-dev (>= 0.7.3), libghc-tagged-dev (<< 0.8.6), libghc-tagged-dev (<< 0.8.7), libghc-tagged-prof, libghc-text-binary-dev (<< 0.3), libghc-text-binary-dev (>= 0.1.0), Loading @@ -42,11 +42,11 @@ Build-Depends: libghc-vector-binary-instances-dev (>= 0.2.1.0), libghc-vector-binary-instances-prof, libghc-quickcheck2-dev (>= 2.10), libghc-quickcheck2-dev (<< 2.12), libghc-quickcheck2-dev (<< 2.13), libghc-quickcheck-instances-dev (>= 0.3.16), libghc-quickcheck-instances-dev (<< 0.4), libghc-tasty-dev (>= 0.10.1.2), libghc-tasty-dev (<< 1.1), libghc-tasty-dev (<< 1.2), libghc-tasty-quickcheck-dev (>= 0.8.3.2), libghc-tasty-quickcheck-dev (<< 0.11), Build-Depends-Indep: ghc-doc, Loading p/haskell-binary-orphans/debian/patches/newer-deps +42 −11 Original line number Diff line number Diff line Index: b/binary-orphans.cabal =================================================================== --- a/binary-orphans.cabal +++ b/binary-orphans.cabal @@ -26,8 +26,8 @@ @@ -9,9 +9,16 @@ author: Oleg Grenrus <oleg.grenr maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> license: BSD3 license-file: LICENSE -tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1 build-type: Simple cabal-version: >= 1.10 +tested-with: + GHC==7.6.3, + GHC==7.8.4, + GHC==7.10.3, + GHC==8.0.2, + GHC==8.2.2, + GHC==8.4.3, + GHC==8.6.1 extra-source-files: CHANGELOG.md @@ -26,13 +33,13 @@ library src ghc-options: -Wall -fno-warn-orphans build-depends: - base >=4.6.0.1 && <4.11 - , aeson >=0.7.0.6 && <1.3 + base >=4.6.0.1 && <4.12 + , aeson >=0.7.0.6 && <1.4 , binary >=0.5.1.1 && <0.8.6 || ==0.9.0.0 - , binary >=0.5.1.1 && <0.8.6 || ==0.9.0.0 + base >=4.6.0.1 && <4.13 + , aeson >=0.7.0.6 && <1.5 + , binary >=0.5.1.1 && <0.8.7 || ==0.9.0.0 || ==0.10.0.0 , case-insensitive >=1.2.0.4 && <1.2.1 , hashable >=1.2.3.3 && <1.3 @@ -41,7 +41,7 @@ , scientific >=0.3.3.8 && <0.4 - , tagged >=0.7.3 && <0.8.6 + , tagged >=0.7.3 && <0.8.7 , text >=1.2.0.6 && <1.3 , time >=1.4.0.1 && <1.9 , unordered-containers >=0.2.5.1 && <0.3 @@ -41,7 +48,7 @@ library , vector-binary-instances >=0.2.1.0 && <0.3 if !impl(ghc >= 8.0) build-depends: - semigroups >=0.16.2.2 && <0.18.4 + semigroups >=0.16.2.2 && <0.18.5 + semigroups >=0.16.2.2 && <0.18.6 if !impl(ghc >= 7.10) build-depends: void >=0.7 && <0.8 @@ -69,13 +69,13 @@ @@ -69,15 +76,15 @@ test-suite binary-orphans-test , unordered-containers , vector , binary-orphans - , QuickCheck >=2.10 && <2.11 + , QuickCheck >=2.10 && <2.12 + , QuickCheck >=2.10 && <2.13 , quickcheck-instances >=0.3.16 && <0.4 - , tasty >=0.10.1.2 && <0.12 - , tasty-quickcheck >=0.8.3.2 && <0.10 + , tasty >=0.10.1.2 && <1.1 + , tasty >=0.10.1.2 && <1.2 + , tasty-quickcheck >=0.8.3.2 && <0.11 if !impl(ghc >= 8.0) build-depends: - semigroups >=0.16.2.2 && <0.18.3 + semigroups >=0.16.2.2 && <0.18.5 + semigroups if !impl(ghc >= 7.10) build-depends: void >=0.7 && <0.8 - void >=0.7 && <0.8 - , nats >=1 && <1.2 + void + , nats default-language: Haskell2010 Loading
p/haskell-binary-orphans/debian/changelog +6 −0 Original line number Diff line number Diff line haskell-binary-orphans (0.1.8.0-6) unstable; urgency=medium * Newer build-deps from hackage -- Ilias Tsitsimpis <iliastsi@debian.org> Sun, 21 Oct 2018 21:21:36 +0300 haskell-binary-orphans (0.1.8.0-5) unstable; urgency=medium * Remove build dependency on libghc-text-dev (provided by ghc-8.4.3) Loading
p/haskell-binary-orphans/debian/control +5 −5 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ Build-Depends: ghc-prof, haskell-devscripts (>= 0.13), libghc-aeson-dev (>= 0.7.0.6), libghc-aeson-dev (<< 1.4), libghc-aeson-dev (<< 1.5), libghc-aeson-prof, libghc-case-insensitive-dev (<< 1.2.1), libghc-case-insensitive-dev (>= 1.2.0.4), Loading @@ -24,10 +24,10 @@ Build-Depends: libghc-scientific-dev (>= 0.3.3.8), libghc-scientific-prof, libghc-semigroups-dev (>= 0.16.2.2), libghc-semigroups-dev (<< 0.18.5), libghc-semigroups-dev (<< 0.18.6), libghc-semigroups-prof, libghc-tagged-dev (>= 0.7.3), libghc-tagged-dev (<< 0.8.6), libghc-tagged-dev (<< 0.8.7), libghc-tagged-prof, libghc-text-binary-dev (<< 0.3), libghc-text-binary-dev (>= 0.1.0), Loading @@ -42,11 +42,11 @@ Build-Depends: libghc-vector-binary-instances-dev (>= 0.2.1.0), libghc-vector-binary-instances-prof, libghc-quickcheck2-dev (>= 2.10), libghc-quickcheck2-dev (<< 2.12), libghc-quickcheck2-dev (<< 2.13), libghc-quickcheck-instances-dev (>= 0.3.16), libghc-quickcheck-instances-dev (<< 0.4), libghc-tasty-dev (>= 0.10.1.2), libghc-tasty-dev (<< 1.1), libghc-tasty-dev (<< 1.2), libghc-tasty-quickcheck-dev (>= 0.8.3.2), libghc-tasty-quickcheck-dev (<< 0.11), Build-Depends-Indep: ghc-doc, Loading
p/haskell-binary-orphans/debian/patches/newer-deps +42 −11 Original line number Diff line number Diff line Index: b/binary-orphans.cabal =================================================================== --- a/binary-orphans.cabal +++ b/binary-orphans.cabal @@ -26,8 +26,8 @@ @@ -9,9 +9,16 @@ author: Oleg Grenrus <oleg.grenr maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> license: BSD3 license-file: LICENSE -tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1 build-type: Simple cabal-version: >= 1.10 +tested-with: + GHC==7.6.3, + GHC==7.8.4, + GHC==7.10.3, + GHC==8.0.2, + GHC==8.2.2, + GHC==8.4.3, + GHC==8.6.1 extra-source-files: CHANGELOG.md @@ -26,13 +33,13 @@ library src ghc-options: -Wall -fno-warn-orphans build-depends: - base >=4.6.0.1 && <4.11 - , aeson >=0.7.0.6 && <1.3 + base >=4.6.0.1 && <4.12 + , aeson >=0.7.0.6 && <1.4 , binary >=0.5.1.1 && <0.8.6 || ==0.9.0.0 - , binary >=0.5.1.1 && <0.8.6 || ==0.9.0.0 + base >=4.6.0.1 && <4.13 + , aeson >=0.7.0.6 && <1.5 + , binary >=0.5.1.1 && <0.8.7 || ==0.9.0.0 || ==0.10.0.0 , case-insensitive >=1.2.0.4 && <1.2.1 , hashable >=1.2.3.3 && <1.3 @@ -41,7 +41,7 @@ , scientific >=0.3.3.8 && <0.4 - , tagged >=0.7.3 && <0.8.6 + , tagged >=0.7.3 && <0.8.7 , text >=1.2.0.6 && <1.3 , time >=1.4.0.1 && <1.9 , unordered-containers >=0.2.5.1 && <0.3 @@ -41,7 +48,7 @@ library , vector-binary-instances >=0.2.1.0 && <0.3 if !impl(ghc >= 8.0) build-depends: - semigroups >=0.16.2.2 && <0.18.4 + semigroups >=0.16.2.2 && <0.18.5 + semigroups >=0.16.2.2 && <0.18.6 if !impl(ghc >= 7.10) build-depends: void >=0.7 && <0.8 @@ -69,13 +69,13 @@ @@ -69,15 +76,15 @@ test-suite binary-orphans-test , unordered-containers , vector , binary-orphans - , QuickCheck >=2.10 && <2.11 + , QuickCheck >=2.10 && <2.12 + , QuickCheck >=2.10 && <2.13 , quickcheck-instances >=0.3.16 && <0.4 - , tasty >=0.10.1.2 && <0.12 - , tasty-quickcheck >=0.8.3.2 && <0.10 + , tasty >=0.10.1.2 && <1.1 + , tasty >=0.10.1.2 && <1.2 + , tasty-quickcheck >=0.8.3.2 && <0.11 if !impl(ghc >= 8.0) build-depends: - semigroups >=0.16.2.2 && <0.18.3 + semigroups >=0.16.2.2 && <0.18.5 + semigroups if !impl(ghc >= 7.10) build-depends: void >=0.7 && <0.8 - void >=0.7 && <0.8 - , nats >=1 && <1.2 + void + , nats default-language: Haskell2010