Skip to content

Commit

Permalink
Rerun cabal-files build rule, picking up package.dhall reformats, #536.
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Apr 23, 2021
1 parent 63064ff commit ecacca3
Show file tree
Hide file tree
Showing 32 changed files with 2,998 additions and 2,889 deletions.
170 changes: 85 additions & 85 deletions lang-haskell/app-serve/package.dhall
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let defs = ./../defaults.dhall
let defs = ./../defaults.dhall

in let deps =
[ "aeson"
Expand Down Expand Up @@ -50,91 +50,91 @@ in let deps =
, "detour-via-sci"
, "siggy-chardust"
]

in defs
./../default-extensions.dhall
{ name =
"app-serve"
, homepage =
"https://github.com/blockscope/flare-timing/lang-haskell/app-serve#readme"
, synopsis =
"A collection of apps and libraries for scoring hang gliding and paragliding competitions."
, description =
"Scoring and viewing hang gliding and paragliding competitions."
, category =
"Data, Parsing"
, dependencies =
defs.dependencies
, ghc-options =
[ "-Wall", "-fplugin Data.UnitsOfMeasure.Plugin" ]
, executables =
{ ft-comp-py =
{ dependencies =
deps # [ "servant-py" ]
, other-modules =
[ "Serve.Alt"
, "Serve.Api"
, "Serve.App"
, "Serve.Area"
, "Serve.Config"
, "Serve.Error"
, "Serve.Pilot"
, "Serve.PointDiff"
, "Serve.Route"
, "Serve.Task"
, "Serve.Track"
, "Serve.Validity"
, "ServeOptions"
, "ServeSwagger"
]
, main =
"GenPyClient.hs"
, source-dirs =
"src"
}
, ft-comp-serve =
{ dependencies =
deps
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, other-modules =
[ "Serve.Alt"
, "Serve.Api"
, "Serve.App"
, "Serve.Area"
, "Serve.Config"
, "Serve.Error"
, "Serve.Pilot"
, "Serve.PointDiff"
, "Serve.Route"
, "Serve.Task"
, "Serve.Track"
, "Serve.Validity"
, "ServeOptions"
, "ServeSwagger"
]
, main =
"ServeMain.hs"
, source-dirs =
"src"

in defs
./../default-extensions.dhall
{ name =
"app-serve"
, homepage =
"https://github.com/blockscope/flare-timing/lang-haskell/app-serve#readme"
, synopsis =
"A collection of apps and libraries for scoring hang gliding and paragliding competitions."
, description =
"Scoring and viewing hang gliding and paragliding competitions."
, category =
"Data, Parsing"
, dependencies =
defs.dependencies
, ghc-options =
[ "-Wall", "-fplugin Data.UnitsOfMeasure.Plugin" ]
, executables =
{ ft-comp-py =
{ dependencies =
deps # [ "servant-py" ]
, other-modules =
[ "Serve.Alt"
, "Serve.Api"
, "Serve.App"
, "Serve.Area"
, "Serve.Config"
, "Serve.Error"
, "Serve.Pilot"
, "Serve.PointDiff"
, "Serve.Route"
, "Serve.Task"
, "Serve.Track"
, "Serve.Validity"
, "ServeOptions"
, "ServeSwagger"
]
, main =
"GenPyClient.hs"
, source-dirs =
"src"
}
, ft-comp-serve =
{ dependencies =
deps
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, other-modules =
[ "Serve.Alt"
, "Serve.Api"
, "Serve.App"
, "Serve.Area"
, "Serve.Config"
, "Serve.Error"
, "Serve.Pilot"
, "Serve.PointDiff"
, "Serve.Route"
, "Serve.Task"
, "Serve.Track"
, "Serve.Validity"
, "ServeOptions"
, "ServeSwagger"
]
, main =
"ServeMain.hs"
, source-dirs =
"src"
}
}
}
, tests =
{ hlint =
{ dependencies =
[ "base", "hlint", "flight-comp" ]
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, main =
"HLint.hs"
, source-dirs =
"test-suite-hlint"
, when =
{ condition =
"flag(suppress-failing-tests)"
, buildable =
False
, tests =
{ hlint =
{ dependencies =
[ "base", "hlint", "flight-comp" ]
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, main =
"HLint.hs"
, source-dirs =
"test-suite-hlint"
, when =
{ condition =
"flag(suppress-failing-tests)"
, buildable =
False
}
}
}
}
}
2 changes: 1 addition & 1 deletion lang-haskell/app-view/package.dhall
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let defs = ./../defaults.dhall
let defs = ./../defaults.dhall

in defs
./../default-extensions-ghcjs.dhall
Expand Down
2 changes: 1 addition & 1 deletion lang-haskell/build/package.dhall
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let mkHome = ./../home.dhall
let mkHome = ./../home.dhall

in ./../defaults.dhall
{ name =
Expand Down
84 changes: 42 additions & 42 deletions lang-haskell/clip/package.dhall
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
let mkHome = ./../home.dhall
let mkHome = ./../home.dhall

in let defs = ./../defaults.dhall

in defs
./../default-extensions.dhall
{ name =
"flight-clip"
, homepage =
mkHome "lang-haskell/clip#readme"
, version =
"1.1.0"
, synopsis =
"Clipping a pilot's tracklogs."
, description =
"Provides types and typeclasses for clipping a tracklog."
, category =
"Data, Parsing, Flight"
, dependencies =
defs.dependencies # [ "split", "time" ]
, library =
{ source-dirs =
"library"
, exposed-modules =
[ "Flight.Clip", "Flight.Track.Range" ]
}
, tests =
./../default-tests.dhall
{ doctest =
{ dependencies =
[ "doctest", "QuickCheck" ]
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, main =
"DocTest.hs"
, source-dirs =
[ "library", "test-suite-doctest" ]
, when =
{ condition =
"flag(suppress-failing-tests)"
, buildable =
False

in defs
./../default-extensions.dhall
{ name =
"flight-clip"
, homepage =
mkHome "lang-haskell/clip#readme"
, version =
"1.1.0"
, synopsis =
"Clipping a pilot's tracklogs."
, description =
"Provides types and typeclasses for clipping a tracklog."
, category =
"Data, Parsing, Flight"
, dependencies =
defs.dependencies # [ "split", "time" ]
, library =
{ source-dirs =
"library"
, exposed-modules =
[ "Flight.Clip", "Flight.Track.Range" ]
}
, tests =
./../default-tests.dhall
{ doctest =
{ dependencies =
[ "doctest", "QuickCheck" ]
, ghc-options =
[ "-rtsopts", "-threaded", "-with-rtsopts=-N" ]
, main =
"DocTest.hs"
, source-dirs =
[ "library", "test-suite-doctest" ]
, when =
{ condition =
"flag(suppress-failing-tests)"
, buildable =
False
}
}
}
}
}
}
74 changes: 37 additions & 37 deletions lang-haskell/cmd/package.dhall
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
let mkHome = ./../home.dhall
let mkHome = ./../home.dhall

in let defs = ./../defaults.dhall

in defs
./../default-extensions.dhall
{ name =
"flight-cmd"
, homepage =
mkHome "lang-haskell/cmd#readme"
, synopsis =
"Command line options."
, description =
"Command line options such as file or directory, task or pilot."
, category =
"Flight"
, dependencies =
defs.dependencies
# [ "directory"
, "filepath"
, "filemanip"
, "raw-strings-qq"
, "cmdargs"
, "mtl"
, "transformers"
, "flight-span"
]
, library =
{ source-dirs =
"library"
, exposed-modules =
[ "Flight.Cmd.Options"
, "Flight.Cmd.BatchOptions"
, "Flight.Cmd.ServeOptions"
, "Flight.Cmd.Paths"
]

in defs
./../default-extensions.dhall
{ name =
"flight-cmd"
, homepage =
mkHome "lang-haskell/cmd#readme"
, synopsis =
"Command line options."
, description =
"Command line options such as file or directory, task or pilot."
, category =
"Flight"
, dependencies =
defs.dependencies
# [ "directory"
, "filepath"
, "filemanip"
, "raw-strings-qq"
, "cmdargs"
, "mtl"
, "transformers"
, "flight-span"
]
, library =
{ source-dirs =
"library"
, exposed-modules =
[ "Flight.Cmd.Options"
, "Flight.Cmd.BatchOptions"
, "Flight.Cmd.ServeOptions"
, "Flight.Cmd.Paths"
]
}
, tests =
./../default-tests.dhall
}
, tests =
./../default-tests.dhall
}
Loading

0 comments on commit ecacca3

Please sign in to comment.