diff -Nru haskell-http-link-header-1.0.3/debian/changelog haskell-http-link-header-1.0.3.1/debian/changelog --- haskell-http-link-header-1.0.3/debian/changelog 2018-07-04 13:56:09.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/debian/changelog 2018-10-01 10:47:34.000000000 +0000 @@ -1,8 +1,15 @@ -haskell-http-link-header (1.0.3-7build1) cosmic; urgency=medium +haskell-http-link-header (1.0.3.1-2) unstable; urgency=medium - * Rebuild against new GHC ABI. + * Remove build dependency on libghc-text-dev (provided by ghc-8.4.3) - -- Gianfranco Costamagna Wed, 04 Jul 2018 15:56:09 +0200 + -- Ilias Tsitsimpis Mon, 01 Oct 2018 13:47:34 +0300 + +haskell-http-link-header (1.0.3.1-1) unstable; urgency=medium + + * Bump debhelper compat level to 10 + * New upstream release + + -- Ilias Tsitsimpis Sat, 29 Sep 2018 20:48:13 +0300 haskell-http-link-header (1.0.3-7) unstable; urgency=medium diff -Nru haskell-http-link-header-1.0.3/debian/compat haskell-http-link-header-1.0.3.1/debian/compat --- haskell-http-link-header-1.0.3/debian/compat 2018-01-07 22:54:27.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/debian/compat 2018-09-29 17:48:13.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru haskell-http-link-header-1.0.3/debian/control haskell-http-link-header-1.0.3.1/debian/control --- haskell-http-link-header-1.0.3/debian/control 2018-05-30 22:42:27.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/debian/control 2018-10-01 10:47:34.000000000 +0000 @@ -6,8 +6,8 @@ Build-Depends: cabal-install (>= 2), cdbs, - debhelper (>= 9), - ghc (>= 8), + debhelper (>= 10), + ghc (>= 8.4.3), ghc-prof, haskell-devscripts (>= 0.13), libghc-attoparsec-dev, @@ -23,8 +23,6 @@ libghc-network-uri-dev, libghc-network-uri-prof, libghc-quickcheck2-dev, - libghc-text-dev, - libghc-text-prof, Build-Depends-Indep: ghc-doc, libghc-attoparsec-doc, @@ -32,11 +30,10 @@ libghc-errors-doc, libghc-http-api-data-doc, libghc-network-uri-doc, - libghc-text-doc, Standards-Version: 4.1.4 Homepage: https://github.com/myfreeweb/http-link-header Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-http-link-header -Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git +Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-http-link-header] X-Description: parser/writer for RFC 5988's HTTP Link header Library for parsing and writing the HTTP Link header as specified in RFC 5988 "Web Linking". diff -Nru haskell-http-link-header-1.0.3/debian/patches/59c4bf5c8b2cffb7b293bbc034310914a6c3bd20.patch haskell-http-link-header-1.0.3.1/debian/patches/59c4bf5c8b2cffb7b293bbc034310914a6c3bd20.patch --- haskell-http-link-header-1.0.3/debian/patches/59c4bf5c8b2cffb7b293bbc034310914a6c3bd20.patch 2018-01-07 22:54:27.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/debian/patches/59c4bf5c8b2cffb7b293bbc034310914a6c3bd20.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -From 59c4bf5c8b2cffb7b293bbc034310914a6c3bd20 Mon Sep 17 00:00:00 2001 -From: Greg V -Date: Wed, 26 Apr 2017 16:18:37 +0300 -Subject: [PATCH] fix #5 - ---- - stack.yaml | 2 +- - test-suite/Network/HTTP/LinkSpec.hs | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -diff --git a/test-suite/Network/HTTP/LinkSpec.hs b/test-suite/Network/HTTP/LinkSpec.hs -index f7cad35..9c98733 100644 ---- a/test-suite/Network/HTTP/LinkSpec.hs -+++ b/test-suite/Network/HTTP/LinkSpec.hs -@@ -21,7 +21,8 @@ instance Arbitrary Link where - params ← listOf genParam - return $ fromJust $ lnk (mconcat [urlScheme, urlDomain, ".", urlTld, "/", urlPath]) params - where genParam = do -- otherParamKey ← listOf1 $ elements ['a'..'z'] -+ otherParamKey ← suchThat (listOf1 $ elements ['a'..'z']) (\x → x /= "rel" && x /= "rev" && x /= "title" -+ && x /= "title*" && x /= "hreflang" && x /= "anchor" && x /= "media" && x /= "type") - paramKey ← elements [Rel, Rev, Title, Hreflang, Anchor, Media, ContentType, Other (T.pack otherParamKey)] - paramValue ← listOf $ elements ['a'..'z'] - return (paramKey, T.pack paramValue) diff -Nru haskell-http-link-header-1.0.3/debian/patches/series haskell-http-link-header-1.0.3.1/debian/patches/series --- haskell-http-link-header-1.0.3/debian/patches/series 2018-01-07 22:54:27.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -59c4bf5c8b2cffb7b293bbc034310914a6c3bd20.patch diff -Nru haskell-http-link-header-1.0.3/http-link-header.cabal haskell-http-link-header-1.0.3.1/http-link-header.cabal --- haskell-http-link-header-1.0.3/http-link-header.cabal 2016-11-14 11:27:58.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/http-link-header.cabal 2018-07-30 18:41:25.000000000 +0000 @@ -1,11 +1,11 @@ name: http-link-header -version: 1.0.3 +version: 1.0.3.1 synopsis: A parser and writer for the HTTP Link header as specified in RFC 5988 "Web Linking". description: https://github.com/myfreeweb/http-link-header category: Web homepage: https://github.com/myfreeweb/http-link-header author: Greg V -copyright: 2014-2016 Greg V +copyright: 2014-2018 Greg V maintainer: greg@unrelenting.technology license: PublicDomain license-file: UNLICENSE @@ -14,7 +14,7 @@ extra-source-files: README.md tested-with: - GHC == 8.0.1 + GHC == 8.4.3 source-repository head type: git @@ -48,7 +48,7 @@ , QuickCheck , hspec-attoparsec default-language: Haskell2010 - ghc-options: -threaded -fhpc -Wall + ghc-options: -threaded -Wall hs-source-dirs: test-suite main-is: Spec.hs other-modules: diff -Nru haskell-http-link-header-1.0.3/test-suite/Network/HTTP/LinkSpec.hs haskell-http-link-header-1.0.3.1/test-suite/Network/HTTP/LinkSpec.hs --- haskell-http-link-header-1.0.3/test-suite/Network/HTTP/LinkSpec.hs 2015-12-27 19:29:33.000000000 +0000 +++ haskell-http-link-header-1.0.3.1/test-suite/Network/HTTP/LinkSpec.hs 2018-07-30 18:39:12.000000000 +0000 @@ -21,7 +21,8 @@ params ← listOf genParam return $ fromJust $ lnk (mconcat [urlScheme, urlDomain, ".", urlTld, "/", urlPath]) params where genParam = do - otherParamKey ← listOf1 $ elements ['a'..'z'] + otherParamKey ← suchThat (listOf1 $ elements ['a'..'z']) (\x → x /= "rel" && x /= "rev" && x /= "title" + && x /= "title*" && x /= "hreflang" && x /= "anchor" && x /= "media" && x /= "type") paramKey ← elements [Rel, Rev, Title, Hreflang, Anchor, Media, ContentType, Other (T.pack otherParamKey)] paramValue ← listOf $ elements ['a'..'z'] return (paramKey, T.pack paramValue)