[DHG_packages] 02/02: add say

Clint Adams clint at moszumanska.debian.org
Mon Jun 12 03:44:16 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 b0e66ae09bcbc638020aea88ac5466d9006c2c09
Author: Clint Adams <clint at debian.org>
Date:   Sun Jun 11 23:42:56 2017 -0400

    add say
---
 p/haskell-say/debian/changelog     |  5 +++
 p/haskell-say/debian/compat        |  1 +
 p/haskell-say/debian/control       | 69 ++++++++++++++++++++++++++++++++++++++
 p/haskell-say/debian/copyright     | 31 +++++++++++++++++
 p/haskell-say/debian/rules         |  9 +++++
 p/haskell-say/debian/source/format |  1 +
 p/haskell-say/debian/watch         |  2 ++
 7 files changed, 118 insertions(+)

diff --git a/p/haskell-say/debian/changelog b/p/haskell-say/debian/changelog
new file mode 100644
index 0000000..5cdc8ac
--- /dev/null
+++ b/p/haskell-say/debian/changelog
@@ -0,0 +1,5 @@
+haskell-say (0.1.0.0-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Sun, 11 Jun 2017 23:37:34 -0400
diff --git a/p/haskell-say/debian/compat b/p/haskell-say/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/p/haskell-say/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/p/haskell-say/debian/control b/p/haskell-say/debian/control
new file mode 100644
index 0000000..f6ba0a0
--- /dev/null
+++ b/p/haskell-say/debian/control
@@ -0,0 +1,69 @@
+Source: haskell-say
+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-text-dev (>= 1.2),
+ libghc-text-prof (>= 1.2),
+ libghc-hspec-dev,
+ libghc-temporary-dev,
+ libghc-text-dev,
+Build-Depends-Indep: ghc-doc,
+ libghc-text-doc,
+Standards-Version: 3.9.8
+Homepage: https://github.com/fpco/say#readme
+X-Description: send textual messages to a Handle in a thread-friendly way
+ When writing a line to a Handle,
+ .
+  * Properly handle character encoding settings on the Handle
+  * For reasonably sized messages, ensure that the entire message
+    is written in one chunk to avoid interleaving data with other threads
+  * This includes the trailing newline character
+  * Avoid unnecessary memory allocations and copies
+  * Minimize locking
+  * Provide a simple API
+
+Package: libghc-say-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-say-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-say-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-say/debian/copyright b/p/haskell-say/debian/copyright
new file mode 100644
index 0000000..c3197d2
--- /dev/null
+++ b/p/haskell-say/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: say
+Upstream-Contact: michael at snoyman.com
+Source: https://hackage.haskell.org/package/say
+
+Files: *
+Copyright: 2016 FP Complete
+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-say/debian/rules b/p/haskell-say/debian/rules
new file mode 100755
index 0000000..d7ec86e
--- /dev/null
+++ b/p/haskell-say/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = yes
+DEB_SETUP_BIN_NAME = debian/hlibrary.setup
+DEB_CABAL_PACKAGE = say
+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-say/debian/source/format b/p/haskell-say/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/p/haskell-say/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-say/debian/watch b/p/haskell-say/debian/watch
new file mode 100644
index 0000000..d77b1bb
--- /dev/null
+++ b/p/haskell-say/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/say/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