[DHG_packages] 01/01: Recover a few empty debian/control that were lost yesterday

Joachim Breitner nomeata at moszumanska.debian.org
Thu Aug 13 16:20:31 UTC 2015


This is an automated email from the git hooks/post-receive script.

nomeata pushed a commit to branch master
in repository DHG_packages.

commit a49527078a6c7509e1e34d9ecdb5c3926c36d723
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Thu Aug 13 14:00:24 2015 +0200

    Recover a few empty debian/control that were lost yesterday
---
 p/haskell-hinotify/debian/control | 63 +++++++++++++++++++++++++++
 p/hdbc/debian/control             | 92 +++++++++++++++++++++++++++++++++++++++
 p/magic-haskell/debian/control    | 77 ++++++++++++++++++++++++++++++++
 3 files changed, 232 insertions(+)

diff --git a/p/haskell-hinotify/debian/control b/p/haskell-hinotify/debian/control
index e69de29..6b57f95 100644
--- a/p/haskell-hinotify/debian/control
+++ b/p/haskell-hinotify/debian/control
@@ -0,0 +1,63 @@
+Source: haskell-hinotify
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Andy Bailey <bailey at akamai.com>, Clint Adams <clint at debian.org>
+Standards-Version: 3.9.4
+Build-Depends: debhelper (>= 9)
+  , cdbs
+  , haskell-devscripts (>= 0.9)
+  , ghc
+  , ghc-prof
+Build-Depends-Indep: ghc-doc
+Homepage: http://hackage.haskell.org/package/hinotify
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-hinotify
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-hinotify
+
+Package: libghc-hinotify-dev
+Architecture: linux-any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell inotify library${haskell:ShortBlurb}
+ Hinotify is a Haskell library for inotify, a part of the Linux kernel
+ .
+ Hinotify uses inotify to provide file system event notification,
+ simply add a watcher to a file or directory and get an event when it
+ is accessed or modified.
+ .
+ ${haskell:Blurb}
+
+
+Package: libghc-hinotify-prof
+Architecture: linux-any
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Provides: ${haskell:Provides}
+Description: Haskell inotify library${haskell:ShortBlurb}
+ Hinotify is a Haskell library for inotify, a part of the Linux kernel
+ .
+ Hinotify uses inotify to provide file system event notification,
+ simply add a watcher to a file or directory and get an event when it
+ is accessed or modified.
+ .
+ ${haskell:Blurb}
+
+Package: libghc-hinotify-doc
+Section: doc
+Architecture: all
+Depends: ${haskell:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Haskell inotify library${haskell:ShortBlurb}
+ Hinotify is a Haskell library for inotify, a part of the Linux kernel
+ .
+ Hinotify uses inotify to provide file system event notification,
+ simply add a watcher to a file or directory and get an event when it
+ is accessed or modified.
+ .
+ ${haskell:Blurb}
+
diff --git a/p/hdbc/debian/control b/p/hdbc/debian/control
index e69de29..0b58006 100644
--- a/p/hdbc/debian/control
+++ b/p/hdbc/debian/control
@@ -0,0 +1,92 @@
+Source: hdbc
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: John Goerzen <jgoerzen at complete.org>
+Build-Depends:
+ cdbs,
+ debhelper (>= 9),
+ ghc (>= 6.12),
+ haskell-devscripts (>= 0.9),
+ cpphs,
+ libghc-mtl-dev,
+ libghc-mtl-prof,
+ libghc-text-dev,
+ libghc-text-prof,
+ libghc-convertible-dev (>= 1.1.0.0),
+ libghc-convertible-prof,
+ libghc-utf8-string-dev,
+ libghc-utf8-string-prof,
+ ghc-doc,
+ haddock,
+ hscolour,
+ libghc-mtl-doc,
+ libghc-text-doc,
+ libghc-convertible-doc
+Standards-Version: 3.9.5
+Section: haskell
+Homepage: https://github.com/hdbc/hdbc
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/hdbc
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/hdbc
+
+Package: libghc-hdbc-dev
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${haskell:Depends}
+Suggests: libghc-hdbc-postgresql-dev | libghc-hdbc-sqlite3-dev, libghc-hdbc-missingh-dev, ${haskell:Suggests}
+Recommends: ${haskell:Recommends}
+Provides: ${haskell:Provides}
+Description: Haskell Database Connectivity, GHC package
+ HDBC provides an abstraction layer between Haskell programs and SQL
+ relational databases. This lets you write database code once, in
+ Haskell, and have it work with any number of backend SQL databases
+ (MySQL, Oracle, PostgreSQL, ODBC-compliant databases, etc.)
+ .
+ HDBC is modeled loosely on Perl's DBI interface, though it has also been
+ influenced by Python's DB-API v2, JDBC in Java, and HSQL in Haskell.
+ .
+ To use HDBC, you'll need both this package, and a driver package such
+ as libghc-hdbc-postgresql-dev.
+
+Package: libghc-hdbc-prof
+Architecture: any
+Depends: ${haskell:Depends}, ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Haskell Database Connectivity, GHC profiling data
+ HDBC provides an abstraction layer between Haskell programs and SQL
+ relational databases. This package provides profiling information for using
+ HDBC with GHC.
+
+#Package: libhugs-hdbc
+#Section: libs
+#Architecture: all
+#Depends: ${haskell:Depends}, libhugs-convertible (>= 1.0.1-2), libhugs-time-bundled
+#Description: Haskell Database Connectivity, Hugs package
+# HDBC provides an abstraction layer between Haskell programs and SQL
+# relational databases. This lets you write database code once, in
+# Haskell, and have it work with any number of backend SQL databases
+# (MySQL, Oracle, PostgreSQL, ODBC-compliant databases, etc.)
+# .
+# HDBC is modeled loosely on Perl's DBI interface, though it has also been
+# influenced by Python's DB-API v2, JDBC in Java, and HSQL in Haskell.
+# .
+# To use HDBC, you'll need both this package, and a driver package such
+# as libhugs-hdbc-postgresql.
+
+Package: libghc-hdbc-doc
+Replaces: haskell-hdbc-doc (<< 2.2.3-2)
+Conflicts: haskell-hdbc-doc (<< 2.2.3-2)
+Provides: haskell-hdbc-doc, ${haskell:Provides}
+Section: doc
+Architecture: all
+Depends: ${haskell:Depends}, ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Haskell Database Connectivity, Documentation
+ HDBC provides an abstraction layer between Haskell programs and SQL
+ relational databases. This lets you write database code once, in
+ Haskell, and have it work with any number of backend SQL databases
+ (MySQL, Oracle, PostgreSQL, ODBC-compliant databases, etc.)
+ .
+ HDBC is modeled loosely on Perl's DBI interface, though it has also been
+ influenced by Python's DB-API v2, JDBC in Java, and HSQL in Haskell.
diff --git a/p/magic-haskell/debian/control b/p/magic-haskell/debian/control
index e69de29..c45e65c 100644
--- a/p/magic-haskell/debian/control
+++ b/p/magic-haskell/debian/control
@@ -0,0 +1,77 @@
+Source: magic-haskell
+Priority: optional
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: John Goerzen <jgoerzen at complete.org>
+Build-Depends: debhelper (>= 9),
+ cdbs,
+ haskell-devscripts (>= 0.9),
+ ghc,
+ ghc-prof,
+ libmagic-dev
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.4
+Section: haskell
+Homepage: http://hackage.haskell.org/package/magic
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/magic
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/magic
+
+Package: libghc-magic-dev
+Section: haskell
+Architecture: any
+Depends: ${misc:Depends}, ${haskell:Depends}, ${shlibs:Depends}, libmagic-dev
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: File type determination library for Haskell${haskell:ShortBlurb}
+ This package provides a Haskell interface to the C libmagic library.
+ With it, you can determine the type of a file by examining its contents
+ rather than its name.  The Haskell interface provides a full-featured
+ binding.
+ .
+ ${haskell:Blurb}
+
+Package: libghc-magic-prof
+Section: haskell
+Architecture: any
+Depends: ${misc:Depends}, ${haskell:Depends}, ${shlibs:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: File type determination library for Haskell${haskell:ShortBlurb}
+ This package provides a Haskell interface to the C libmagic library.
+ With it, you can determine the type of a file by examining its contents
+ rather than its name.  The Haskell interface provides a full-featured
+ binding.
+ .
+ ${haskell:Blurb}
+
+#Package: libhugs-magic
+#Section: haskell
+#Architecture: any
+#Depends: ${misc:Depends}, ${haskell:Depends}, ${shlibs:Depends}
+#Suggests: ${haskell:Suggests}
+#Description: File type determination library for Haskell${haskell:ShortBlurb}
+# This package provides a Haskell interface to the C libmagic library.
+# With it, you can determine the type of a file by examining its contents
+# rather than its name.  The Haskell interface provides a full-featured
+# binding.
+# .
+# This package is built for Hugs.  A GHC package is also available
+# in libghc-magic-dev.
+
+Package: libghc-magic-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: magic-haskell-doc
+Replaces: magic-haskell-doc (<< 1.0.8-4)
+Conflicts: magic-haskell-doc (<< 1.0.8-4)
+Description: File type determination library for Haskell${haskell:ShortBlurb}
+ This package provides a Haskell interface to the C libmagic library.
+ With it, you can determine the type of a file by examining its contents
+ rather than its name.  The Haskell interface provides a full-featured
+ binding.
+ .
+ ${haskell:Blurb}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list