[DHG_packages] 01/01: add libmpd

Clint Adams clint at moszumanska.debian.org
Thu Jul 6 02:53:37 UTC 2017


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

clint pushed a commit to branch master
in repository DHG_packages.

commit 5c57b07483691ad3c99c60a5594482dc64723f72
Author: Clint Adams <clint at debian.org>
Date:   Wed Jul 5 22:49:33 2017 -0400

    add libmpd
---
 p/haskell-libmpd/debian/changelog     |  5 ++
 p/haskell-libmpd/debian/compat        |  1 +
 p/haskell-libmpd/debian/control       | 99 +++++++++++++++++++++++++++++++++++
 p/haskell-libmpd/debian/copyright     | 41 +++++++++++++++
 p/haskell-libmpd/debian/rules         |  9 ++++
 p/haskell-libmpd/debian/source/format |  1 +
 p/haskell-libmpd/debian/watch         |  2 +
 7 files changed, 158 insertions(+)

diff --git a/p/haskell-libmpd/debian/changelog b/p/haskell-libmpd/debian/changelog
new file mode 100644
index 0000000..78dc38d
--- /dev/null
+++ b/p/haskell-libmpd/debian/changelog
@@ -0,0 +1,5 @@
+haskell-libmpd (0.9.0.6-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Wed, 05 Jul 2017 22:47:15 -0400
diff --git a/p/haskell-libmpd/debian/compat b/p/haskell-libmpd/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-libmpd/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-libmpd/debian/control b/p/haskell-libmpd/debian/control
new file mode 100644
index 0000000..e769e08
--- /dev/null
+++ b/p/haskell-libmpd/debian/control
@@ -0,0 +1,99 @@
+Source: haskell-libmpd
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: extra
+Section: haskell
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-attoparsec-dev (>= 0.10.1),
+ libghc-attoparsec-dev (<< 1),
+ libghc-attoparsec-prof (>= 0.10.1),
+ libghc-attoparsec-prof (<< 1),
+ libghc-data-default-class-dev (>= 0.0.1),
+ libghc-data-default-class-dev (<< 1),
+ libghc-data-default-class-prof (>= 0.0.1),
+ libghc-data-default-class-prof (<< 1),
+ libghc-mtl-dev (>= 2.0),
+ libghc-mtl-dev (<< 3),
+ libghc-mtl-prof (>= 2.0),
+ libghc-mtl-prof (<< 3),
+ libghc-network-dev (>= 2.1),
+ libghc-network-dev (<< 3),
+ libghc-network-prof (>= 2.1),
+ libghc-network-prof (<< 3),
+ libghc-old-locale-dev (>= 1),
+ libghc-old-locale-dev (<< 2),
+ libghc-old-locale-prof (>= 1),
+ libghc-old-locale-prof (<< 2),
+ libghc-text-dev (>= 0.11),
+ libghc-text-dev (<< 2),
+ libghc-text-prof (>= 0.11),
+ libghc-text-prof (<< 2),
+ libghc-utf8-string-dev (>= 0.3.1),
+ libghc-utf8-string-dev (<< 1.1),
+ libghc-utf8-string-prof (>= 0.3.1),
+ libghc-utf8-string-prof (<< 1.1),
+ libghc-quickcheck2-dev (>= 2.1),
+ libghc-attoparsec-dev,
+ libghc-data-default-class-dev,
+ libghc-hspec-dev (>= 1.3),
+ libghc-mtl-dev,
+ libghc-network-dev,
+ libghc-old-locale-dev,
+ libghc-text-dev,
+ libghc-utf8-string-dev,
+Build-Depends-Indep: ghc-doc,
+ libghc-attoparsec-doc,
+ libghc-data-default-class-doc,
+ libghc-mtl-doc,
+ libghc-network-doc,
+ libghc-old-locale-doc,
+ libghc-text-doc,
+ libghc-utf8-string-doc,
+Standards-Version: 4.0.0
+Homepage: http://github.com/vimus/libmpd-haskell#readme
+X-Description: MPD client library
+ A client library for MPD, the Music Player Daemon.
+
+Package: libghc-libmpd-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-libmpd-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-libmpd-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-libmpd/debian/copyright b/p/haskell-libmpd/debian/copyright
new file mode 100644
index 0000000..60f1c29
--- /dev/null
+++ b/p/haskell-libmpd/debian/copyright
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: libmpd
+Upstream-Contact: Joachim Fasting <joachifm at fastmail.fm>
+Source: https://hackage.haskell.org/package/libmpd
+
+Files: *
+Copyright: 2005-2009 Ben Sinclair
+           2007-2015 Joachim Fasting
+           2009 Daniel Schoepe
+           2010 Andrzej Rybczak
+           2011-2014 Simon Hengel
+	   2012 Niklas Haas
+           2014 Matvey Aksenov
+           2014 Wieland Hoffmann
+           2014 Tim Heap
+	   2014 Tobias Brandt
+License: Expat
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/p/haskell-libmpd/debian/rules b/p/haskell-libmpd/debian/rules
new file mode 100755
index 0000000..9ea3a94
--- /dev/null
+++ b/p/haskell-libmpd/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = libmpd
+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-libmpd/debian/source/format b/p/haskell-libmpd/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-libmpd/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-libmpd/debian/watch b/p/haskell-libmpd/debian/watch
new file mode 100644
index 0000000..280883f
--- /dev/null
+++ b/p/haskell-libmpd/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/libmpd/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