Skip to content

Commit aef4a6c

Browse files
committed
Upgrade all cabal files to version 3.0
1 parent 0e571e2 commit aef4a6c

36 files changed

Lines changed: 90 additions & 89 deletions

File tree

packages/distributed-process-async/distributed-process-async.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
cabal-version: 3.0
12
name: distributed-process-async
23
version: 0.2.7
3-
cabal-version: >=1.10
44
build-type: Simple
5-
license: BSD3
5+
license: BSD-3-Clause
66
license-file: LICENCE
77
stability: experimental
88
Copyright: Tim Watson 2012 - 2016

packages/distributed-process-client-server/distributed-process-client-server.cabal

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
cabal-version: 3.0
12
name: distributed-process-client-server
23
version: 0.2.5.1
3-
cabal-version: >=1.8
44
build-type: Simple
5-
license: BSD3
5+
license: BSD-3-Clause
66
license-file: LICENCE
77
stability: experimental
88
Copyright: Tim Watson 2012 - 2017
@@ -17,7 +17,6 @@ description: Modelled after Erlang OTP's gen_server, this framework provides
1717
concurrent, distributed applications with relative ease.
1818
category: Control
1919
Tested-With: GHC==8.2.2
20-
data-dir: ""
2120

2221
source-repository head
2322
type: git
@@ -45,7 +44,6 @@ library
4544
derive == 2.5.5,
4645
uniplate == 1.6.12,
4746
ghc-prim
48-
extensions: CPP
4947
hs-source-dirs: src
5048
ghc-options: -Wall
5149
exposed-modules:
@@ -96,7 +94,6 @@ test-suite ManagedProcessTests
9694
hs-source-dirs:
9795
tests
9896
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
99-
extensions: CPP
10097
main-is: TestManagedProcess.hs
10198

10299
test-suite PrioritisedProcessTests
@@ -131,5 +128,4 @@ test-suite PrioritisedProcessTests
131128
hs-source-dirs:
132129
tests
133130
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
134-
extensions: CPP
135131
main-is: TestPrioritisedProcess.hs

packages/distributed-process-client-server/tests/ManagedProcessCommon.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE ScopedTypeVariables #-}
23
{-# LANGUAGE FlexibleInstances #-}
34
{-# LANGUAGE RecordWildCards #-}

packages/distributed-process-client-server/tests/TestManagedProcess.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE ScopedTypeVariables #-}
23
{-# LANGUAGE RecordWildCards #-}
34

packages/distributed-process-client-server/tests/TestPrioritisedProcess.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE ScopedTypeVariables #-}
23
{-# LANGUAGE DeriveDataTypeable #-}
34
{-# LANGUAGE DeriveGeneric #-}

packages/distributed-process-execution/distributed-process-execution.cabal

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1+
cabal-version: 3.0
12
name: distributed-process-execution
23
version: 0.1.2.2
3-
cabal-version: >=1.8
44
build-type: Simple
5-
license: BSD3
5+
license: BSD-3-Clause
66
license-file: LICENCE
77
stability: experimental
88
Copyright: Tim Watson 2012 - 2013
99
Author: Tim Watson
1010
Maintainer: Tim Watson <watson.timothy@gmail.com>
11-
Stability: experimental
1211
Homepage: http://github.com/haskell-distributed/distributed-process-execution
1312
Bug-Reports: http://github.com/haskell-distributed/distributed-process-execution/issues
1413
synopsis: Execution Framework for The Cloud Haskell Application Platform
@@ -18,7 +17,6 @@ description:
1817
for event management, mailbox buffering and message routing.
1918
category: Control
2019
tested-with: GHC == 7.4.2 GHC == 7.6.2
21-
data-dir: ""
2220
extra-source-files: ChangeLog
2321

2422
source-repository head
@@ -48,7 +46,6 @@ library
4846
derive == 2.5.5,
4947
uniplate == 1.6.12,
5048
ghc-prim
51-
extensions: CPP
5249
hs-source-dirs: src
5350
ghc-options: -Wall
5451
exposed-modules:
@@ -98,7 +95,6 @@ test-suite ExchangeTests
9895
hs-source-dirs:
9996
tests
10097
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -eventlog
101-
extensions: CPP
10298
main-is: TestExchange.hs
10399

104100

@@ -138,6 +134,5 @@ test-suite MailboxTests
138134
hs-source-dirs:
139135
tests
140136
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -eventlog
141-
extensions: CPP
142137
main-is: TestMailbox.hs
143138
other-modules: MailboxTestFilters

packages/distributed-process-execution/src/Control/Distributed/Process/Execution/Mailbox.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE DeriveDataTypeable #-}
23
{-# LANGUAGE DeriveGeneric #-}
34
{-# LANGUAGE StandaloneDeriving #-}

packages/distributed-process-execution/tests/MailboxTestFilters.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE TemplateHaskell #-}
23
{-# LANGUAGE ScopedTypeVariables #-}
34

packages/distributed-process-execution/tests/TestExchange.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE CPP #-}
12
{-# LANGUAGE BangPatterns #-}
23
{-# LANGUAGE TemplateHaskell #-}
34
{-# LANGUAGE ScopedTypeVariables #-}

packages/distributed-process-execution/tests/TestMailbox.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{-# LANGUAGE BangPatterns #-}
2+
{-# LANGUAGE CPP #-}
23
{-# LANGUAGE TemplateHaskell #-}
34
{-# LANGUAGE ScopedTypeVariables #-}
45

0 commit comments

Comments
 (0)