Skip to content

Commit

Permalink
More Hackage wibbles
Browse files Browse the repository at this point in the history
Add `default-language` field all over the place.
  • Loading branch information
treeowl committed Jul 14, 2020
1 parent 2930e27 commit 97fe43c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions containers-tests/containers-tests.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ source-repository head

-- Copy of containers library,
library
default-language: Haskell2010
-- this is important for testing; may it affect benchmarks?
cpp-options: -DTESTING
build-depends:
Expand Down Expand Up @@ -99,6 +100,7 @@ library
-----------------------------

benchmark intmap-benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: IntMap.hs
Expand All @@ -110,6 +112,7 @@ benchmark intmap-benchmarks
, gauge >=0.2.3 && <0.3

benchmark intset-benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: IntSet.hs
Expand All @@ -121,6 +124,7 @@ benchmark intset-benchmarks
, gauge >=0.2.3 && <0.3

benchmark map-benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Map.hs
Expand All @@ -133,6 +137,7 @@ benchmark map-benchmarks
, transformers

benchmark sequence-benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Sequence.hs
Expand All @@ -146,6 +151,7 @@ benchmark sequence-benchmarks
, transformers

benchmark set-benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Set.hs
Expand All @@ -157,6 +163,7 @@ benchmark set-benchmarks
, gauge >=0.2.3 && <0.3

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

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

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

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

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

benchmark lookupge-map
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks/LookupGE
main-is: Map.hs
Expand All @@ -231,6 +243,7 @@ benchmark lookupge-map
-- plus the testing stuff.

test-suite map-lazy-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: map-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -254,6 +267,7 @@ test-suite map-lazy-properties
, transformers

test-suite map-strict-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: map-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -277,6 +291,7 @@ test-suite map-strict-properties
, transformers

test-suite bitqueue-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: bitqueue-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -293,6 +308,7 @@ test-suite bitqueue-properties
, test-framework-quickcheck2

test-suite set-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: set-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -316,6 +332,7 @@ test-suite set-properties
, transformers

test-suite intmap-lazy-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: intmap-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -339,6 +356,7 @@ test-suite intmap-lazy-properties
, test-framework-quickcheck2

test-suite intmap-strict-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: intmap-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -364,6 +382,7 @@ test-suite intmap-strict-properties
, test-framework-quickcheck2

test-suite intset-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: intset-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -387,6 +406,7 @@ test-suite intset-properties
, test-framework-quickcheck2

test-suite seq-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: seq-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -408,6 +428,7 @@ test-suite seq-properties
, transformers

test-suite tree-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: tree-properties.hs
type: exitcode-stdio-1.0
Expand All @@ -429,6 +450,7 @@ test-suite tree-properties
, transformers

test-suite map-strictness-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: map-strictness.hs
type: exitcode-stdio-1.0
Expand All @@ -448,6 +470,7 @@ test-suite map-strictness-properties
CPP

test-suite intmap-strictness-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: intmap-strictness.hs
type: exitcode-stdio-1.0
Expand All @@ -468,6 +491,7 @@ test-suite intmap-strictness-properties
ghc-options: -Wall

test-suite intset-strictness-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: intset-strictness.hs
type: exitcode-stdio-1.0
Expand All @@ -488,6 +512,7 @@ test-suite intset-strictness-properties
ghc-options: -Wall

test-suite listutils-properties
default-language: Haskell2010
hs-source-dirs: tests
main-is: listutils-properties.hs
type: exitcode-stdio-1.0
Expand Down
1 change: 1 addition & 0 deletions containers/containers.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ source-repository head
location: http://github.com/haskell/containers.git

Library
default-language: Haskell2010
build-depends: base >= 4.6 && < 5, array >= 0.4.0.0, deepseq >= 1.2 && < 1.5
hs-source-dirs: src
ghc-options: -O2 -Wall
Expand Down

0 comments on commit 97fe43c

Please sign in to comment.