Skip to content

Commit d56ca6a

Browse files
committed
Version wibbles for GHC 7.8
1 parent ef3cbfb commit d56ca6a

9 files changed

Lines changed: 55 additions & 54 deletions

File tree

repa-algorithms/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2001-2013, The Data Parallel Haskell Team
1+
Copyright (c) 2001-2014, The Data Parallel Haskell Team
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

repa-algorithms/repa-algorithms.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: repa-algorithms
2-
Version: 3.2.4.2
2+
Version: 3.2.5.1
33
License: BSD3
44
License-file: LICENSE
55
Author: The DPH Team
@@ -18,9 +18,9 @@ Synopsis:
1818

1919
Library
2020
Build-Depends:
21-
base >= 4.6 && < 4.8,
21+
base == 4.7.*,
2222
vector == 0.10.*,
23-
repa == 3.2.*
23+
repa == 3.2.5.*
2424

2525
ghc-options:
2626
-Wall -fno-warn-missing-signatures

repa-examples/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2001-2013, The Data Parallel Haskell Team
1+
Copyright (c) 2001-2014, The Data Parallel Haskell Team
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

repa-examples/examples/Canny/src-repa/Main.hs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{-# LANGUAGE PackageImports, BangPatterns, QuasiQuotes, PatternGuards, MagicHash, ScopedTypeVariables #-}
1+
{-# LANGUAGE PackageImports, BangPatterns, QuasiQuotes, PatternGuards,
2+
MagicHash, ScopedTypeVariables #-}
23
{-# OPTIONS -Wall -fno-warn-missing-signatures -fno-warn-incomplete-patterns #-}
34

45
-- | Canny edge detector.
@@ -25,7 +26,7 @@ import Debug.Trace
2526
import GHC.Exts
2627
import qualified Data.Vector.Unboxed.Mutable as VM
2728
import qualified Data.Vector.Unboxed as V
28-
import Prelude as P
29+
import qualified Prelude as P
2930
import Prelude hiding (compare)
3031

3132

repa-examples/repa-examples.cabal

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: repa-examples
2-
Version: 3.2.3.2
2+
Version: 3.2.5.1
33
License: BSD3
44
License-file: LICENSE
55
Author: The DPH Team
@@ -19,9 +19,9 @@ Synopsis:
1919

2020
Executable repa-canny
2121
Build-depends:
22-
base == 4.6.*,
23-
repa == 3.2.*,
24-
repa-algorithms == 3.2.*
22+
base == 4.7.*,
23+
repa == 3.2.5.*,
24+
repa-algorithms == 3.2.5.*
2525

2626
Main-is: examples/Canny/src-repa/Main.hs
2727
hs-source-dirs: examples/Canny/src-repa .
@@ -35,11 +35,11 @@ Executable repa-canny
3535

3636
Executable repa-mmult
3737
Build-depends:
38-
base == 4.6.*,
38+
base == 4.7.*,
3939
random == 1.0.*,
40-
repa == 3.2.*,
41-
repa-io == 3.2.*,
42-
repa-algorithms == 3.2.*
40+
repa == 3.2.5.*,
41+
repa-io == 3.2.5.*,
42+
repa-algorithms == 3.2.5.*
4343

4444
Main-is: examples/MMult/src-repa/Main.hs
4545
other-modules: Solver
@@ -56,10 +56,10 @@ Executable repa-mmult
5656

5757
Executable repa-laplace
5858
Build-depends:
59-
base == 4.6.*,
60-
repa == 3.2.*,
61-
repa-io == 3.2.*,
62-
template-haskell == 2.8.*
59+
base == 4.7.*,
60+
repa == 3.2.5.*,
61+
repa-io == 3.2.5.*,
62+
template-haskell == 2.9.*
6363

6464
Main-is: examples/Laplace/src-repa/Main.hs
6565
other-modules: SolverGet SolverStencil
@@ -74,10 +74,10 @@ Executable repa-laplace
7474

7575
Executable repa-fft2d
7676
Build-depends:
77-
base == 4.6.*,
78-
repa == 3.2.*,
79-
repa-algorithms == 3.2.*,
80-
repa-io == 3.2.*
77+
base == 4.7.*,
78+
repa == 3.2.5.*,
79+
repa-algorithms == 3.2.5.*,
80+
repa-io == 3.2.5.*
8181

8282
Main-is: examples/FFT/FFT2d/src-repa/Main.hs
8383
hs-source-dirs: examples/FFT/FFT2d/src-repa .
@@ -93,10 +93,10 @@ Executable repa-fft2d
9393

9494
Executable repa-fft2d-highpass
9595
Build-depends:
96-
base == 4.6.*,
97-
repa == 3.2.*,
98-
repa-algorithms == 3.2.*,
99-
repa-io == 3.2.*
96+
base == 4.7.*,
97+
repa == 3.2.5.*,
98+
repa-algorithms == 3.2.5.*,
99+
repa-io == 3.2.5.*
100100

101101
Main-is: examples/FFT/HighPass2d/src-repa/Main.hs
102102
hs-source-dirs: examples/FFT/HighPass2d/src-repa .
@@ -113,9 +113,9 @@ Executable repa-fft2d-highpass
113113

114114
Executable repa-fft3d-highpass
115115
Build-depends:
116-
base == 4.6.*,
117-
repa == 3.2.*,
118-
repa-algorithms == 3.2.*
116+
base == 4.7.*,
117+
repa == 3.2.5.*,
118+
repa-algorithms == 3.2.5.*
119119

120120
Main-is: examples/FFT/HighPass3d/src-repa/Main.hs
121121
hs-source-dirs: examples/FFT/HighPass3d/src-repa .
@@ -131,10 +131,10 @@ Executable repa-fft3d-highpass
131131

132132
Executable repa-blur
133133
Build-depends:
134-
base == 4.6.*,
134+
base == 4.7.*,
135135
vector == 0.10.*,
136-
repa == 3.2.*,
137-
repa-algorithms == 3.2.*
136+
repa == 3.2.5.*,
137+
repa-algorithms == 3.2.5.*
138138

139139
Main-is: examples/Blur/src-repa/Main.hs
140140
hs-source-dirs: examples/Blur/src-repa .
@@ -150,9 +150,9 @@ Executable repa-blur
150150

151151
Executable repa-sobel
152152
Build-depends:
153-
base == 4.6.*,
154-
repa == 3.2.*,
155-
repa-algorithms == 3.2.*
153+
base == 4.7.*,
154+
repa == 3.2.5.*,
155+
repa-algorithms == 3.2.5.*
156156

157157
Main-is: examples/Sobel/src-repa/Main.hs
158158
other-modules: Solver
@@ -169,9 +169,9 @@ Executable repa-sobel
169169

170170
Executable repa-volume
171171
Build-depends:
172-
base == 4.6.*,
173-
repa == 3.2.*,
174-
repa-io == 3.2.*
172+
base == 4.7.*,
173+
repa == 3.2.5.*,
174+
repa-io == 3.2.5.*
175175

176176
Main-is: examples/Volume/Main.hs
177177
ghc-options:
@@ -185,9 +185,9 @@ Executable repa-volume
185185

186186
Executable repa-unit-test
187187
Build-depends:
188-
base == 4.*,
189-
repa == 3.2.*,
190-
QuickCheck >= 2.3 && < 2.7
188+
base == 4.7.*,
189+
repa == 3.2.5.*,
190+
QuickCheck == 2.7.*
191191

192192
Main-is: examples/UnitTesting/UnitTesting.hs
193193
hs-source-dirs: examples/UnitTesting .

repa-io/repa-io.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: repa-io
2-
Version: 3.2.3.4
2+
Version: 3.2.5.1
33
License: BSD3
44
License-file: LICENSE
55
Author: The DPH Team
@@ -18,9 +18,9 @@ Synopsis:
1818

1919
Library
2020
Build-Depends:
21-
base >= 4.6 && < 4.8,
22-
vector >= 0.9 && < 0.11,
23-
binary >= 0.6 && < 0.9,
21+
base == 4.7.*,
22+
vector == 0.10.*,
23+
binary == 0.7.*,
2424
old-time == 1.1.*,
2525
repa == 3.2.*,
2626
bytestring == 0.10.*,

repa/Data/Array/Repa/Arbitrary.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ instance CoArbitrary Z where
7272

7373
instance (Shape a, CoArbitrary a)
7474
=> CoArbitrary (a :. Int) where
75-
coarbitrary (a :. b) = coarbitrary a >< coarbitrary b
75+
coarbitrary (a :. b) = coarbitrary a . coarbitrary b
7676

7777
instance (CoArbitrary sh, CoArbitrary a, Source r a, Shape sh)
7878
=> CoArbitrary (Array r sh a) where
7979
coarbitrary arr
80-
= (coarbitrary . extent $ arr) >< (coarbitrary . toList $ arr)
80+
= (coarbitrary . extent $ arr) . (coarbitrary . toList $ arr)
8181

8282

8383
-- Wrappers -------------------------------------------------------------------

repa/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2001-2013, The Data Parallel Haskell Team
1+
Copyright (c) 2001-2014, The Data Parallel Haskell Team
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

repa/repa.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: repa
2-
Version: 3.2.3.4
2+
Version: 3.2.5.1
33
License: BSD3
44
License-file: LICENSE
55
Author: The DPH Team
@@ -21,12 +21,12 @@ Synopsis:
2121

2222
Library
2323
Build-Depends:
24-
base >= 4.6 && < 4.8,
25-
template-haskell >= 2.8 && < 2.10,
26-
vector >= 0.9 && < 0.11,
24+
base == 4.7.*,
25+
template-haskell == 2.9.*,
26+
vector == 0.10.*,
2727
ghc-prim == 0.3.*,
2828
bytestring == 0.10.*,
29-
QuickCheck >= 2.3 && < 2.7
29+
QuickCheck == 2.7.*
3030

3131
ghc-options:
3232
-Wall -fno-warn-missing-signatures

0 commit comments

Comments
 (0)