[Pkg-haskell-commits] darcs: haskell-testpack: Update Debian files

John Goerzen jgoerzen at complete.org
Fri Jan 4 15:03:21 UTC 2013


Fri Jan 23 16:58:01 UTC 2009  John Goerzen <jgoerzen at complete.org>
  * Update Debian files
  Ignore-this: b391a0c7481148ba1fd488c87b7e61f7

    M ./changelog +8
    M ./control -32 +34

Fri Jan 23 16:58:01 UTC 2009  John Goerzen <jgoerzen at complete.org>
  * Update Debian files
  Ignore-this: b391a0c7481148ba1fd488c87b7e61f7
diff -rN -u old-haskell-testpack//changelog new-haskell-testpack//changelog
--- old-haskell-testpack//changelog	2013-01-04 15:03:20.382229964 +0000
+++ new-haskell-testpack//changelog	2013-01-04 15:03:21.050242638 +0000
@@ -1,3 +1,11 @@
+testpack (1.0.0-1) unstable; urgency=low
+
+  * Initial release.  This is a fork off of MissingH, taking its HUnit utils
+    and combining them with other code to create a suite of utilities for performing
+    tests in Haskell.
+
+ -- John Goerzen <jgoerzen at complete.org>  Fri, 23 Jan 2009 10:57:14 -0600
+
 missingh (1.0.3.2) unstable; urgency=high
 
   * Rebuild with newer GHC.
diff -rN -u old-haskell-testpack//control new-haskell-testpack//control
--- old-haskell-testpack//control	2013-01-04 15:03:20.374224550 +0000
+++ new-haskell-testpack//control	2013-01-04 15:03:21.074222606 +0000
@@ -1,42 +1,44 @@
-Source: missingh
+Source: testpack
 Priority: optional
 Maintainer: John Goerzen <jgoerzen at complete.org>
-Build-Depends: debhelper (>= 4.0.0), ghc6 (>= 6.8.2dfsg1), haskell-devscripts (>= 0.6.15), cpphs, libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-hunit-dev, libghc6-quickcheck-dev, libghc6-hslogger-dev (>= 1.0.7.2), libghc6-regex-compat-dev (>= 0.91-1)
-Build-Depends-Indep: debhelper (>= 4.0.0), haddock, hugs (>= 98.200503.08-4), haskell-devscripts (>= 0.6.15), ghc6 (>= 6.8.2dfsg1), cpphs, libhugs-filepath, libhugs-hslogger, libhugs-hunit, libhugs-mtl, libhugs-network, libhugs-parsec, libhugs-quickcheck, libhugs-unix
+Build-Depends: debhelper (>= 4.0.0), ghc6 (>= 6.8.2dfsg1), haskell-devscripts (>= 0.6.15),  libghc6-mtl-dev, libghc6-hunit-dev, libghc6-quickcheck-dev
+Build-Depends-Indep: debhelper (>= 4.0.0), haddock, hugs (>= 98.200503.08-4), haskell-devscripts (>= 0.6.15), ghc6 (>= 6.8.2dfsg1), libhugs-hunit, libhugs-mtl, libhugs-quickcheck
 Standards-Version: 3.6.2
 Section: devel
 
-Package: libghc6-missingh-dev
+Package: libghc6-testpack-dev
 Section: devel
 Architecture: any
-Depends: ${haskell:Depends}, libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-hunit-dev, libghc6-quickcheck-dev, libghc6-hslogger-dev (>= 1.0.7.1), libghc6-regex-compat-dev (>= 0.91-1)
-Suggests: missingh-doc
-Description: Library of utility functions for Haskell, GHC6 package 
- MissingH is a library of all sorts of utility functions for
- Haskell programmers.  It is written in pure Haskell and thus should
- be extremely portable and easy to use.  It also has no prerequisites
- save those that are commonly included with Haskell compilers.
- .
- MissingH is based on my MissingLib library for OCaml and contains some
- of the same features.  However, some features are left behind because
- they are already in Haskell or not needed here -- and others are added
- due to things Haskell is missing, or things that Haskell makes
- possible.
+Depends: ${haskell:Depends}
+Suggests: libhaskell-testpack-doc
+Description: Haskell Test Utility Pack for HUnit and QuickCheck
+ testpack provides utilities for both HUnit and QuickCheck.  These include
+ tools for running QuickCheck properties as HUnit test cases, allowing you to
+ combine both approaches in a single program.  It also includes tools for more
+ helpful displays of running progress in both HUnit and QuickCheck, additional
+ generators for other types for QuickCheck, and shortcuts for quickly defining new
+ test cases.
 
-Package: missingh-doc
+Package: libhugs-testpack
+Section: devel
+Architecture: any
+Depends: ${haskell:Depends}, hugs (>= 98.200503.08-4), libhugs-hunit, libhugs-mtl, libhugs-quickcheck
+Suggests: libhaskell-testpack-doc
+Description: Haskell Test Utility Pack for HUnit and QuickCheck
+ testpack provides utilities for both HUnit and QuickCheck.  These include
+ tools for running QuickCheck properties as HUnit test cases, allowing you to
+ combine both approaches in a single program.  It also includes tools for more
+ helpful displays of running progress in both HUnit and QuickCheck, additional
+ generators for other types for QuickCheck, and shortcuts for quickly defining new
+ test cases.
+
+Package: libhaskell-testpack-doc
 Section: doc
 Architecture: all
-Description: Documentation for Haskell utility library
- MissingH is a library of all sorts of utility functions for
- Haskell programmers.  It is written in pure Haskell and thus should
- be extremely portable and easy to use.  It also has no prerequisites
- save those that are commonly included with Haskell compilers.
- .
- MissingH is based on my MissingLib library for OCaml and contains some
- of the same features.  However, some features are left behind because
- they are already in Haskell or not needed here -- and others are added
- due to things Haskell is missing, or things that Haskell makes
- possible.
- .
- This package provides the API documentation for MissingH.
-
+Description: Documentation for Haskell Test Utility Pack
+ testpack provides utilities for both HUnit and QuickCheck.  These include
+ tools for running QuickCheck properties as HUnit test cases, allowing you to
+ combine both approaches in a single program.  It also includes tools for more
+ helpful displays of running progress in both HUnit and QuickCheck, additional
+ generators for other types for QuickCheck, and shortcuts for quickly defining new
+ test cases.





More information about the Pkg-haskell-commits mailing list