[Pkg-haskell-commits] darcs: haskell-hashtables: Initial import

Iain Lane laney at debian.org
Wed Nov 23 10:59:02 UTC 2011


Wed Nov 23 10:55:23 UTC 2011  Iain Lane <laney at debian.org>
  * Initial import
  Ignore-this: 6032543bf77da78b89942588856902b0

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

Wed Nov 23 10:55:23 UTC 2011  Iain Lane <laney at debian.org>
  * Initial import
  Ignore-this: 6032543bf77da78b89942588856902b0
diff -rN -u old-haskell-hashtables//changelog new-haskell-hashtables//changelog
--- old-haskell-hashtables//changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//changelog	2011-11-23 10:59:02.254179062 +0000
@@ -0,0 +1,5 @@
+haskell-hashtables (1.0.0.0-1) UNRELEASED; urgency=low
+
+  * Initial release.
+
+ -- Iain Lane <laney at debian.org>  Wed, 23 Nov 2011 10:24:22 +0000
diff -rN -u old-haskell-hashtables//compat new-haskell-hashtables//compat
--- old-haskell-hashtables//compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//compat	2011-11-23 10:59:02.250186978 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-hashtables//control new-haskell-hashtables//control
--- old-haskell-hashtables//control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//control	2011-11-23 10:59:02.250186978 +0000
@@ -0,0 +1,108 @@
+Source: haskell-hashtables
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Iain Lane <laney at debian.org>
+Build-Depends: cdbs,
+               debhelper (>= 7.0.50~),
+               ghc,
+               ghc-doc,
+               ghc-prof,
+               haskell-devscripts (>= 0.7),
+               libghc-hashable-dev (>= 1.1),
+               libghc-hashable-dev (<< 2),
+               libghc-hashable-prof (>= 1.1),
+               libghc-hashable-prof (<< 2),
+               libghc-hashable-doc (>= 1.1),
+               libghc-hashable-doc (<< 2),
+               libghc-primitive-dev,
+               libghc-primitive-prof,
+               libghc-primitive-doc,
+               libghc-vector-dev (>= 0.7),
+               libghc-vector-prof (>= 0.7),
+               libghc-vector-doc (>= 0.7)
+Standards-Version: 3.9.2
+Homepage: http://hackage.haskell.org/package/hashtables
+
+Package: libghc-hashtables-dev
+Architecture: any
+Depends: ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: mutable hash tables
+ This package provides a couple of different implementations of mutable hash
+ tables in the ST monad, as well as a typeclass abstracting their common
+ operations, and a set of wrappers to use the hash tables in the IO monad. 
+ .
+ There are three hash table implementations: 
+ .
+  * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
+    linear probing as the collision strategy. This should currently be the
+    fastest available hash table implementation for lookups, although it has a
+    higher memory overhead than others.
+  * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
+    Cuckoo hashing has worst-case O(1) lookups and performs well even when the
+    table is highly loaded. 
+  * Data.HashTable.ST.Linear contains a linear hash table, which trades some
+    insert and lookup performance for higher space efficiency and much shorter
+    delays when expanding the table.
+ .
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+
+Package: libghc-hashtables-prof
+Architecture: any
+Depends: ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: mutable hash tables -- profiling libraries
+ This package provides a couple of different implementations of mutable hash
+ tables in the ST monad, as well as a typeclass abstracting their common
+ operations, and a set of wrappers to use the hash tables in the IO monad. 
+ .
+ There are three hash table implementations: 
+ .
+  * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
+    linear probing as the collision strategy. This should currently be the
+    fastest available hash table implementation for lookups, although it has a
+    higher memory overhead than others.
+  * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
+    Cuckoo hashing has worst-case O(1) lookups and performs well even when the
+    table is highly loaded. 
+  * Data.HashTable.ST.Linear contains a linear hash table, which trades some
+    insert and lookup performance for higher space efficiency and much shorter
+    delays when expanding the table.
+ .
+ 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-hashtables-doc
+Section: doc
+Architecture: all
+Depends: ${haskell:Depends}, ${misc:Depends}, ${shlibs:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: mutable hash tables -- documentation
+ This package provides a couple of different implementations of mutable hash
+ tables in the ST monad, as well as a typeclass abstracting their common
+ operations, and a set of wrappers to use the hash tables in the IO monad. 
+ .
+ There are three hash table implementations: 
+ .
+  * Data.HashTable.ST.Basic contains a basic open-addressing hash table using
+    linear probing as the collision strategy. This should currently be the
+    fastest available hash table implementation for lookups, although it has a
+    higher memory overhead than others.
+  * Data.HashTable.ST.Cuckoo contains an implementation of "cuckoo hashing".
+    Cuckoo hashing has worst-case O(1) lookups and performs well even when the
+    table is highly loaded. 
+  * Data.HashTable.ST.Linear contains a linear hash table, which trades some
+    insert and lookup performance for higher space efficiency and much shorter
+    delays when expanding the table.
+ .
+ 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-hashtables//copyright new-haskell-hashtables//copyright
--- old-haskell-hashtables//copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//copyright	2011-11-23 10:59:02.250186978 +0000
@@ -0,0 +1,48 @@
+This work was packaged for Debian by:
+
+    Iain Lane <laney at debian.org> on Wed Nov 23 10:19:38 GMT 2011
+
+It was downloaded from http://hackage.haskell.org/package/hashtables
+
+Upstream Author:
+
+	Gregory Collins <greg at gregorycollins.net>
+
+Copyright:
+
+    Copyright (c) 2011, Google, Inc.
+
+License:
+
+  All rights reserved.
+  
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are met:
+  
+      * Redistributions of source code must retain the above copyright notice,
+        this list of conditions and the following disclaimer.
+  
+      * 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.
+  
+      * Neither the name of Google, Inc. nor the names of other contributors 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 AND CONTRIBUTORS "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 OWNER OR CONTRIBUTORS 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.
+
+The Debian packaging is:
+
+    Copyright (c) Iain Lane <laney at debian.org>
+
+and is licensed under the BSD license, as above.
diff -rN -u old-haskell-hashtables//rules new-haskell-hashtables//rules
--- old-haskell-hashtables//rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//rules	2011-11-23 10:59:02.250186978 +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-hashtables//source/format new-haskell-hashtables//source/format
--- old-haskell-hashtables//source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//source/format	2011-11-23 10:59:02.254179062 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-hashtables//watch new-haskell-hashtables//watch
--- old-haskell-hashtables//watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hashtables//watch	2011-11-23 10:59:02.254179062 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|hashtables-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/hashtables \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list