Commit bd58396b authored by Clint Adams's avatar Clint Adams
Browse files

add haskell-gi-base

parent a8abfcc2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-haskell-gi-base (0.21.1-1) unstable; urgency=low

  * Initial release

 -- Clint Adams <clint@debian.org>  Sun, 04 Nov 2018 17:34:33 -0500
+1 −0
Original line number Diff line number Diff line
9
+59 −0
Original line number Diff line number Diff line
Source: haskell-haskell-gi-base
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,
 pkg-config,
 libglib2.0-dev,
Build-Depends-Indep: ghc-doc,
Standards-Version: 4.2.1
Homepage: https://github.com/haskell-gi/haskell-gi
X-Description: Foundation for libraries generated by haskell-gi
 Foundation for generating Haskell bindings for
 GObject-Introspection-capable libraries.

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

Package: libghc-haskell-gi-base-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-haskell-gi-base-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}
+17 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: haskell-gi-base
Upstream-Contact: Iñaki García Etxebarria <garetxe@gmail.com>
Source: https://hackage.haskell.org/package/haskell-gi-base

Files: *
Copyright: Will Thompson
           Iñaki García Etxebarria
	   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.
+8 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = haskell-gi-base
DEB_DEFAULT_COMPILER = ghc

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading