Commit 0293afe9 authored by Clint Adams's avatar Clint Adams
Browse files

add gi-glib

parent 52f968bb
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-gi-glib (2.0.17-1) unstable; urgency=low

  * Initial version.

 -- Clint Adams <clint@debian.org>  Sat, 24 Nov 2018 20:00:46 -0500
+1 −0
Original line number Diff line number Diff line
9
+72 −0
Original line number Diff line number Diff line
Source: haskell-gi-glib
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 9),
 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),
 libghc-text-dev (>= 1.0),
 libghc-text-dev (<< 2),
 libghc-text-prof (>= 1.0),
 libghc-text-prof (<< 2),
 pkg-config,
 libglib2.0-dev,
Build-Depends-Indep: ghc-doc,
 libghc-haskell-gi-doc,
 libghc-haskell-gi-base-doc,
 libghc-text-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/haskell-gi/haskell-gi
X-Description: GLib bindings
 Bindings for GLib, autogenerated by haskell-gi.

Package: libghc-gi-glib-dev
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
 ${shlibs: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-glib-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-glib-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-glib
Upstream-Contact: Iñaki García Etxebarria <garetxe@gmail.com>
Source: https://hackage.haskell.org/package/gi-glib

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-glib.cabal
+++ b/gi-glib.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