[DHG_packages] 01/01: add hosc

Clint Adams clint at moszumanska.debian.org
Thu Jun 29 03:15:52 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 4f3c03ad6ac94860a8910ee4eceef00f0658a659
Author: Clint Adams <clint at debian.org>
Date:   Wed Jun 28 22:52:45 2017 -0400

    add hosc
---
 p/haskell-hosc/debian/changelog                  |  5 ++
 p/haskell-hosc/debian/compat                     |  1 +
 p/haskell-hosc/debian/control                    | 93 ++++++++++++++++++++++++
 p/haskell-hosc/debian/copyright                  | 13 ++++
 p/haskell-hosc/debian/haskell-hosc-utils.install |  1 +
 p/haskell-hosc/debian/rules                      | 11 +++
 p/haskell-hosc/debian/source/format              |  1 +
 p/haskell-hosc/debian/watch                      |  2 +
 8 files changed, 127 insertions(+)

diff --git a/p/haskell-hosc/debian/changelog b/p/haskell-hosc/debian/changelog
new file mode 100644
index 0000000..4557df5
--- /dev/null
+++ b/p/haskell-hosc/debian/changelog
@@ -0,0 +1,5 @@
+haskell-hosc (0.15-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Wed, 28 Jun 2017 22:48:56 -0400
diff --git a/p/haskell-hosc/debian/compat b/p/haskell-hosc/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-hosc/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-hosc/debian/control b/p/haskell-hosc/debian/control
new file mode 100644
index 0000000..5f9a40a
--- /dev/null
+++ b/p/haskell-hosc/debian/control
@@ -0,0 +1,93 @@
+Source: haskell-hosc
+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-blaze-builder-dev (>= 0.3),
+ libghc-blaze-builder-prof (>= 0.3),
+ libghc-data-binary-ieee754-dev,
+ libghc-data-binary-ieee754-prof,
+ libghc-network-dev (>= 2.3),
+ libghc-network-prof (>= 2.3),
+ libghc-quickcheck2-dev (>= 2),
+ libghc-test-framework-dev (>= 0.2),
+ libghc-test-framework-quickcheck2-dev (>= 0.2),
+Build-Depends-Indep: ghc-doc,
+ libghc-blaze-builder-doc,
+ libghc-data-binary-ieee754-doc,
+ libghc-network-doc,
+Standards-Version: 4.0.0
+Homepage: http://rd.slavepianos.org/t/hosc
+X-Description: Haskell Open Sound Control
+ hosc implements a subset of the Open Sound Control
+ byte protocol.
+ .
+ Sound.OSC.Core implements the actual protocol.
+ .
+ Sound.OSC.Transport.FD implements a
+ file-descriptor-based transport layer for UDP
+ and TCP.
+ .
+ Sound.OSC.Transport.Monad implements a
+ monadic interface to the FD transport layer.
+ .
+ Composite modules are at Sound.OSC and Sound.OSC.FD.
+
+Package: libghc-hosc-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-hosc-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-hosc-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}
+
+Package: haskell-hosc-utils
+Architecture: all
+Section: misc
+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}
diff --git a/p/haskell-hosc/debian/copyright b/p/haskell-hosc/debian/copyright
new file mode 100644
index 0000000..ba9cd74
--- /dev/null
+++ b/p/haskell-hosc/debian/copyright
@@ -0,0 +1,13 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hosc
+Upstream-Contact: rd at slavepianos.org
+Source: https://hackage.haskell.org/package/hosc
+
+Files: *
+Copyright: 2007-2014 Rohan Drape, Stefan Kersten and others
+License: GPL
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: GPL
+ See /usr/share/common-licenses for the GPL text on this Debian-based system.
diff --git a/p/haskell-hosc/debian/haskell-hosc-utils.install b/p/haskell-hosc/debian/haskell-hosc-utils.install
new file mode 100644
index 0000000..1e025f4
--- /dev/null
+++ b/p/haskell-hosc/debian/haskell-hosc-utils.install
@@ -0,0 +1 @@
+./README usr/share/hosc/.
diff --git a/p/haskell-hosc/debian/rules b/p/haskell-hosc/debian/rules
new file mode 100755
index 0000000..3f6407b
--- /dev/null
+++ b/p/haskell-hosc/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = hosc
+DEB_DEFAULT_COMPILER = ghc
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
+
+build/haskell-hosc-utils:: build-ghc-stamp
diff --git a/p/haskell-hosc/debian/source/format b/p/haskell-hosc/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-hosc/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-hosc/debian/watch b/p/haskell-hosc/debian/watch
new file mode 100644
index 0000000..cfb46cb
--- /dev/null
+++ b/p/haskell-hosc/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/hosc/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