summaryrefslogtreecommitdiff
path: root/presence.cabal
blob: cde0262f82839e7a2d0ced1cfb302a5c9a8c961e (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: presence
version: 0.0.1
cabal-version: >=1.2
build-type: Simple
license: AllRightsReserved
synopsis: XMPP Server which detects unix logins
description: When users login to your localhost, their presence is detected and announced
             to connected xmpp clients.  presence is a modern XMPP variant of the old Unix Talk
             program. Eventually, this will be expanded to become a peer-to-peer service allowing
             xmpp instant messaging between separate computers as well. And somewhere down the
             road, extended again to make use of Jingle to facilitate VOIP.
author: Joe Crayne
data-dir: ""
 
executable presence
    buildable: True
    cpp-options: -DRENDERFLUSH
    c-sources: Presence/monitortty.c
    hs-source-dirs: . Presence
    ghc-prof-options: -DNOUTMP
    ghc-options: -O2 -fwarn-unused-binds -threaded
    build-depends: base,
                   binary,
                   blaze-builder,
                   bytestring,
                   conduit (>=1.0.4),
                   conduit-extra,
                   containers,
                   cpu,
                   data-default,
                   deepseq,
                   directory,
                   filepath,
                   hinotify,
                   mmorph,
                   mtl,
                   network,
                   process,
                   random,
                   resourcet,
                   stm,
                   template-haskell,
                   text (>=0.11.2.0),
                   time,
                   transformers,
                   unix,
                   void,
                   xml-conduit,
                   xml-types
    main-is: xmppServer.hs
    other-modules: ByteStringOperators,
                   ClientState,
                   ConfigFiles,
                   ConnectionKey,
                   ConsoleWriter,
                   Control.Concurrent.STM.StatusCache,
                   Control.Concurrent.STM.UpdateStream,
                   ControlMaybe,
                   Data.BitSyntax,
                   DNSCache,
                   EventUtil,
                   FGConsole,
                   GetHostByAddr,
                   LocalPeerCred,
                   LockedChan,
                   Logging,
                   Nesting,
                   Paths,
                   PeerResolve,
                   Server,
                   SockAddr,
                   SocketLike,
                   TraversableT,
                   UTmp,
                   XMPPServer
 
executable whosocket
    main-is: whosocket.hs
    hs-source-dirs: . Presence
    cpp-options: -DRENDERFLUSH
    ghc-options: -O2 -fwarn-unused-binds -threaded
    build-depends: base,
                   binary,
                   bytestring,
                   containers,
                   cpu,
                   deepseq,
                   directory,
                   mtl,
                   network,
                   template-haskell,
                   text (>=0.11.2.0),
                   unix
    other-modules: ByteStringOperators,
                   ControlMaybe,
                   Data.BitSyntax,
                   LocalPeerCred,
                   Logging,
                   Paths,
                   SockAddr,
                   SocketLike,
                   UTmp

executable nalias2
    main-is: nalias2.hs
    hs-source-dirs: . Presence
    ghc-options: -O2 -fwarn-unused-binds -threaded
    build-depends: base,
                   text (>=0.11.2.0)
    other-modules: DNSCache, ControlMaybe, GetHostByAddr, SockAddr


executable consolation
    main-is: consolation.hs
    hs-source-dirs: . Presence
    ghc-options: -O2 -fwarn-unused-binds -threaded
    cpp-options: -DRENDERFLUSH
    c-sources: Presence/monitortty.c
    build-depends: base,
                   binary,
                   blaze-builder,
                   bytestring,
                   conduit (>=1.0.4),
                   conduit-extra,
                   containers,
                   cpu,
                   data-default,
                   deepseq,
                   directory,
                   filepath,
                   hinotify,
                   mmorph,
                   mtl,
                   network,
                   process,
                   random,
                   resourcet,
                   stm,
                   template-haskell,
                   text (>=0.11.2.0),
                   time,
                   transformers,
                   unix,
                   void,
                   xml-conduit,
                   xml-types
    main-is: xmppServer.hs
    other-modules: ByteStringOperators,
                   ClientState,
                   ConfigFiles,
                   ConnectionKey,
                   ConsoleWriter,
                   Control.Concurrent.STM.StatusCache,
                   Control.Concurrent.STM.UpdateStream,
                   ControlMaybe,
                   DNSCache,
                   Data.BitSyntax,
                   EventUtil,
                   FGConsole,
                   GetHostByAddr,
                   LocalPeerCred,
                   LockedChan,
                   Logging,
                   Nesting,
                   Paths,
                   PeerResolve,
                   Server,
                   SockAddr,
                   SocketLike,
                   TraversableT,
                   UTmp,
                   XMPPServer

executable pwrite
    main-is: pwrite.hs
    hs-source-dirs: . Presence
    ghc-options: -O2 -fwarn-unused-binds -threaded
    build-depends: base,
                   text (>=0.11.2.0)
    other-modules: ConnectionKey,
                   Control.Concurrent.STM.StatusCache,
                   Control.Concurrent.STM.UpdateStream,
                   ControlMaybe,
                   DNSCache,
                   EventUtil,
                   GetHostByAddr,
                   LockedChan,
                   Nesting,
                   PeerResolve,
                   Server,
                   SockAddr,
                   XMPPServer
-- [ ] ConduitServer.hs:main = mainC
-- [ ] Control/Concurrent/STM/StatusCache.hs:-- > main = do q <- atomically $ Cache.new (== '(') (==')')
-- [ ] Control/Concurrent/STM/UpdateStream.hs:-- > main = do
-- [ ] Presence/Server.hs:-- > main = runResourceT $ do
-- [ ] Presence/main.hs:main = do
-- [x] consolation.hs:main = do
-- [ ] nalias.hs:main = do
-- [x] nalias2.hs:main = do
-- [x] pwrite.hs:main = do
-- [ ] simplechat.hs:main = do
-- [ ] test-server.hs:main = do
-- [x] whosocket.hs:main = do
-- [x] xmppServer.hs:main = runResourceT $ do