slackbuilder/slackbuilder.cabal

101 lines
2.1 KiB
Plaintext
Raw Normal View History

2023-08-09 20:59:42 +02:00
cabal-version: 2.4
name: slackbuilder
2023-09-03 10:26:43 +02:00
version: 1.0.0
2023-12-23 22:15:10 +01:00
synopsis: Tool to automatically update Slackware build scripts.
bug-reports: https://git.caraus.tech/OSS/slackbuilder/issues
license: MPL-2.0
license-files: LICENSE
copyright: (c) 2023 Eugen Wissner
author: Eugen Wissner
maintainer: belka@caraus.de
category: Build
extra-source-files: CHANGELOG.md
common dependencies
build-depends:
2023-11-07 19:36:40 +01:00
base >= 4.16 && < 5,
2023-10-03 18:53:41 +02:00
bytestring ^>= 0.11.0,
containers ^>= 0.6,
cryptonite >= 0.30,
2023-10-20 19:23:21 +02:00
directory ^>= 1.3.8,
2023-12-11 08:14:55 +01:00
exceptions >= 0.10,
filepath ^>= 1.4.2,
2023-10-03 18:53:41 +02:00
megaparsec ^>= 9.5,
modern-uri ^>= 0.3.6,
2023-10-03 18:53:41 +02:00
memory ^>= 0.18,
parser-combinators ^>= 1.3,
2023-10-08 12:28:46 +02:00
process ^>= 1.6.18,
req ^>= 3.13,
text ^>= 2.0,
tomland ^>= 1.3.3,
2023-10-04 22:36:19 +02:00
transformers ^>= 0.5.6,
word8 ^>= 0.1.3
default-language: Haskell2010
2023-09-03 10:26:43 +02:00
default-extensions:
DataKinds
DuplicateRecordFields
2023-10-03 18:53:41 +02:00
ExplicitForAll
2023-09-03 10:26:43 +02:00
LambdaCase
NamedFieldPuns
OverloadedStrings
RecordWildCards
QuasiQuotes
TemplateHaskell
2023-10-03 18:53:41 +02:00
TupleSections
2023-09-03 10:26:43 +02:00
TypeApplications
library
import: dependencies
exposed-modules:
SlackBuilder.Config
SlackBuilder.Download
2023-10-03 18:53:41 +02:00
SlackBuilder.Info
SlackBuilder.Package
SlackBuilder.Trans
hs-source-dirs: lib
build-depends:
conduit ^>= 1.3.5,
http-client ^>= 0.7
ghc-options: -Wall
executable slackbuilder
import: dependencies
main-is: Main.hs
other-modules:
SlackBuilder.CommandLine
SlackBuilder.LatestVersionCheck
2023-09-03 10:26:43 +02:00
build-depends:
aeson ^>= 2.2.0,
2023-10-20 19:23:21 +02:00
ansi-terminal ^>= 1.0,
2023-09-03 10:26:43 +02:00
optparse-applicative ^>= 0.18.1,
slackbuilder,
2023-09-03 10:26:43 +02:00
unordered-containers ^>= 0.2.19,
vector ^>= 0.13.0
2023-11-07 19:36:40 +01:00
hs-source-dirs: src
2023-09-03 10:26:43 +02:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
2023-09-03 10:26:43 +02:00
test-suite slackbuilder-test
import: dependencies
2023-09-03 10:26:43 +02:00
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
2023-10-03 18:53:41 +02:00
SlackBuilder.InfoSpec
SlackBuilder.PackageSpec
hs-source-dirs: tests
2023-09-03 10:26:43 +02:00
build-depends:
hspec >= 2.10.9 && < 2.12,
2023-10-03 18:53:41 +02:00
hspec-megaparsec ^>= 2.2,
slackbuilder
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-tool-depends:
hspec-discover:hspec-discover