diff options
| author | clint <clint@debian.org> | 2011-05-31 16:33:24 +0400 |
|---|---|---|
| committer | clint <clint@debian.org> | 2011-05-31 16:33:24 +0400 |
| commit | 6ce27154d2d058abc2612ae6483bfc096bb2f71b (patch) | |
| tree | 474982b22c0ceda32a4ba84d11c844924bdfeb2d | |
| parent | 237c042b20462f3b950152d72676ed624c6c7ff0 (diff) | |
| download | DHG_packages-6ce27154d2d058abc2612ae6483bfc096bb2f71b.tar.gz | |
haskell-enumerator: Initial Check-In
| -rw-r--r-- | p/haskell-enumerator/debian/changelog | 5 | ||||
| -rw-r--r-- | p/haskell-enumerator/debian/compat | 1 | ||||
| -rw-r--r-- | p/haskell-enumerator/debian/control | 94 | ||||
| -rw-r--r-- | p/haskell-enumerator/debian/copyright | 36 | ||||
| -rwxr-xr-x | p/haskell-enumerator/debian/rules | 4 | ||||
| -rw-r--r-- | p/haskell-enumerator/debian/source/format | 1 | ||||
| -rw-r--r-- | p/haskell-enumerator/debian/watch | 5 |
7 files changed, 146 insertions, 0 deletions
diff --git a/p/haskell-enumerator/debian/changelog b/p/haskell-enumerator/debian/changelog new file mode 100644 index 000000000..8eeec9244 --- /dev/null +++ b/p/haskell-enumerator/debian/changelog @@ -0,0 +1,5 @@ +haskell-enumerator (0.4.10-1) unstable; urgency=low + + * Initial release. + + -- Clint Adams <clint@debian.org> Sun, 29 May 2011 12:04:27 -0400 diff --git a/p/haskell-enumerator/debian/compat b/p/haskell-enumerator/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/p/haskell-enumerator/debian/compat @@ -0,0 +1 @@ +7 diff --git a/p/haskell-enumerator/debian/control b/p/haskell-enumerator/debian/control new file mode 100644 index 000000000..80e6fa5fd --- /dev/null +++ b/p/haskell-enumerator/debian/control @@ -0,0 +1,94 @@ +Source: haskell-enumerator +Section: haskell +Priority: extra +Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> +Uploaders: Clint Adams <clint@debian.org> +Build-Depends: debhelper (>= 7) + , cdbs + , haskell-devscripts (>= 0.8) + , ghc + , ghc-prof + , libghc-text-dev + , libghc-text-prof + , libghc-transformers-dev + , libghc-transformers-prof +Build-Depends-Indep: ghc-doc + , libghc-text-doc + , libghc-transformers-doc +Standards-Version: 3.9.2 +Homepage: http://hackage.haskell.org/package/enumerator +Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-enumerator +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-enumerator + +Package: libghc-enumerator-dev +Architecture: any +Depends: ${haskell:Depends} + , ${shlibs:Depends} + , ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Provides: ${haskell:Provides} +Description: high-performance left-fold enumerators + This package provides a library for the Haskell programming language. + See http://www.haskell.org/ for more information on Haskell. + . + Typical buffer–based incremental I/O is based around a single loop, + which reads data from some source (such as a socket or file), + transforms it, and generates one or more outputs (such as a line + count, HTTP responses, or modified file). Although efficient and + safe, these loops are all single–purpose; it is difficult or + impossible to compose buffer–based processing loops. + . + Haskell's concept of "lazy I/O" allows pure code to operate on data + from an external source. However, lazy I/O has several shortcomings. + Most notably, resources such as memory and file handles can be + retained for arbitrarily long periods of time, causing unpredictable + performance and error conditions. + . + Enumerators are an efficient, predictable, and safe alternative to + lazy I/O. Discovered by Oleg Kiselyov, they allow large datasets to + be processed in near–constant space by pure code. Although somewhat + more complex to write, using enumerators instead of lazy I/O + produces more correct programs. + . + This library contains an enumerator implementation for Haskell, + designed to be both simple and efficient. Three core types are + defined, along with numerous helper functions: + . + Iteratee: Data sinks, analogous to left folds. Iteratees consume + a sequence of input values, and generate a single output value. Many + iteratees are designed to perform side effects (such as printing to + stdout), so they can also be used as monad transformers. + . + Enumerator: Data sources, which generate input sequences. Typical + enumerators read from a file handle, socket, random number generator, + or other external stream. To operate, enumerators are passed an + iteratee, and provide that iteratee with input until either the + iteratee has completed its computation, or EOF. + . + Enumeratee: Data transformers, which operate as both enumerators + and iteratees. Enumeratees read from an outer enumerator, and + provide the transformed data to an inner iteratee. + +Package: libghc-enumerator-prof +Architecture: any +Depends: ${haskell:Depends} + , ${misc:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Provides: ${haskell:Provides} +Description: high-performance left-fold enumerators; profiling libraries + This package provides a library for the Haskell programming language, + compiled for profiling. + See http://www.haskell.org/ for more information on Haskell. + +Package: libghc-enumerator-doc +Section: doc +Architecture: all +Depends: ${misc:Depends}, ${haskell:Depends} +Recommends: ${haskell:Recommends} +Suggests: ${haskell:Suggests} +Description: high-performance left-fold enumerators; documentation + This package provides the documentation for a library for the Haskell + programming language. + See http://www.haskell.org/ for more information on Haskell. diff --git a/p/haskell-enumerator/debian/copyright b/p/haskell-enumerator/debian/copyright new file mode 100644 index 000000000..a68b45a37 --- /dev/null +++ b/p/haskell-enumerator/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Clint Adams <clint@debian.org> on +Sun, 29 May 2011 16:04:27 -0000 + +It was downloaded from +http://hackage.haskell.org/package/enumerator + +Upstream Author: + + John Millikin <jmillikin@gmail.com> + +Copyright: + + 2010 John Millikin + +License: + +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-enumerator/debian/rules b/p/haskell-enumerator/debian/rules new file mode 100755 index 000000000..683e77bcf --- /dev/null +++ b/p/haskell-enumerator/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/hlibrary.mk diff --git a/p/haskell-enumerator/debian/source/format b/p/haskell-enumerator/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/p/haskell-enumerator/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/p/haskell-enumerator/debian/watch b/p/haskell-enumerator/debian/watch new file mode 100644 index 000000000..3c0fde8bb --- /dev/null +++ b/p/haskell-enumerator/debian/watch @@ -0,0 +1,5 @@ +version=3 +opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\ +filenamemangle=s|(.*)/$|enumerator-$1.tar.gz|" \ + http://hackage.haskell.org/packages/archive/enumerator \ + ([\d\.]*\d)/ |
