[Pkg-haskell-commits] darcs: haskell-criterion: Initial version.

Marco Túlio Gontijo e Silva marcot at debian.org
Sat May 22 11:08:53 UTC 2010


Fri May 21 23:51:23 UTC 2010  Marco T[_\c3_][_\ba_]lio Gontijo e Silva <marcot at debian.org>
  * Initial version.
  Ignore-this: b63a95c439dc9be658571dd721dbce91

    A ./changelog
    A ./compat
    A ./control
    A ./copyright
    A ./patches/
    A ./patches/no-utf8-warnings.patch
    A ./patches/series
    A ./rules
    A ./source/
    A ./source/format
    A ./watch

Fri May 21 23:51:23 UTC 2010  Marco Túlio Gontijo e Silva <marcot at debian.org>
  * Initial version.
  Ignore-this: b63a95c439dc9be658571dd721dbce91
diff -rN -u old-haskell-criterion/changelog new-haskell-criterion/changelog
--- old-haskell-criterion/changelog	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/changelog	2010-05-22 11:08:53.369236504 +0000
@@ -0,0 +1,5 @@
+haskell-criterion (0.5.0.0-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #582560)
+
+ -- Marco Túlio Gontijo e Silva <marcot at debian.org>  Fri, 21 May 2010 17:17:39 -0300
diff -rN -u old-haskell-criterion/compat new-haskell-criterion/compat
--- old-haskell-criterion/compat	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/compat	2010-05-22 11:08:53.369236504 +0000
@@ -0,0 +1 @@
+7
diff -rN -u old-haskell-criterion/control new-haskell-criterion/control
--- old-haskell-criterion/control	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/control	2010-05-22 11:08:53.369236504 +0000
@@ -0,0 +1,99 @@
+Source: haskell-criterion
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Marco Túlio Gontijo e Silva <marcot at debian.org>
+Build-Depends: debhelper (>= 7)
+  , cdbs
+  , haskell-devscripts (>= 0.7)
+  , ghc6
+  , ghc6-prof
+  , libghc6-deepseq-dev (>= 1.1.0.0)
+  , libghc6-deepseq-prof
+  , libghc6-mtl-dev
+  , libghc6-mtl-prof
+  , libghc6-mwc-random-dev (>= 0.5.0.0)
+  , libghc6-mwc-random-prof
+  , libghc6-parallel-dev
+  , libghc6-parallel-prof
+  , libghc6-parsec3-dev (>= 3.1.0)
+  , libghc6-parsec3-prof
+  , libghc6-statistics-dev (>= 0.5.0.0)
+  , libghc6-statistics-prof
+  , libghc6-vector-dev (>= 0.5)
+  , libghc6-vector-prof
+  , libghc6-vector-algorithms-dev (>= 0.3)
+  , libghc6-vector-algorithms-prof
+Build-Depends-Indep: ghc6-doc
+  , libghc6-deepseq-doc
+  , libghc6-mtl-doc
+  , libghc6-mwc-random-doc
+  , libghc6-parallel-doc
+  , libghc6-parsec3-doc
+  , libghc6-statistics-doc
+  , libghc6-vector-doc
+  , libghc6-vector-algorithms-doc
+Standards-Version: 3.8.4
+Homepage: http://hackage.haskell.org/package/criterion
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-criterion
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-criterion
+
+Package: libghc6-criterion-dev
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Robust, reliable performance measurement and analysis
+ This package provides a library for the Haskell programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This library provides a powerful but simple way to measure the performance of
+ Haskell code.  It provides both a framework for executing and analysing
+ benchmarks and a set of driver functions that makes it easy to build and run
+ benchmarks, and to analyse their results.
+ .
+ The fastest way to get started is to read the documentation and examples in
+ the Criterion.Main module.
+
+Package: libghc6-criterion-prof
+Architecture: any
+Depends: ${haskell:Depends}
+  , ${shlibs:Depends}
+  , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: Robust, reliable performance measurement and analysis; 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.
+ .
+ This library provides a powerful but simple way to measure the performance of
+ Haskell code.  It provides both a framework for executing and analysing
+ benchmarks and a set of driver functions that makes it easy to build and run
+ benchmarks, and to analyse their results.
+ .
+ The fastest way to get started is to read the documentation and examples in
+ the Criterion.Main module.
+
+Package: libghc6-criterion-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: Robust, reliable performance measurement and analysis; documentation
+ This package provides the documentation for a library for the Haskell
+ programming language.
+ See http://www.haskell.org/ for more information on Haskell.
+ .
+ This library provides a powerful but simple way to measure the performance of
+ Haskell code.  It provides both a framework for executing and analysing
+ benchmarks and a set of driver functions that makes it easy to build and run
+ benchmarks, and to analyse their results.
+ .
+ The fastest way to get started is to read the documentation and examples in
+ the Criterion.Main module.
diff -rN -u old-haskell-criterion/copyright new-haskell-criterion/copyright
--- old-haskell-criterion/copyright	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/copyright	2010-05-22 11:08:53.365236291 +0000
@@ -0,0 +1,27 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: criterion
+Maintainer: Bryan O'Sullivan <bos at serpentine.com>
+Source: http://hackage.haskell.org/packages/archive/criterion/0.5.0.0/criterion-0.5.0.0.tar.gz
+
+Copyright: 2009-2010, Bryan O'Sullivan
+License: BSD3
+ 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.
+ .
+ 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.
diff -rN -u old-haskell-criterion/patches/no-utf8-warnings.patch new-haskell-criterion/patches/no-utf8-warnings.patch
--- old-haskell-criterion/patches/no-utf8-warnings.patch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/patches/no-utf8-warnings.patch	2010-05-22 11:08:53.365236291 +0000
@@ -0,0 +1,28 @@
+Description: Workaround Cabal bug of GHC parameter order
+ Cabal is reordering the GHC parameters, so the old code would put
+ -fwarn-no-unused-do-bind before -Wall, which would not avoid this warnings
+ from showing.  This is very important because there's an UTF-8 char being
+ shown in one of the warnings (in Criterion/Analysis.hs), which was making the
+ build fail in hosts without a configured locale.
+Forwarded: http://lists.debian.org/debian-haskell/2010/05/msg00099.html
+Author: Marco Túlio Gontijo e Silva <marcot at debian.org>
+Last-Update: 2010-05-21
+
+Index: criterion-0.5.0.0/criterion.cabal
+===================================================================
+--- criterion-0.5.0.0.orig/criterion.cabal	2010-05-21 18:31:43.000000000 -0300
++++ criterion-0.5.0.0/criterion.cabal	2010-05-21 18:42:41.000000000 -0300
+@@ -68,8 +68,10 @@
+   -- gather extensive profiling data for now
+   ghc-prof-options: -auto-all
+ 
+-  ghc-options: -Wall -funbox-strict-fields -O2
++  ghc-options: -funbox-strict-fields -O2
+   if impl(ghc >= 6.8)
+     ghc-options: -fwarn-tabs
+-  if impl(ghc >= 6.12)
+-    ghc-options: -fno-warn-unused-do-bind
++    if impl(ghc >= 6.12)
++      ghc-options: -Wall -fno-warn-unused-do-bind
++  else
++    ghc-options: -Wall
diff -rN -u old-haskell-criterion/patches/series new-haskell-criterion/patches/series
--- old-haskell-criterion/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/patches/series	2010-05-22 11:08:53.365236291 +0000
@@ -0,0 +1 @@
+no-utf8-warnings.patch
diff -rN -u old-haskell-criterion/rules new-haskell-criterion/rules
--- old-haskell-criterion/rules	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/rules	2010-05-22 11:08:53.365236291 +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-criterion/source/format new-haskell-criterion/source/format
--- old-haskell-criterion/source/format	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/source/format	2010-05-22 11:08:53.365236291 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-criterion/watch new-haskell-criterion/watch
--- old-haskell-criterion/watch	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-criterion/watch	2010-05-22 11:08:53.365236291 +0000
@@ -0,0 +1,5 @@
+version=3
+opts="downloadurlmangle=s|archive/([\w\d_-]+)/([\d\.]+)/|archive/$1/$2/$1-$2.tar.gz|,\
+filenamemangle=s|(.*)/$|criterion-$1.tar.gz|" \
+    http://hackage.haskell.org/packages/archive/criterion \
+    ([\d\.]*\d)/





More information about the Pkg-haskell-commits mailing list