Commit 6c384639 authored by Clint Adams's avatar Clint Adams
Browse files

add gi-cairo

parent 6b2eb2fe
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-gi-cairo (1.0.17-1) unstable; urgency=low

  * Initial release.

 -- Clint Adams <clint@debian.org>  Wed, 26 Dec 2018 16:17:20 -0500
+1 −0
Original line number Diff line number Diff line
10
+68 −0
Original line number Diff line number Diff line
Source: haskell-gi-cairo
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 10),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
 cdbs,
 ghc,
 ghc-prof,
 libghc-haskell-gi-dev (>= 0.21.1),
 libghc-haskell-gi-dev (<< 0.22),
 libghc-haskell-gi-prof (>= 0.21.1),
 libghc-haskell-gi-prof (<< 0.22),
 libghc-haskell-gi-base-dev (>= 0.21),
 libghc-haskell-gi-base-dev (<< 0.22),
 libghc-haskell-gi-base-prof (>= 0.21),
 libghc-haskell-gi-base-prof (<< 0.22),
 pkg-config,
 libcairo2-dev,
Build-Depends-Indep: ghc-doc,
 libghc-haskell-gi-doc,
 libghc-haskell-gi-base-doc,
Standards-Version: 4.3.0
Homepage: https://github.com/haskell-gi/haskell-gi
X-Description: Cairo bindings
 Bindings for Cairo, autogenerated by haskell-gi.

Package: libghc-gi-cairo-dev
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
 ${shlibs:Depends},
 libcairo2-dev,
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-gi-cairo-prof
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-gi-cairo-doc
Architecture: all
Section: doc
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}
+15 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: gi-cairo
Upstream-Contact: Iñaki García Etxebarria (garetxe@gmail.com)
Source: https://hackage.haskell.org/package/gi-cairo

Files: *
Copyright: Will Thompson, Iñaki García Etxebarria and Jonas Platte
License: LGPL-2.1+

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: LGPL-2.1+

License: LGPL-2.1+
 See /usr/share/common-licenses/LGPL-2.1 on your Debian-based system.
+16 −0
Original line number Diff line number Diff line
--- a/gi-cairo.cabal
+++ b/gi-cairo.cabal
@@ -28,13 +28,7 @@
       build-depends: base >= 4.7 && <5,
                      haskell-gi-base == 0.21.*,
                      haskell-gi >= 0.21.1 && < 0.22,
-                     haskell-gi-overloading < 1.1,
                      bytestring >= 0.10 && < 1,
                      containers >= 0.5 && < 1,
                      text >= 1.0 && < 2,
                      transformers >= 0.4 && < 1
-
-      -- Disable overloading when compiling under GHC 8.2.x
-      -- see https://ghc.haskell.org/trac/ghc/ticket/14382
-      if impl(ghc == 8.2.*)
-              build-depends: haskell-gi-overloading == 0.0
Loading