Skip to content

Commit 97fe43c

Browse files
committed
More Hackage wibbles
Add `default-language` field all over the place.
1 parent 2930e27 commit 97fe43c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

containers-tests/containers-tests.cabal

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ source-repository head
3434

3535
-- Copy of containers library,
3636
library
37+
default-language: Haskell2010
3738
-- this is important for testing; may it affect benchmarks?
3839
cpp-options: -DTESTING
3940
build-depends:
@@ -99,6 +100,7 @@ library
99100
-----------------------------
100101

101102
benchmark intmap-benchmarks
103+
default-language: Haskell2010
102104
type: exitcode-stdio-1.0
103105
hs-source-dirs: benchmarks
104106
main-is: IntMap.hs
@@ -110,6 +112,7 @@ benchmark intmap-benchmarks
110112
, gauge >=0.2.3 && <0.3
111113

112114
benchmark intset-benchmarks
115+
default-language: Haskell2010
113116
type: exitcode-stdio-1.0
114117
hs-source-dirs: benchmarks
115118
main-is: IntSet.hs
@@ -121,6 +124,7 @@ benchmark intset-benchmarks
121124
, gauge >=0.2.3 && <0.3
122125

123126
benchmark map-benchmarks
127+
default-language: Haskell2010
124128
type: exitcode-stdio-1.0
125129
hs-source-dirs: benchmarks
126130
main-is: Map.hs
@@ -133,6 +137,7 @@ benchmark map-benchmarks
133137
, transformers
134138

135139
benchmark sequence-benchmarks
140+
default-language: Haskell2010
136141
type: exitcode-stdio-1.0
137142
hs-source-dirs: benchmarks
138143
main-is: Sequence.hs
@@ -146,6 +151,7 @@ benchmark sequence-benchmarks
146151
, transformers
147152

148153
benchmark set-benchmarks
154+
default-language: Haskell2010
149155
type: exitcode-stdio-1.0
150156
hs-source-dirs: benchmarks
151157
main-is: Set.hs
@@ -157,6 +163,7 @@ benchmark set-benchmarks
157163
, gauge >=0.2.3 && <0.3
158164

159165
benchmark set-operations-intmap
166+
default-language: Haskell2010
160167
type: exitcode-stdio-1.0
161168
hs-source-dirs: benchmarks/SetOperations
162169
main-is: SetOperations-IntMap.hs
@@ -168,6 +175,7 @@ benchmark set-operations-intmap
168175
, gauge >=0.2.3 && <0.3
169176

170177
benchmark set-operations-intset
178+
default-language: Haskell2010
171179
type: exitcode-stdio-1.0
172180
hs-source-dirs: benchmarks/SetOperations
173181
main-is: SetOperations-IntSet.hs
@@ -179,6 +187,7 @@ benchmark set-operations-intset
179187
, gauge >=0.2.3 && <0.3
180188

181189
benchmark set-operations-map
190+
default-language: Haskell2010
182191
type: exitcode-stdio-1.0
183192
hs-source-dirs: benchmarks/SetOperations
184193
main-is: SetOperations-Map.hs
@@ -190,6 +199,7 @@ benchmark set-operations-map
190199
, gauge >=0.2.3 && <0.3
191200

192201
benchmark set-operations-set
202+
default-language: Haskell2010
193203
type: exitcode-stdio-1.0
194204
hs-source-dirs: benchmarks/SetOperations
195205
main-is: SetOperations-Set.hs
@@ -201,6 +211,7 @@ benchmark set-operations-set
201211
, gauge >=0.2.3 && <0.3
202212

203213
benchmark lookupge-intmap
214+
default-language: Haskell2010
204215
type: exitcode-stdio-1.0
205216
hs-source-dirs: benchmarks/LookupGE
206217
main-is: IntMap.hs
@@ -212,6 +223,7 @@ benchmark lookupge-intmap
212223
, gauge >=0.2.3 && <0.3
213224

214225
benchmark lookupge-map
226+
default-language: Haskell2010
215227
type: exitcode-stdio-1.0
216228
hs-source-dirs: benchmarks/LookupGE
217229
main-is: Map.hs
@@ -231,6 +243,7 @@ benchmark lookupge-map
231243
-- plus the testing stuff.
232244

233245
test-suite map-lazy-properties
246+
default-language: Haskell2010
234247
hs-source-dirs: tests
235248
main-is: map-properties.hs
236249
type: exitcode-stdio-1.0
@@ -254,6 +267,7 @@ test-suite map-lazy-properties
254267
, transformers
255268

256269
test-suite map-strict-properties
270+
default-language: Haskell2010
257271
hs-source-dirs: tests
258272
main-is: map-properties.hs
259273
type: exitcode-stdio-1.0
@@ -277,6 +291,7 @@ test-suite map-strict-properties
277291
, transformers
278292

279293
test-suite bitqueue-properties
294+
default-language: Haskell2010
280295
hs-source-dirs: tests
281296
main-is: bitqueue-properties.hs
282297
type: exitcode-stdio-1.0
@@ -293,6 +308,7 @@ test-suite bitqueue-properties
293308
, test-framework-quickcheck2
294309

295310
test-suite set-properties
311+
default-language: Haskell2010
296312
hs-source-dirs: tests
297313
main-is: set-properties.hs
298314
type: exitcode-stdio-1.0
@@ -316,6 +332,7 @@ test-suite set-properties
316332
, transformers
317333

318334
test-suite intmap-lazy-properties
335+
default-language: Haskell2010
319336
hs-source-dirs: tests
320337
main-is: intmap-properties.hs
321338
type: exitcode-stdio-1.0
@@ -339,6 +356,7 @@ test-suite intmap-lazy-properties
339356
, test-framework-quickcheck2
340357

341358
test-suite intmap-strict-properties
359+
default-language: Haskell2010
342360
hs-source-dirs: tests
343361
main-is: intmap-properties.hs
344362
type: exitcode-stdio-1.0
@@ -364,6 +382,7 @@ test-suite intmap-strict-properties
364382
, test-framework-quickcheck2
365383

366384
test-suite intset-properties
385+
default-language: Haskell2010
367386
hs-source-dirs: tests
368387
main-is: intset-properties.hs
369388
type: exitcode-stdio-1.0
@@ -387,6 +406,7 @@ test-suite intset-properties
387406
, test-framework-quickcheck2
388407

389408
test-suite seq-properties
409+
default-language: Haskell2010
390410
hs-source-dirs: tests
391411
main-is: seq-properties.hs
392412
type: exitcode-stdio-1.0
@@ -408,6 +428,7 @@ test-suite seq-properties
408428
, transformers
409429

410430
test-suite tree-properties
431+
default-language: Haskell2010
411432
hs-source-dirs: tests
412433
main-is: tree-properties.hs
413434
type: exitcode-stdio-1.0
@@ -429,6 +450,7 @@ test-suite tree-properties
429450
, transformers
430451

431452
test-suite map-strictness-properties
453+
default-language: Haskell2010
432454
hs-source-dirs: tests
433455
main-is: map-strictness.hs
434456
type: exitcode-stdio-1.0
@@ -448,6 +470,7 @@ test-suite map-strictness-properties
448470
CPP
449471

450472
test-suite intmap-strictness-properties
473+
default-language: Haskell2010
451474
hs-source-dirs: tests
452475
main-is: intmap-strictness.hs
453476
type: exitcode-stdio-1.0
@@ -468,6 +491,7 @@ test-suite intmap-strictness-properties
468491
ghc-options: -Wall
469492

470493
test-suite intset-strictness-properties
494+
default-language: Haskell2010
471495
hs-source-dirs: tests
472496
main-is: intset-strictness.hs
473497
type: exitcode-stdio-1.0
@@ -488,6 +512,7 @@ test-suite intset-strictness-properties
488512
ghc-options: -Wall
489513

490514
test-suite listutils-properties
515+
default-language: Haskell2010
491516
hs-source-dirs: tests
492517
main-is: listutils-properties.hs
493518
type: exitcode-stdio-1.0

containers/containers.cabal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ source-repository head
3232
location: http://github.com/haskell/containers.git
3333

3434
Library
35+
default-language: Haskell2010
3536
build-depends: base >= 4.6 && < 5, array >= 0.4.0.0, deepseq >= 1.2 && < 1.5
3637
hs-source-dirs: src
3738
ghc-options: -O2 -Wall

0 commit comments

Comments
 (0)