Commit 10af8042 authored by Clint Adams's avatar Clint Adams
Browse files

config-schema: patch for newer build dependencies

parent 6a0a8696
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
haskell-config-schema (0.5.0.1-4) unstable; urgency=medium

  * Patch for newer build dependencies.

 -- Clint Adams <clint@debian.org>  Sun, 21 Oct 2018 20:16:55 -0400

haskell-config-schema (0.5.0.1-3) unstable; urgency=medium

  * Remove build dependency on libghc-text-dev (provided by ghc-8.4.3)
+6 −8
Original line number Diff line number Diff line
@@ -11,25 +11,23 @@ Build-Depends: debhelper (>= 10),
 ghc-prof,
 libghc-config-value-dev (>= 0.6),
 libghc-config-value-dev (<< 0.7),
 libghc-config-value-prof (>= 0.6),
 libghc-config-value-prof (<< 0.7),
 libghc-config-value-prof,
 libghc-free-dev (>= 4.12),
 libghc-free-dev (<< 5.1),
 libghc-free-dev (<< 5.2),
 libghc-free-prof,
 libghc-kan-extensions-dev (>= 5.0.2),
 libghc-kan-extensions-dev (<< 5.2),
 libghc-kan-extensions-dev (<< 5.3),
 libghc-kan-extensions-prof,
 libghc-semigroupoids-dev (>= 5.1),
 libghc-semigroupoids-dev (<< 5.3),
 libghc-semigroupoids-prof (>= 5.1),
 libghc-semigroupoids-prof (<< 5.3),
 libghc-semigroupoids-dev (<< 5.4),
 libghc-semigroupoids-prof,
 libghc-config-value-dev,
Build-Depends-Indep: ghc-doc,
 libghc-config-value-doc,
 libghc-free-doc,
 libghc-kan-extensions-doc,
 libghc-semigroupoids-doc,
Standards-Version: 4.1.4
Standards-Version: 4.2.1
Homepage: https://github.com/glguy/config-schema
X-Description: schema definitions for the config-value package
 This package makes it possible to defined schemas for use when
+21 −0
Original line number Diff line number Diff line
--- a/config-schema.cabal
+++ b/config-schema.cabal
@@ -25,13 +25,13 @@
 
 library
   exposed-modules:      Config.Schema, Config.Schema.Docs, Config.Schema.Load, Config.Schema.Spec
-  build-depends:        base           >=4.8   && <4.12,
+  build-depends:        base           >=4.8   && <4.13,
                         config-value   >=0.6   && <0.7,
-                        containers     >=0.5   && <0.6,
-                        free           >=4.12  && <5.1,
-                        kan-extensions >=5.0.2 && <5.2,
+                        containers     >=0.5   && <0.7,
+                        free           >=4.12  && <5.2,
+                        kan-extensions >=5.0.2 && <5.3,
                         pretty         >=1.1.2 && <1.2,
-                        semigroupoids  >=5.1   && <5.3,
+                        semigroupoids  >=5.1   && <5.4,
                         text           >=1.2   && <1.3,
                         transformers   >=0.4   && <0.6
 
+1 −0
Original line number Diff line number Diff line
newer-deps