[Pkg-haskell-commits] darcs: haskell-enumerator: Initial Check-In

clint at debian.org clint at debian.org
Tue May 31 12:34:32 UTC 2011


Tue May 31 12:33:24 UTC 2011  clint at debian.org
  * Initial Check-In
  Ignore-this: 2aa767529afa6c4cb1600a51093db36

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Tue May 31 12:33:24 UTC 2011  clint at debian.org
  * Initial Check-In
  Ignore-this: 2aa767529afa6c4cb1600a51093db36
diff -rN -u old-haskell-enumerator//changelog new-haskell-enumerator//changelog
--- old-haskell-enumerator//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//changelog	2011-05-31 12:34:32.573277590 +0000
@@ -0,0 +1,5 @@
+haskell-enumerator (0.4.10-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Clint Adams <clint at debian.org>  Sun, 29 May 2011 12:04:27 -0400
diff -rN -u old-haskell-enumerator//compat new-haskell-enumerator//compat
--- old-haskell-enumerator//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//compat	2011-05-31 12:34:32.573277590 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-enumerator//control new-haskell-enumerator//control
--- old-haskell-enumerator//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//control	2011-05-31 12:34:32.573277590 +0000
@@ -0,0 +1,94 @@
+Source: haskell-enumerator
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at 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 -rN -u old-haskell-enumerator//copyright new-haskell-enumerator//copyright
--- old-haskell-enumerator//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//copyright	2011-05-31 12:34:32.573277590 +0000
@@ -0,0 +1,36 @@
+This package was debianized by Clint Adams <clint at 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 at 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 -rN -u old-haskell-enumerator//rules new-haskell-enumerator//rules
--- old-haskell-enumerator//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//rules	2011-05-31 12:34:32.573277590 +0000
@@ -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 -rN -u old-haskell-enumerator//source/format new-haskell-enumerator//source/format
--- old-haskell-enumerator//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//source/format	2011-05-31 12:34:32.577275709 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-enumerator//watch new-haskell-enumerator//watch
--- old-haskell-enumerator//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-enumerator//watch	2011-05-31 12:34:32.577275709 +0000
@@ -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)/





More information about the Pkg-haskell-commits mailing list