packages feed

pkgtreediff-0.5.0: pkgtreediff.cabal

cabal-version:       1.18
name:                pkgtreediff
version:             0.5.0
synopsis:            RPM package tree diff tool
description:         Tool for comparing RPM packages and versions in OS dist trees or instances.
homepage:            https://github.com/juhp/pkgtreediff
bug-reports:         https://github.com/juhp/pkgtreediff/issues
license:             GPL-3
license-file:        LICENSE
author:              Jens Petersen
maintainer:          juhpetersen@gmail.com
copyright:           2019-2021 Jens Petersen
category:            Utility
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
                   , TODO
tested-with:         GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.1
                     GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5

source-repository head
  type:                git
  location:            https://github.com/juhp/pkgtreediff.git

executable pkgtreediff
  main-is:             src/Main.hs
  other-modules:       Paths_pkgtreediff

  build-depends:       async
                     , base < 5
                     , directory
                     , extra
                     , filepath
                     , koji
                     , Glob
                     , http-client >= 0.5.0
                     , http-client-tls
                     , http-directory >= 0.1.4 && (< 0.1.6 || >= 0.1.8)
                     , pkgtreediff
                     , rpm-nvr
                     , simple-cmd >= 0.1.4
                     , simple-cmd-args
                     , text
  if impl(ghc<8.0)
      build-depends: semigroups
  if impl(ghc<8.4)
       build-depends: http-common < 0.8.3.4

  ghc-options:         -Wall -threaded
  default-language:    Haskell2010

library
  build-depends:       base < 5
  exposed-modules:     Distribution.RPM.PackageTreeDiff
  hs-source-dirs:      src

  build-depends:       base < 5
                     , rpm-nvr >= 0.1.1
  if impl(ghc<8.0)
      build-depends: semigroups

  default-language:    Haskell2010
  ghc-options:         -Wall
  if impl(ghc >= 8.0)
    ghc-options:       -Wcompat
                       -Widentities
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wredundant-constraints
  if impl(ghc >= 8.2)
    ghc-options:       -fhide-source-paths
  if impl(ghc >= 8.4)
    ghc-options:       -Wmissing-export-lists
                       -Wpartial-fields
  if impl(ghc >= 8.10)
    ghc-options:       -Wunused-packages