summaryrefslogtreecommitdiff
path: root/p/haskell-io-streams
diff options
context:
space:
mode:
authorRaúl Benencia <rul@kalgan.cc>2013-12-19 22:42:01 +0400
committer=?UTF-8?q?Ra=C3=BAl=20Benencia?= <rul@kalgan.cc>2013-12-19 22:42:01 +0400
commit2970f172ca078c1ffa99872046a994b6f80acc47 (patch)
tree75e868647edb5b73ff1fb527be4a4b3ca958e07a /p/haskell-io-streams
parent5903661466a3976bf4aabed3eced9ad7e6811b6d (diff)
downloadDHG_packages-2970f172ca078c1ffa99872046a994b6f80acc47.tar.gz
haskell-io-streams: Initial Check-In
Diffstat (limited to 'p/haskell-io-streams')
-rw-r--r--p/haskell-io-streams/debian/changelog5
-rw-r--r--p/haskell-io-streams/debian/compat1
-rw-r--r--p/haskell-io-streams/debian/control84
-rw-r--r--p/haskell-io-streams/debian/copyright38
-rwxr-xr-xp/haskell-io-streams/debian/rules6
-rw-r--r--p/haskell-io-streams/debian/source/format1
-rw-r--r--p/haskell-io-streams/debian/watch2
7 files changed, 137 insertions, 0 deletions
diff --git a/p/haskell-io-streams/debian/changelog b/p/haskell-io-streams/debian/changelog
new file mode 100644
index 000000000..0bbd7f326
--- /dev/null
+++ b/p/haskell-io-streams/debian/changelog
@@ -0,0 +1,5 @@
+haskell-io-streams (1.1.2.2-1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ -- Raúl Benencia <rul@kalgan.cc> Tue, 17 Dec 2013 22:23:30 -0300
diff --git a/p/haskell-io-streams/debian/compat b/p/haskell-io-streams/debian/compat
new file mode 100644
index 000000000..ec635144f
--- /dev/null
+++ b/p/haskell-io-streams/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/p/haskell-io-streams/debian/control b/p/haskell-io-streams/debian/control
new file mode 100644
index 000000000..68c17995b
--- /dev/null
+++ b/p/haskell-io-streams/debian/control
@@ -0,0 +1,84 @@
+Source: haskell-io-streams
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
+Uploaders: Raúl Benencia <rul@kalgan.cc>
+Build-Depends: debhelper (>= 9)
+ , cdbs
+ , haskell-devscripts (>= 0.8.15)
+ , ghc
+ , ghc-prof
+ , libghc-attoparsec-dev (>= 0.10)
+ , libghc-attoparsec-dev (<< 0.11)
+ , libghc-attoparsec-prof
+ , libghc-blaze-builder-dev (>= 0.3.1)
+ , libghc-blaze-builder-dev (<< 0.4)
+ , libghc-blaze-builder-prof
+ , libghc-network-dev (>= 2.4)
+ , libghc-network-dev (<< 2.5)
+ , libghc-network-prof
+ , libghc-primitive-dev (>= 0.2)
+ , libghc-primitive-dev (<< 0.6)
+ , libghc-text-dev (>= 0.10)
+ , libghc-text-dev (<< 1.1)
+ , libghc-transformers-dev (>= 0.2)
+ , libghc-transformers-dev (<< 0.4)
+ , libghc-transformers-prof
+ , libghc-vector-dev (>= 0.7)
+ , libghc-vector-dev (<< 0.11)
+ , libghc-vector-prof
+ , libghc-zlib-bindings-dev (>= 0.1)
+ , libghc-zlib-bindings-dev (<< 0.2)
+ , libghc-zlib-bindings-prof
+Build-Depends-Indep: ghc-doc
+Standards-Version: 3.9.2
+Homepage: http://hackage.haskell.org/package/io-streams
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-io-streams
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-io-streams
+X-Description: simple, composable, and easy-to-use stream IO
+ io-streams library comes with functions to use files, handles, concurrent
+ channels, sockets, lists, vectors, and more as streams. It also has a
+ variety of combinators for wrapping and transforming streams, including
+ compression and decompression using zlib, controlling precisely how many
+ bytes are read from or written to a stream, buffering output using
+ bytestring builders, folds, maps, filters, zips, etc.
+ .
+ io-streams library provides support for parsing from streams using
+ attoparsec, and for spawning processes and communicating with them using
+ streams.
+
+Package: libghc-io-streams-dev
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${shlibs:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-io-streams-prof
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-io-streams-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff --git a/p/haskell-io-streams/debian/copyright b/p/haskell-io-streams/debian/copyright
new file mode 100644
index 000000000..78f7d6b79
--- /dev/null
+++ b/p/haskell-io-streams/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: io-streams
+Upstream-Contact: Gregory Collins <greg@gregorycollins.net>
+Source: http://hackage.haskell.org/package/io-streams
+
+Files: *
+Copyright: 2012 Google, Inc.
+ 2012 Erudify AG
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2013 Raúl Benencia
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. None of the names of the copyright holders may be used to endorse
+ or promote products derived from this software without specific
+ prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/p/haskell-io-streams/debian/rules b/p/haskell-io-streams/debian/rules
new file mode 100755
index 000000000..d730346e0
--- /dev/null
+++ b/p/haskell-io-streams/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# DEB_ENABLE_TESTS = yes
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff --git a/p/haskell-io-streams/debian/source/format b/p/haskell-io-streams/debian/source/format
new file mode 100644
index 000000000..163aaf8d8
--- /dev/null
+++ b/p/haskell-io-streams/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/p/haskell-io-streams/debian/watch b/p/haskell-io-streams/debian/watch
new file mode 100644
index 000000000..bbb3699ba
--- /dev/null
+++ b/p/haskell-io-streams/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/io-streams/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))