File: rss2irc.cabal

package info (click to toggle)
rss2irc 1.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 132 kB
  • sloc: haskell: 733; makefile: 2
file content (57 lines) | stat: -rw-r--r-- 2,413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name:                rss2irc
version:             1.0.6
homepage:            http://hackage.haskell.org/package/rss2irc
license:             BSD3
license-file:        LICENSE
author:              Don Stewart <dons@galois.com>, Simon Michael <simon@joyful.com>
maintainer:          Simon Michael <simon@joyful.com>
category:            IRC
synopsis:            watches an RSS/Atom feed and writes it to an IRC channel
description:         
 rss2irc is an IRC bot that polls an RSS or Atom feed and announces updates to an IRC channel, with options for customizing output and behavior.
 It aims to be an easy-to-use, reliable, well-behaved bot.
 .
 Usage: @rss2irc FEEDURL [BOTNAME\@IRCSERVER/#CHANNEL] [OPTS]@
 .
 For example, to announce Hackage uploads (like hackagebot):
 .
 > $ rss2irc http://hackage.haskell.org/packages/archive/recent.rss mybot@irc.freenode.org/#haskell

stability:           beta
tested-with:         GHC==7.6.3
cabal-version:       >= 1.6
build-type:          Simple
extra-source-files:  CHANGES

executable rss2irc
    main-is:         rss2irc.hs
    other-modules:   Base, Utils, Feed, Irc
    ghc-options:     -threaded -Wall -fno-warn-orphans -fno-warn-unused-do-bind
    build-depends:
                     base                  >= 4 && < 5
                    ,bytestring
                    ,cabal-file-th
                    ,cmdargs
                    ,containers
                    ,deepseq
                    ,irc                   >= 0.5 && < 0.6
                    ,feed                  >= 0.3.9 && < 0.3.10
                    ,http-client           >= 0.2.1
                    ,http-conduit          >= 1.9
                    ,resourcet             >= 0.4.4
                    ,http-types            >= 0.6.4 && < 0.9
                    ,io-storage            >= 0.3 && < 0.4
                    ,network               >= 2.4 && < 2.5
                    ,old-locale
                    ,parsec
                    ,regexpr               >= 0.5 && < 0.6
                    ,safe                  >= 0.2 && < 0.4
                    ,split                 >= 0.2 && < 0.3
                    ,text                  == 0.11.*
                    ,transformers          >= 0.2 && < 0.4
                    ,time                  >= 1.1 && < 1.5
                    ,utf8-string

source-repository head
  type:     darcs
  location: http://hub.darcs.net/simon/rss2irc