[Pkg-haskell-commits] darcs: haskell-regex-tdfa: Use ghc instead of ghc6

Marco Silva marcot at debian.org
Sat Jan 15 16:10:15 UTC 2011


Sat Jan 15 15:06:19 UTC 2011  Marco Silva <marcot at debian.org>
  * Use ghc instead of ghc6
  Ignore-this: d0ac351ce5d1f6a302e5d112eb9f3838

     ./libghc6-regex-tdfa-doc.doc-base -> ./libghc-regex-tdfa-doc.doc-base
    M ./changelog -2 +6
    M ./control -15 +15
    M ./libghc-regex-tdfa-doc.doc-base -4 +4

Sat Jan 15 15:06:19 UTC 2011  Marco Silva <marcot at debian.org>
  * Use ghc instead of ghc6
  Ignore-this: d0ac351ce5d1f6a302e5d112eb9f3838
diff -rN -u old-haskell-regex-tdfa/changelog new-haskell-regex-tdfa/changelog
--- old-haskell-regex-tdfa/changelog	2011-01-15 16:10:15.410292541 +0000
+++ new-haskell-regex-tdfa/changelog	2011-01-15 16:10:15.414292751 +0000
@@ -1,8 +1,12 @@
 haskell-regex-tdfa (1.1.7-1) UNRELEASED; urgency=high
 
+  [ Erik de Castro Lopo ]
   * New upstream.
   * debian/control: Standards-Version 3.9.1, no changes needed.
 
+  [ Marco Silva ]
+  * Use ghc instead of ghc
+
  -- Erik de Castro Lopo <erikd at mega-nerd.com>  Sun,  9 Jan 2011 15:25:17 +1100
 
 haskell-regex-tdfa (1.1.4-1) unstable; urgency=high
@@ -13,7 +17,7 @@
 
 haskell-regex-tdfa (1.1.3-2) unstable; urgency=low
 
-  * Run ghc6 without active timer (+RTS -V0 -RTS). Should work around
+  * Run ghc without active timer (+RTS -V0 -RTS). Should work around
     http://hackage.haskell.org/trac/ghc/ticket/4074 on slow arches. Negative
     side effects not known (yet).
 
@@ -29,7 +33,7 @@
 
   [ Erik de Castro Lopo ]
   * New upstream.
-  * control : Build depend on libghc6-regex-base-doc.
+  * control : Build depend on libghc-regex-base-doc.
 
  -- Erik de Castro Lopo <erikd at mega-nerd.com>  Wed, 23 Jun 2010 17:20:21 +1000
 
diff -rN -u old-haskell-regex-tdfa/control new-haskell-regex-tdfa/control
--- old-haskell-regex-tdfa/control	2011-01-15 16:10:15.410292541 +0000
+++ new-haskell-regex-tdfa/control	2011-01-15 16:10:15.414292751 +0000
@@ -7,24 +7,24 @@
  debhelper (>= 7),
  haskell-devscripts (>= 0.7),
  cdbs,
- ghc6,
- ghc6-prof,
- ghc6-doc,
- libghc6-parsec2-dev,
- libghc6-parsec2-prof,
- libghc6-parsec2-doc,
- libghc6-regex-base-dev (>= 0.93.1),
- libghc6-regex-base-prof,
- libghc6-regex-base-doc,
- libghc6-mtl-dev,
- libghc6-mtl-prof,
- libghc6-mtl-doc,
+ ghc,
+ ghc-prof,
+ ghc-doc,
+ libghc-parsec2-dev,
+ libghc-parsec2-prof,
+ libghc-parsec2-doc,
+ libghc-regex-base-dev (>= 0.93.1),
+ libghc-regex-base-prof,
+ libghc-regex-base-doc,
+ libghc-mtl-dev,
+ libghc-mtl-prof,
+ libghc-mtl-doc,
 Standards-Version: 3.9.1
 Homepage: http://hackage.haskell.org/package/regex-tdfa
 Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-regex-tdfa
 Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-regex-tdfa
 
-Package: libghc6-regex-tdfa-dev
+Package: libghc-regex-tdfa-dev
 Architecture: any
 Depends: ${haskell:Depends}, ${misc:Depends}
 Suggests: ${haskell:Suggests}
@@ -44,7 +44,7 @@
  .
  This package contains the libraries compiled for GHC 6.
 
-Package: libghc6-regex-tdfa-prof
+Package: libghc-regex-tdfa-prof
 Architecture: any
 Depends: ${haskell:Depends}, ${misc:Depends}
 Suggests: ${haskell:Suggests}
@@ -64,7 +64,7 @@
  .
  This package contains the profiling libraries compiled for GHC 6.
 
-Package: libghc6-regex-tdfa-doc
+Package: libghc-regex-tdfa-doc
 Section: doc
 Architecture: all
 Depends: ${haskell:Depends}, ${misc:Depends}
diff -rN -u old-haskell-regex-tdfa/libghc6-regex-tdfa-doc.doc-base new-haskell-regex-tdfa/libghc6-regex-tdfa-doc.doc-base
--- old-haskell-regex-tdfa/libghc6-regex-tdfa-doc.doc-base	2011-01-15 16:10:15.406292330 +0000
+++ new-haskell-regex-tdfa/libghc6-regex-tdfa-doc.doc-base	1970-01-01 00:00:00.000000000 +0000
@@ -1,13 +0,0 @@
-Document: libghc6-regex-tdfa-doc
-Title: Manual for the Haskell regex-tdfa library
-Abstract: An pure Haskell alternative to GHC's Text.Regex which uses a Parsec
- parser and creates an internal data structure (Text.Regex.Lazy.Pattern). This
- is then transformed a DFA table for matching against the input String or
- FastPackedString. The input string is consumed lazily, so it may be an
- arbitrarily long or infinite source.
-Section: Programming
-
-Format: HTML
-Index: /usr/share/doc/libghc6-regex-tdfa-doc/html/doc-index.html
-Files: /usr/share/doc/libghc6-regex-tdfa-doc/html/*.html
- /usr/share/doc/libghc6-regex-tdfa-doc/html/src/*.html
diff -rN -u old-haskell-regex-tdfa/libghc-regex-tdfa-doc.doc-base new-haskell-regex-tdfa/libghc-regex-tdfa-doc.doc-base
--- old-haskell-regex-tdfa/libghc-regex-tdfa-doc.doc-base	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-regex-tdfa/libghc-regex-tdfa-doc.doc-base	2011-01-15 16:10:15.410292541 +0000
@@ -0,0 +1,13 @@
+Document: libghc-regex-tdfa-doc
+Title: Manual for the Haskell regex-tdfa library
+Abstract: An pure Haskell alternative to GHC's Text.Regex which uses a Parsec
+ parser and creates an internal data structure (Text.Regex.Lazy.Pattern). This
+ is then transformed a DFA table for matching against the input String or
+ FastPackedString. The input string is consumed lazily, so it may be an
+ arbitrarily long or infinite source.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libghc-regex-tdfa-doc/html/doc-index.html
+Files: /usr/share/doc/libghc-regex-tdfa-doc/html/*.html
+ /usr/share/doc/libghc-regex-tdfa-doc/html/src/*.html





More information about the Pkg-haskell-commits mailing list