[DHG_packages] 01/04: Initial packaging of pqueue-1.3.1

Sven Bartscher svenb-guest at moszumanska.debian.org
Thu Mar 17 17:47:25 UTC 2016


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

svenb-guest pushed a commit to branch master
in repository DHG_packages.

commit b589f9cb26bb608781962da3c8e4665bca204c09
Author: Sven Bartscher <sven.bartscher at weltraumschlangen.de>
Date:   Wed Mar 16 21:24:06 2016 +0100

    Initial packaging of pqueue-1.3.1
---
 p/haskell-pqueue/debian/changelog     |  5 +++
 p/haskell-pqueue/debian/compat        |  1 +
 p/haskell-pqueue/debian/control       | 63 +++++++++++++++++++++++++++++++++++
 p/haskell-pqueue/debian/copyright     | 17 ++++++++++
 p/haskell-pqueue/debian/rules         |  7 ++++
 p/haskell-pqueue/debian/source/format |  1 +
 p/haskell-pqueue/debian/watch         |  2 ++
 7 files changed, 96 insertions(+)

diff --git a/p/haskell-pqueue/debian/changelog b/p/haskell-pqueue/debian/changelog
new file mode 100644
index 0000000..6a82791
--- /dev/null
+++ b/p/haskell-pqueue/debian/changelog
@@ -0,0 +1,5 @@
+haskell-pqueue (1.3.1-1) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>  Wed, 16 Mar 2016 21:24:02 +0100
diff --git a/p/haskell-pqueue/debian/compat b/p/haskell-pqueue/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/p/haskell-pqueue/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-pqueue/debian/control b/p/haskell-pqueue/debian/control
new file mode 100644
index 0000000..72a3678
--- /dev/null
+++ b/p/haskell-pqueue/debian/control
@@ -0,0 +1,63 @@
+Source: haskell-pqueue
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 9),
+ haskell-devscripts (>= 0.9),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-base-dev (>= 4),
+ libghc-base-dev (<< 4.9),
+ libghc-base-prof,
+ libghc-deepseq-dev,
+ libghc-deepseq-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-base-doc,
+ libghc-deepseq-doc,
+Standards-Version: 3.9.6
+Homepage: http://hackage.haskell.org/package/pqueue
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-pqueue
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-pqueue
+X-Description: Reliable, persistent, fast priority queues.
+ A fast, reliable priority queue implementation based on a binomial heap.
+
+Package: libghc-pqueue-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-pqueue-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-pqueue-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}
diff --git a/p/haskell-pqueue/debian/copyright b/p/haskell-pqueue/debian/copyright
new file mode 100644
index 0000000..aa24d02
--- /dev/null
+++ b/p/haskell-pqueue/debian/copyright
@@ -0,0 +1,17 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pqueue
+Upstream-Contact: Lennart Spitzner <lsp at informatik.uni-kiel.de>
+ Louis Wasserman <wasserman.louis at gmail.com>
+Source: https://hackage.haskell.org/package/pqueue
+
+Files: *
+Copyright: (No copyright field in cabal file)
+License: BSD3
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD3
+
+License: BSD3
+ Copyright Louis Wasserman 2010
+ BSD license
diff --git a/p/haskell-pqueue/debian/rules b/p/haskell-pqueue/debian/rules
new file mode 100755
index 0000000..ccd0f01
--- /dev/null
+++ b/p/haskell-pqueue/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+DEB_CABAL_PACKAGE = pqueue
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-pqueue/debian/source/format b/p/haskell-pqueue/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-pqueue/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-pqueue/debian/watch b/p/haskell-pqueue/debian/watch
new file mode 100644
index 0000000..a2fc4c1
--- /dev/null
+++ b/p/haskell-pqueue/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/pqueue/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
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