packages feed

cblrepo-0.19.0: cblrepo.cabal

name: cblrepo
version: 0.19.0
cabal-version: >= 1.6
license: OtherLicense
license-file: LICENSE-2.0
copyright: Copyright (c) 2011 Magnus Therning
author: Magnus Therning
maintainer: Magnus Therning <magnus@therning.org>
stability: experimental
bug-reports: mailto:magnus@therning.org
synopsis: Tool to maintain a database of CABAL packages and their dependencies
description:
    Helper tool for people maintaining a set of CABAL packages for their
    distribution. It maintains a database of packages and verifies dependencies
    of the entire set as packages are added or updated. It also makes it trivial
    to track packages as new versions are released on Hackage.

    It can also be used to build source packages for the Arch Linux
    distribution.
category: Utils, Distribution
build-type: Custom

executable cblrepo
    hs-source-dirs: src
    main-is: Main.hs
    other-modules:
        Add
        BuildPkgs
        BumpPkgs
        ConvertDB
        CreateConfig
        Extract
        ListPkgs
        OldPkgDB
        PkgBuild
        PkgDB
        Remove
        Update
        Upgrades
        Util.Cabal
        Util.Cfg
        Util.Dist
        Util.HackageIndex
        Util.Misc
        Util.Translation
        Versions
    build-depends:
        base ==4.8.*,
        filepath ==1.4.*,
        directory ==1.2.*,
        Cabal ==1.22.*,
        transformers ==0.4.*,
        bytestring ==0.10.*,
        tar ==0.4.*,
        zlib ==0.6.*,
        mtl ==2.2.*,
        process ==1.2.*,
        Unixutils ==1.54.*,
        unix ==2.7.*,
        ansi-wl-pprint ==0.6.*,
        aeson ==0.10.*,
        stringsearch ==0.3.*,
        optparse-applicative ==0.11.*,
        safe ==0.3.*,
        containers ==0.5.*,
        utf8-string ==1.0.*

Source-Repository head
    Type:                 git
    Location:             https://github.com/magthe/cblrepo.git

-- vim: set tw=0 :