[Pkg-haskell-commits] darcs: haskell-haskore: patches/Extend-process-range, patches/Add-Eq-constraint: GHC 7.4.1 compatibility
Joachim Breitner
mail at joachim-breitner.de
Sat Feb 25 16:14:12 UTC 2012
Sat Feb 25 16:11:15 UTC 2012 Joachim Breitner <mail at joachim-breitner.de>
* patches/Extend-process-range, patches/Add-Eq-constraint: GHC 7.4.1 compatibility
Ignore-this: dc8c3444e8b0e6982052bbad3464707b
M ./changelog +7
A ./patches/Add-Eq-constraint
A ./patches/Extend-process-range
M ./patches/series +2
Sat Feb 25 16:11:15 UTC 2012 Joachim Breitner <mail at joachim-breitner.de>
* patches/Extend-process-range, patches/Add-Eq-constraint: GHC 7.4.1 compatibility
Ignore-this: dc8c3444e8b0e6982052bbad3464707b
diff -rN -u old-haskell-haskore//changelog new-haskell-haskore//changelog
--- old-haskell-haskore//changelog 2012-02-25 16:14:12.541762197 +0000
+++ new-haskell-haskore//changelog 2012-02-25 16:14:12.545768613 +0000
@@ -1,3 +1,10 @@
+haskell-haskore (0.2.0.2-2) unstable; urgency=low
+
+ * patches/Extend-process-range, patches/Add-Eq-constraint: GHC 7.4.1
+ compatibility
+
+ -- Joachim Breitner <nomeata at debian.org> Sat, 25 Feb 2012 16:56:51 +0100
+
haskell-haskore (0.2.0.2-1) unstable; urgency=low
* New upstream release
diff -rN -u old-haskell-haskore//patches/Add-Eq-constraint new-haskell-haskore//patches/Add-Eq-constraint
--- old-haskell-haskore//patches/Add-Eq-constraint 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-haskore//patches/Add-Eq-constraint 2012-02-25 16:14:12.549748022 +0000
@@ -0,0 +1,18 @@
+Description: Add eq constraint
+Author: Joachim Breitner <nomeata at debian.org>
+
+--- haskell-haskore-0.2.0.2.orig/src/Haskore/Example/SelfSim.lhs
++++ haskell-haskore-0.2.0.2/src/Haskore/Example/SelfSim.lhs
+@@ -31,10 +31,10 @@ An example of self-similar, or fractal,
+ > addmult pds iss = zipWith addmult' pds iss
+ > where addmult' (p,d) (i,s) = (p+i,d*s)
+ >
+-> simFringe :: (Num a) => a -> Pat -> [SNote]
++> simFringe :: (Eq a, Num a) => a -> Pat -> [SNote]
+ > simFringe n pat = fringe n (Cl [(0,0)] (sim pat))
+ >
+-> fringe :: (Num a) => a -> Cluster -> [SNote]
++> fringe :: (Eq a, Num a) => a -> Cluster -> [SNote]
+ > fringe 0 (Cl n _) = [n]
+ > fringe m (Cl _ cls) = concatMap (fringe (m-1)) cls
+ >
diff -rN -u old-haskell-haskore//patches/Extend-process-range new-haskell-haskore//patches/Extend-process-range
--- old-haskell-haskore//patches/Extend-process-range 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-haskore//patches/Extend-process-range 2012-02-25 16:14:12.549748022 +0000
@@ -0,0 +1,34 @@
+Description: Extend process dependency to allow for GHC 7.4.1
+Author: Joachim Breitner <nomeata at debian.org>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- haskell-haskore-0.2.0.2.orig/haskore.cabal
++++ haskell-haskore-0.2.0.2/haskore.cabal
+@@ -1,5 +1,5 @@
+ Name: haskore
+-Version: 0.2.0.2
++Version: 0.2.0.2.1
+ License: GPL
+ License-File: LICENSE
+ Author: Paul Hudak <paul.hudak at yale.edu>, Henning Thielemann
+@@ -67,7 +67,7 @@ Library
+ array >=0.1 && <1.0,
+ containers >=0.1 && <1.0,
+ random >=1.0 && <2.0,
+- process >=1.0 && <1.1
++ process >=1.0 && <1.2
+ Else
+ Build-Depends:
+ base >= 1.0 && < 2,
diff -rN -u old-haskell-haskore//patches/series new-haskell-haskore//patches/series
--- old-haskell-haskore//patches/series 2012-02-25 16:14:12.529756444 +0000
+++ new-haskell-haskore//patches/series 2012-02-25 16:14:12.553752115 +0000
@@ -1,2 +1,4 @@
00-fix_csound_invocation.patch
01-set_csound_temp_dir.patch
+Extend-process-range
+Add-Eq-constraint
More information about the Pkg-haskell-commits
mailing list