packages feed

lat-0.6: lat.cabal

name               : lat
version            : 0.6
license            : GPL-3
author             : Magnus Therning
maintainer         : magnus@therning.org
bug-reports        : mailto: magnus@therning.org
copyright          : 2010 Magnus Therning
synopsis           : Tool to track security alerts on LWN
description        : 
    lat (Linux Alert Tracker) is a tool for tracking security alerts published
    on Linux Weekly News (http://lwn.net/Security/).  It does this by scraping
    information from the site and recording it in a local database (sqlite3).

    Alerts are organised by distribution in the same way as on the LWN site.
    They can also be filtered so that only alerts on packages of interest to
    the user are shown.

    It is also possible to directly from the tool raise a bug in a bugtracker
    based on an alert.  (Only Jira is supported yet.)

    The envisioned user is someone who's interested in following the security
    alerts of a specific distribution, e.g. someone who's basing a project on
    a sub-set of packages from a distribution.
category           : Utils
license-file       : LICENSE
build-type         : Simple
cabal-version      : >= 1.6
extra-source-files : misc/zshcompletion._lat

source-repository head
    type     : git
    location : https://github.com/magthe/lat.git

executable lat
    hs-source-dirs : src
    main-is        : lat.hs
    other-modules :
        AlertDB
        Commands
        Commands.ArgTypes
        Commands.Distro
        Commands.Vulns
        Filter
        LWN
        RepEng
        Report
        Types
    build-depends :
        base ==4.3.*,
        ansi-wl-pprint ==0.6.*,
        time ==1.2.*,
        hsini ==0.1.*,
        regex-compat ==0.93.*,
        filepath ==1.2.*,
        directory ==1.1.*,
        haskell98 ==1.1.*,
        HDBC-sqlite3 ==2.3.*,
        HDBC ==2.2.*,
        mtl ==2.0.*,
        haxr ==3000.8.*,
        tagsoup ==0.12.*,
        old-locale ==1.0.*,
        HTTP ==4000.1.*,
        cmdargs ==0.7.*
    ghc-options :
        -Wall -fno-warn-missing-signatures -fno-warn-name-shadowing
        -fno-warn-orphans